diff --git a/.vscode/settings.json b/.vscode/settings.json index 12f813e584..755da58cbc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -28,7 +28,8 @@ "@dpc-sdp/nuxt-ripple-cli", "@dpc-sdp/ripple-test-utils", "@dpc-sdp/nuxt-ripple-analytics", - "eslint-config-ripple" + "eslint-config-ripple", + "@dpc-sdp/ripple-ui-maps" ], "cSpell.words": [ "colour", diff --git a/examples/nuxt-app/app.config.ts b/examples/nuxt-app/app.config.ts index 743c22684b..1d06fc4118 100644 --- a/examples/nuxt-app/app.config.ts +++ b/examples/nuxt-app/app.config.ts @@ -43,6 +43,81 @@ export default defineAppConfig({ providedValues: values } } + }, + locationDSLTransformFunctions: { + // DSL transform example for VSBA map tests + schoolBuildings: async (location) => { + return { + map: { + filter: null, + sort: null + }, + listing: { + filter: location.name + ? { + terms: { + [`field_suburb.keyword`]: [location.name] + } + } + : null, + sort: null + } + } + }, + csl: async (location) => { + const serviceUrl = `https://services6.arcgis.com/GB33F62SbDxJjwEL/arcgis/rest/services/Vicmap_Admin/FeatureServer` + const layer = '9' + const format = 'pgeojson' + const query = encodeURIComponent(`LGA_NAME='${location.lga_key}'`) + const url = `${serviceUrl}/${layer}/query/?where=${query}&f=${format}&returnGeometry=true&spatialRel=esriSpatialRelIntersects&geometryType=esriGeometryEnvelope` + + const response = await $fetch(url) + + const listingFilter = response?.features[0]?.geometry + ? { + geo_shape: { + location: { + shape: response?.features[0]?.geometry, + relation: 'within' + } + } + } + : null + return { + map: { + filter: null, + sort: null + }, + listing: { + filter: listingFilter, + sort: null + } + } + } + }, + mapPinStyleFn: { + vsbaPinIcons: (feature) => { + const projectType = + feature && feature['field_mappintype_name'] + ? feature['field_mappintype_name'][0] + : '' + switch (projectType) { + case 'New school': + return '#8A2A2B' + case 'School upgrade': + return '#df4809' + case 'Planning project': + return '#FF9E1B' + case 'Early childhood': + return '#87189D' + case 'Tech school': + return '#00B2A9' + case 'Non-government grant': + return '#71C5E8' + default: + return '#333333' + } + } } } } diff --git a/examples/nuxt-app/components/global/VSBAProjectAreaLayer.vue b/examples/nuxt-app/components/global/VSBAProjectAreaLayer.vue new file mode 100644 index 0000000000..58827304bf --- /dev/null +++ b/examples/nuxt-app/components/global/VSBAProjectAreaLayer.vue @@ -0,0 +1,171 @@ + + + diff --git a/examples/nuxt-app/components/global/VsbaMapPopupContent.vue b/examples/nuxt-app/components/global/VsbaMapPopupContent.vue new file mode 100644 index 0000000000..627cb0faf0 --- /dev/null +++ b/examples/nuxt-app/components/global/VsbaMapPopupContent.vue @@ -0,0 +1,52 @@ + + + + + diff --git a/examples/nuxt-app/cypress.config.mjs b/examples/nuxt-app/cypress.config.mjs index 5329014d44..27edbe8967 100644 --- a/examples/nuxt-app/cypress.config.mjs +++ b/examples/nuxt-app/cypress.config.mjs @@ -6,7 +6,7 @@ export default defineConfig({ projectId: 'mie4kg', env: { searchIndex: process.env.NUXT_PUBLIC_TIDE_APP_SEARCH_ENGINE_NAME, - NUXT_PUBLIC_TIDE_SITE: process.env.NUXT_PUBLIC_TIDE_SITE, + NUXT_PUBLIC_TIDE_SITE: process.env.NUXT_PUBLIC_TIDE_SITE }, e2e: { baseUrl: 'http://localhost:3000', diff --git a/examples/nuxt-app/package.json b/examples/nuxt-app/package.json index 224cec17e4..a7c31c0ad8 100644 --- a/examples/nuxt-app/package.json +++ b/examples/nuxt-app/package.json @@ -11,12 +11,13 @@ "dev": "nuxt dev", "dev:mock": "NUXT_PUBLIC_API_URL=http://localhost:3001 API_PORT=3001 concurrently 'pnpm mockserver' 'pnpm dev'", "build": "nuxi build", + "preview": "nuxi preview", "compile": "tsc --build", "start": "node .output/server/index.mjs", "start:mock": "NUXT_PUBLIC_API_URL=http://localhost:3001 API_PORT=3001 concurrently 'pnpm mockserver' 'pnpm start'", "mockserver": "nuxt-ripple mock ./test/fixtures -S ./test/fixtures/site/reference.json -R mock-routes.json", "cy:open": "cypress open --e2e --browser electron", - "cy:run": "cypress run --record", + "cy:run": "cypress run", "test:ci": "NUXT_PUBLIC_API_URL=http://localhost:3001 API_PORT=3001 start-test start tcp:3000 'cy:run'", "test:integration": "NUXT_PUBLIC_TIDE_SITE=TEST_SITE NUXT_PUBLIC_TIDE_BASE_URL=https://test.base.url/ start-test dev:mock tcp:3000 'cy:open'" }, @@ -31,7 +32,8 @@ "@dpc-sdp/ripple-tide-media": "workspace:*", "@dpc-sdp/ripple-tide-news": "workspace:*", "@dpc-sdp/ripple-tide-publication": "workspace:*", - "@dpc-sdp/ripple-tide-search": "workspace:*" + "@dpc-sdp/ripple-tide-search": "workspace:*", + "@dpc-sdp/ripple-ui-maps": "workspace:*" }, "devDependencies": { "@dpc-sdp/ripple-test-utils": "workspace:*", diff --git a/examples/nuxt-app/test/features/search-listing/custom-collection.feature b/examples/nuxt-app/test/features/data-table/custom-collection.feature similarity index 95% rename from examples/nuxt-app/test/features/search-listing/custom-collection.feature rename to examples/nuxt-app/test/features/data-table/custom-collection.feature index ed7dd53922..b99273b706 100644 --- a/examples/nuxt-app/test/features/search-listing/custom-collection.feature +++ b/examples/nuxt-app/test/features/data-table/custom-collection.feature @@ -30,7 +30,7 @@ Feature: Custom Collection Given the "/api/tide/elasticsearch/sdp_data_pipelines_scl/_search" network request is stubbed with fixture "/landingpage/custom-collection/response-no-items" and status 200 as alias "cslReq" Given I visit the page "/custom-collection" Then the landing page component "TideCustomCollection" should exist - And the custom collection component should display the error "Sorry! We couldn't find any matches for ''." + And the custom collection component should display the error "Sorry, no results match your search. Try again with different search options or check back later." diff --git a/examples/nuxt-app/test/features/data-table/table-filters.feature b/examples/nuxt-app/test/features/data-table/table-filters.feature new file mode 100644 index 0000000000..686d3d17e5 --- /dev/null +++ b/examples/nuxt-app/test/features/data-table/table-filters.feature @@ -0,0 +1,21 @@ +Feature: Custom Collection + + As an editor I want to be able to add a view of results in a search index to a landing page with filters + + Background: + Given the page endpoint for path "/" returns fixture "/map-table/ise/page" with status 200 + Given the site endpoint returns fixture "/site/reference" with status 200 + And the search autocomplete request is stubbed with "/search-listing/suggestions/none" fixture + Given I am using a "macbook-16" device + + @mockserver + Scenario: On load + Given the "/api/tide/elasticsearch/sdp_data_pipelines_ise/_search" network request is stubbed with fixture "/map-table/ise/response" and status 200 as alias "cslReq" + Given the "/api/tide/elasticsearch/sdp_data_pipelines_ise/_search" aggregation request is stubbed with fixture "/map-table/ise/aggregations" and status 200 as alias "aggReq" + Given I visit the page "/" + Then the landing page component "TideCustomCollection" should exist + And the custom collection component should have a search input bar + And the custom collection component results count should read "Displaying 1-10 of 8269 results" + And the "cslReq" network request should be made to the elasticsearch endpoint + And the "aggReq" network request should be made to the elasticsearch endpoint + And the search listing layout should be "table" diff --git a/examples/nuxt-app/test/features/landingpage/forms.feature b/examples/nuxt-app/test/features/landingpage/forms.feature index ca25b9d880..b0a1f5bb6a 100644 --- a/examples/nuxt-app/test/features/landingpage/forms.feature +++ b/examples/nuxt-app/test/features/landingpage/forms.feature @@ -18,6 +18,7 @@ Feature: Forms Then a "number" input with the label "Quantity" should exist Then a "url" input with the label "Website" should exist Then a "tel" input with the label "Mobile phone" should exist + Then a "date" input with the label "Date of birth" should exist Then a select field with the label "Favourite colour" should exist | required | | true | diff --git a/examples/nuxt-app/test/features/maps/__image_snapshots__/map-cluster-zoom #0.png b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-cluster-zoom #0.png new file mode 100644 index 0000000000..56ed0b27bc Binary files /dev/null and b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-cluster-zoom #0.png differ diff --git a/examples/nuxt-app/test/features/maps/__image_snapshots__/map-location-search #0.png b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-location-search #0.png new file mode 100644 index 0000000000..61db1e0575 Binary files /dev/null and b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-location-search #0.png differ diff --git a/examples/nuxt-app/test/features/maps/__image_snapshots__/map-no-results #0.diff.png b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-no-results #0.diff.png new file mode 100644 index 0000000000..b50810393d Binary files /dev/null and b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-no-results #0.diff.png differ diff --git a/examples/nuxt-app/test/features/maps/__image_snapshots__/map-no-results #0.png b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-no-results #0.png new file mode 100644 index 0000000000..05920828f6 Binary files /dev/null and b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-no-results #0.png differ diff --git a/examples/nuxt-app/test/features/maps/__image_snapshots__/map-on-load #0.png b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-on-load #0.png new file mode 100644 index 0000000000..f9122423f0 Binary files /dev/null and b/examples/nuxt-app/test/features/maps/__image_snapshots__/map-on-load #0.png differ diff --git a/examples/nuxt-app/test/features/maps/vsba.feature b/examples/nuxt-app/test/features/maps/vsba.feature new file mode 100644 index 0000000000..ca8cf1cb9c --- /dev/null +++ b/examples/nuxt-app/test/features/maps/vsba.feature @@ -0,0 +1,89 @@ +Feature: School buildings map + + I want to display a map of features from an indexed data pipeline + + Background: + Given the page endpoint for path "/map" returns fixture "/map-table/vsba/page" with status 200 + Given the site endpoint returns fixture "/site/vsba" with status 200 + And the search autocomplete request is stubbed with "/search-listing/suggestions/none" fixture + Given I am using a "macbook-16" device + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" aggregation request is stubbed with fixture "/map-table/vsba/aggregations" and status 200 as alias "aggReq" + + + @mockserver + Scenario: On load + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" network request is stubbed with fixture "/map-table/vsba/response-all" and status 200 as alias "searchReq" + Given I visit the page "/map" + Then the landing page component "TideCustomCollection" should exist + Then the custom collection component should have a search input bar + And the ripple map component should be visible + And the data map component tabs should exist + And the data map tabs should be labelled: + | Map | + | List | + And I wait 4 seconds + And the map matches the image snapshot "map-on-load" + + @mockserver + Scenario: Search for postcode + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" network request is stubbed with fixture "/map-table/vsba/response-all" and status 200 as alias "searchReq" + Given the "/api/tide/app-search/vic-postcode-localities/elasticsearch/_search" network request is stubbed with fixture "/map-table/vsba/localities-all" and status 200 as alias "localitiesReq" + And I visit the page "/map" + Then the ripple map component should be visible + When I enter the term "3012" into the location search input + Then the location search results should contain "West Footscray" + When I click the location search term "West Footscray" + And I wait 4 seconds + Then the map matches the image snapshot "map-location-search" + + @mockserver + Scenario: No results message + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/elasticsearch/_search" network request is stubbed with fixture "/map-table/vsba/response-all" and status 200 as alias "searchReq" + Given the "/api/tide/app-search/vic-postcode-localities/elasticsearch/_search" network request is stubbed with fixture "/map-table/vsba/localities-nyah" and status 200 as alias "localitiesReq" + And I visit the page "/map" + Then the ripple map component should be visible + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/elasticsearch/_search" network request is stubbed with fixture "/map-table/vsba/response-none" and status 200 as alias "searchReq" + Given the arcgis FeatureServer "14" returns "/map-table/vsba/arcgis-nyah" fixture + When I enter the term "nyah" into the location search input + Then the location search results should contain "Nyah" + When I click the location search term "Nyah" + And I wait 2 seconds + Then the map no results message should be visible + Then the map no results message should contain "Sorry, no results match your search. Try again with different search options or check back later. " + Then the map matches the image snapshot "map-no-results" + + + @mockserver + Scenario: Filters should display when expanded + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" network request is stubbed with fixture "/map-table/vsba/response-all" and status 200 as alias "searchReq" + Given I visit the page "/map" + When I toggle the search listing filters section + And I wait 5 seconds + Then the search listing dropdown field labelled "Project Type" should have the value "Select" + When I click the search listing dropdown field labelled "Project Type" + Then the selected dropdown field should have the items: + | New school | + | School upgrade | + | Planning | + | Early childhood | + | Tech school | + | Non-government grant | + + @mockserver + Scenario: Click on cluster should zoom in + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" network request is stubbed with fixture "/map-table/vsba/response-all" and status 200 as alias "searchReq" + And I visit the page "/map" + When I wait 2 seconds + When I click the map component at coordinates 571 412 + When I wait 4 seconds + Then the map matches the image snapshot "map-cluster-zoom" + + @mockserver + Scenario: Switch to list view + Given the "/api/tide/elasticsearch/elasticsearch_index_develop_node/_search" network request is stubbed with fixture "/map-table/vsba/response-all" and status 200 as alias "searchReq" + And I visit the page "/map" + When I wait 5 seconds + And I click the tab labelled "List" + Then the search listing layout should be "table" + And the custom collection component results count should read "Displaying 1-5 of 2159 results" + diff --git a/examples/nuxt-app/test/fixtures/landingpage/custom-collection/response.json b/examples/nuxt-app/test/fixtures/landingpage/custom-collection/response.json index b45397144d..a4fdb1c8ee 100644 --- a/examples/nuxt-app/test/fixtures/landingpage/custom-collection/response.json +++ b/examples/nuxt-app/test/fixtures/landingpage/custom-collection/response.json @@ -155,7 +155,7 @@ "camera_type": "Fixed Camera", "certificate": "https://content.vic.gov.au/sites/default/files/2023-04/A56_Surrey_Hills_intersection-of-mont-albert-road-and-union-road_camera_cert_310323.pdf", "site_type": "Intersection", - "reason": "Demonstrated accident risk", + "reason": "Someone complained", "how_cameras_work": "https://www.vic.gov.au/camera-accuracy", "latitude": "-37.8204019", "longitude": "145.0981877", @@ -180,7 +180,7 @@ "camera_type": "Fixed Camera", "certificate": "https://content.vic.gov.au/sites/default/files/2023-05/A59_Echuca-intersection-of-Ogilvie-Ave-and-High-St-camera-cert_090523.pdf", "site_type": "Intersection", - "reason": "Demonstrated accident risk", + "reason": "Someone complained", "how_cameras_work": "https://www.vic.gov.au/camera-accuracy", "latitude": "-36.140432", "longitude": "144.750963", @@ -255,7 +255,7 @@ "camera_type": "Fixed Camera", "certificate": "https://content.vic.gov.au/sites/default/files/2023-03/B12_Bayswater_North_intersection-of-canterbury-road-and-bayswater-road_camera_cert.pdf", "site_type": "Intersection", - "reason": "Demonstrated accident risk", + "reason": "Marginal seat", "how_cameras_work": "https://www.vic.gov.au/camera-accuracy", "latitude": "-37.832238", "longitude": "145.269109", diff --git a/examples/nuxt-app/test/fixtures/landingpage/full-form.json b/examples/nuxt-app/test/fixtures/landingpage/full-form.json index 6026b1ffa4..a7c9d850df 100644 --- a/examples/nuxt-app/test/fixtures/landingpage/full-form.json +++ b/examples/nuxt-app/test/fixtures/landingpage/full-form.json @@ -127,6 +127,14 @@ "validation": "", "validationMessages": {} }, + { + "$formkit": "RplFormDatePicker", + "name": "dob", + "label": "Date of birth", + "id": "dob", + "validation": "", + "validationMessages": {} + }, { "$formkit": "RplFormTextarea", "name": "message", diff --git a/examples/nuxt-app/test/fixtures/map-table/ise/aggregations b/examples/nuxt-app/test/fixtures/map-table/ise/aggregations new file mode 100644 index 0000000000..5a937cb750 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/ise/aggregations @@ -0,0 +1,50 @@ +{ + "took": 1, + "timed_out": false, + "_shards": { + "total": 5, + "successful": 5, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 2129, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "category": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Early childhood", + "doc_count": 274 + }, + { + "key": "New school", + "doc_count": 87 + }, + { + "key": "Non-government grant", + "doc_count": 198 + }, + { + "key": "Planning", + "doc_count": 13 + }, + { + "key": "School upgrade", + "doc_count": 991 + }, + { + "key": "Tech school", + "doc_count": 10 + } + ] + } + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/ise/aggregations.json b/examples/nuxt-app/test/fixtures/map-table/ise/aggregations.json new file mode 100644 index 0000000000..5a937cb750 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/ise/aggregations.json @@ -0,0 +1,50 @@ +{ + "took": 1, + "timed_out": false, + "_shards": { + "total": 5, + "successful": 5, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 2129, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "category": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Early childhood", + "doc_count": 274 + }, + { + "key": "New school", + "doc_count": 87 + }, + { + "key": "Non-government grant", + "doc_count": 198 + }, + { + "key": "Planning", + "doc_count": 13 + }, + { + "key": "School upgrade", + "doc_count": 991 + }, + { + "key": "Tech school", + "doc_count": 10 + } + ] + } + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/ise/page.json b/examples/nuxt-app/test/fixtures/map-table/ise/page.json new file mode 100644 index 0000000000..b29856d647 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/ise/page.json @@ -0,0 +1,160 @@ +{ + "title": "Custom collection with filters", + "changed": "2022-11-02T12:47:29+11:00", + "created": "2022-11-02T12:47:29+11:00", + "type": "landing_page", + "nid": "11dede11-10c0-111e1-1100-000000000330", + "summary": "Page summary", + "showInPageNav": true, + "inPageNavHeadingLevel": "h3", + "background": "default", + "header": { + "title": "ISE", + "summary": "Test landing page title", + "theme": "default", + "backgroundImage": null + }, + "headerComponents": [], + "bodyComponents": [ + { + "uuid": "a99aa287-7fac-430b-864e-3a1b044460b1", + "component": "TideLandingPageContent", + "id": "969", + "props": { + "html": "

This is a collection of grants which have some content above them

" + } + }, + { + "uuid": "55555555-5555-5555-5555-555555555555", + "component": "TideCustomCollection", + "id": "123", + "title": "ISE", + "props": { + "searchListingConfig": { + "searchProvider": "elasticsearch", + "index": "sdp_data_pipelines_ise", + "resultsPerPage": 10, + "labels": { + "submit": "Search", + "placeholder": "Enter organisation name" + }, + "customSort": [ + { + "_score": "asc" + }, + { + "Organisation.keyword": "asc" + } + ] + }, + "queryConfig": { + "multi_match": { + "query": "{{query}}", + "fields": ["Organisation"] + } + }, + "globalFilters": [], + "userFilters": [ + { + "id": "fundedfor", + "component": "TideSearchFilterDropdown", + "columns": "rpl-col-6", + "filter": { + "type": "terms", + "value": "Funded For.keyword" + }, + "aggregations": { + "field": "Funded For.keyword", + "source": "elastic" + }, + "props": { + "id": "fundedfor", + "label": "Funded For", + "placeholder": "Funded for", + "type": "RplFormDropdown", + "multiple": true + } + } + ], + "resultsConfig": { + "layout": { + "component": "TideSearchResultsTable", + "props": { + "columns": [ + { + "label": "Organisation", + "objectKey": "Organisation" + }, + { + "label": "Funded For", + "objectKey": "Funded For" + }, + { + "label": "Funding Dept", + "objectKey": "Funding Department" + }, + { + "label": "FVIS/CISS", + "objectKey": "FVISS/CISS" + }, + { + "label": "RAE", + "objectKey": "RAE" + }, + { + "label": "Statewide Service", + "objectKey": "Statewide Service" + }, + { + "label": "Telephone", + "objectKey": "Telephone" + }, + { + "label": "Email", + "objectKey": "Email" + } + ] + } + } + } + } + } + ], + "meta": { + "url": "/demo-landing-page", + "langcode": "en", + "description": "Nulla ultricies dignissim leo, posuere vestibulum erat cursus vitae", + "additional": [ + { + "tag": "link", + "attributes": { + "rel": "canonical", + "href": "https://develop.content.reference.sdp.vic.gov.au/demo-landing-page" + } + }, + { + "tag": "meta", + "attributes": { + "name": "title", + "content": "Demo Landing Page | Single Digital Presence Content Management System" + } + }, + { + "tag": "meta", + "attributes": { + "property": "og:image", + "content": "https://develop.content.reference.sdp.vic.gov.au/sites/default/files/tide_demo_content/Melbourne-tram.jpg" + } + } + ], + "keywords": "", + "image": { + "src": "https://develop.content.reference.sdp.vic.gov.au/sites/default/files/tide_demo_content/Melbourne-tram.jpg", + "alt": "Demo: Melbourne tram", + "title": "Demo: Melbourne tram", + "width": 1413, + "height": 785, + "drupal_internal__target_id": 46 + } + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/ise/response.json b/examples/nuxt-app/test/fixtures/map-table/ise/response.json new file mode 100644 index 0000000000..64ecf6f270 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/ise/response.json @@ -0,0 +1,121 @@ +{ + "took": 1, + "timed_out": false, + "_shards": { + "total": 5, + "successful": 5, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 8269, + "relation": "eq" + }, + "max_score": 1, + "hits": [ + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--sdp_data_pipelines_ise", + "_id": "ise:188", + "_score": 7.898239, + "_source": { + "Organisation": "Bug-A-Lugs OSHC", + "Funded For": "Before and/or After School Hours Care Services", + "Funding Department": "Department of Education", + "FVISS/CISS": "Both", + "RAE": "no", + "Statewide Service": "no", + "Email": "info@bug-a-lugs.com.au", + "Telephone": "03 5422 2767", + "Website/Links": "", + "More Information": "" + } + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--sdp_data_pipelines_ise", + "_id": "ise:3755", + "_score": 7.898239, + "_source": { + "Organisation": "A G Leech Kindergarten", + "Funded For": "Kindergarten Services", + "Funding Department": "Department of Education", + "FVISS/CISS": "Both", + "RAE": "no", + "Statewide Service": "no", + "Email": "AGLeech@ykinders.org.au", + "Telephone": "03 4311 1560", + "Website/Links": "", + "More Information": "" + } + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--sdp_data_pipelines_ise", + "_id": "ise:187", + "_score": 6.58457, + "_source": { + "Organisation": "Bug-A-Lugs Indoor Play Centre", + "Funded For": "Before and/or After School Hours Care Services", + "Funding Department": "Department of Education", + "FVISS/CISS": "Both", + "RAE": "no", + "Statewide Service": "no", + "Email": "info@bug-a-lugs.com.au", + "Telephone": "03 5422 2767", + "Website/Links": "", + "More Information": "" + } + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--sdp_data_pipelines_ise", + "_id": "ise:7849", + "_score": 2.8912935, + "_source": { + "Organisation": "Maternal and Child Health Line", + "Funded For": "Maternal Child Health", + "Funding Department": "Department of Health", + "FVISS/CISS": "Both", + "RAE": "no", + "Statewide Service": "yes", + "Email": "", + "Telephone": "13 22 29 - For the provision Maternal and Child Health advice through a state-wide telephone service", + "Website/Links": "", + "More Information": "" + } + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--sdp_data_pipelines_ise", + "_id": "ise:7434", + "_score": 2.6819744, + "_source": { + "Organisation": "Frankston and Mornington Drug and Alcohol Services (FamDAS)", + "Funded For": "Alcohol and Other Drugs", + "Funding Department": "Department of Health", + "FVISS/CISS": "Both", + "RAE": "no", + "Statewide Service": "", + "Email": "", + "Telephone": "", + "Website/Links": "https://www.peninsulahealth.org.au/services/services-a-e/alcohol-drug-services/famdas/", + "More Information": "" + } + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--sdp_data_pipelines_ise", + "_id": "ise:6985", + "_score": 1.4041514, + "_source": { + "Organisation": "Child Protection - Department of Families Fairness and Housing", + "Funded For": "Child Protection", + "Funding Department": "Department of Families, Fairness and Housing", + "FVISS/CISS": "Both", + "RAE": "yes", + "Statewide Service": "yes", + "Email": "info.exchange@dffh.vic.gov.au", + "Telephone": " ", + "Website/Links": "Requests should be made via the online webform at https://informationsharingteam.powerappsportals.com/FVISSCISS/. Where the Child Protection worker is known you should contact them directly.", + "More Information": "Please note that the info.exchange team is a central unit and not part of the Child Protection workforce. If you need to make a report to Child Protection please contact Intake https://services.dffh.vic.gov.au/child-protection-contacts" + } + } + ] + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/aggregations.json b/examples/nuxt-app/test/fixtures/map-table/vsba/aggregations.json new file mode 100644 index 0000000000..5a937cb750 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/aggregations.json @@ -0,0 +1,50 @@ +{ + "took": 1, + "timed_out": false, + "_shards": { + "total": 5, + "successful": 5, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 2129, + "relation": "eq" + }, + "max_score": null, + "hits": [] + }, + "aggregations": { + "category": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "Early childhood", + "doc_count": 274 + }, + { + "key": "New school", + "doc_count": 87 + }, + { + "key": "Non-government grant", + "doc_count": 198 + }, + { + "key": "Planning", + "doc_count": 13 + }, + { + "key": "School upgrade", + "doc_count": 991 + }, + { + "key": "Tech school", + "doc_count": 10 + } + ] + } + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/arcgis-nyah.json b/examples/nuxt-app/test/fixtures/map-table/vsba/arcgis-nyah.json new file mode 100644 index 0000000000..eabfb5f44c --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/arcgis-nyah.json @@ -0,0 +1,13 @@ +{ + "type": "FeatureCollection", + "crs": { + "type": "name", + "properties": { + "name": "EPSG:4326" + } + }, + "bbox": [ + 143.328887120588, -35.1919582018535, 143.395403538587, -35.1130417121059 + ], + "features": [] +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/custom-collection-config.json b/examples/nuxt-app/test/fixtures/map-table/vsba/custom-collection-config.json new file mode 100644 index 0000000000..c539e2763f --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/custom-collection-config.json @@ -0,0 +1,123 @@ +{ + "searchListingConfig": { + "searchProvider": "elasticsearch", + "index": "elasticsearch_index_develop_node", + "resultsPerPage": 10, + "displayMapTab": true, + "labels": { + "submit": "Search", + "placeholder": "Search by postcode or suburb" + } + }, + "queryConfig": { + "multi_match": { + "query": "{{query}}", + "fields": ["field_postcode", "field_suburb"] + } + }, + "mapConfig": { + "props": { + "popup": { + "title": { + "objKey": "_source.title[0]" + }, + "content": { + "component": "VSBAMapPopupContent" + } + }, + "pinIconFn": "vsbaPinIcons", + "locationObjPath": "_source.field_latitude_longitude_value[0]", + "titleObjPath": "title[0]", + "vectorLayerComponent": "VSBAProjectAreaLayer", + "legendExpanded": true, + "legendItems": [ + { + "text": "New schools", + "icon": "icon-pin", + "iconColour": "#8A2A2B" + }, + { + "text": "School upgrades", + "icon": "icon-pin", + "iconColour": "#E35205" + }, + { + "text": "Planning projects", + "icon": "icon-pin", + "iconColour": "#FF9E1B" + }, + { + "text": "Early childhood projects", + "icon": "icon-pin", + "iconColour": "#87189D" + }, + { + "text": "Tech schools", + "icon": "icon-pin", + "iconColour": "#00B2A9" + }, + { + "text": "Non-government grants", + "icon": "icon-pin", + "iconColour": "#71C5E8" + } + ] + } + }, + "userFilters": [ + { + "id": "category", + "component": "TideSearchFilterDropdown", + "filter": { + "type": "terms", + "value": "field_mappintype_value" + }, + "aggregations": { + "field": "field_mappintype_value", + "source": "elastic" + }, + "props": { + "id": "category", + "label": "Filter by", + "placeholder": "Select school type", + "type": "RplFormDropdown", + "multiple": true, + "options": [] + } + } + ], + "globalFilters": [ + { + "terms": { + "type": ["project_infrastructure"] + } + }, + { + "terms": { + "field_node_site": [622] + } + } + ], + "locationQueryConfig": { + "component": "TideSearchAddressLookup", + "dslTransformFunction": "schoolBuildings", + "mapResultsMappingFn": "schoolBuildings" + }, + "resultsConfig": { + "layout": { + "component": "TideSearchResultsTable", + "props": { + "columns": [ + { + "label": "School name", + "component": "TideSearchListingTableLink" + }, + { + "label": "Suburb", + "objectKey": "field_suburb" + } + ] + } + } + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/localities-all.json b/examples/nuxt-app/test/fixtures/map-table/vsba/localities-all.json new file mode 100644 index 0000000000..812e452909 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/localities-all.json @@ -0,0 +1,139 @@ +{ + "took": 1, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 5, + "relation": "eq" + }, + "max_score": 5.582128, + "hits": [ + { + "_index": ".ent-search-engine-documents-vic-postcode-localities", + "_id": "doc-6596598dcfe7a980b7d6bf8f", + "_score": 5.582128, + "_ignored": [ + "bbox.location", + "locality.location", + "locality.float", + "bbox.date", + "locality.date", + "postcode.date" + ], + "_source": { + "postcode": "3012", + "locality": "West Footscray", + "bbox": [ + "16125731.2622", + "-4553144.2123", + "16128658.9812", + "-4549729.8726" + ], + "id": "doc-6596598dcfe7a980b7d6bf8f" + } + }, + { + "_index": ".ent-search-engine-documents-vic-postcode-localities", + "_id": "doc-65965998cfe7a9121bd6c450", + "_score": 5.582128, + "_ignored": [ + "bbox.location", + "locality.location", + "locality.float", + "bbox.date", + "locality.date", + "postcode.date" + ], + "_source": { + "postcode": "3012", + "locality": "Tottenham", + "bbox": [ + "16123428.6605", + "-4553307.7969", + "16125960.5098", + "-4550778.4569" + ], + "id": "doc-65965998cfe7a9121bd6c450" + } + }, + { + "_index": ".ent-search-engine-documents-vic-postcode-localities", + "_id": "doc-6596599bcfe7a980b7d6c5a1", + "_score": 5.582128, + "_ignored": [ + "bbox.location", + "locality.location", + "locality.float", + "bbox.date", + "locality.date", + "postcode.date" + ], + "_source": { + "postcode": "3012", + "locality": "Kingsville", + "bbox": [ + "16126768.6849", + "-4553017.8135", + "16128572.18", + "-4551575.8138" + ], + "id": "doc-6596599bcfe7a980b7d6c5a1" + } + }, + { + "_index": ".ent-search-engine-documents-vic-postcode-localities", + "_id": "doc-6596599ccfe7a980b7d6c629", + "_score": 5.582128, + "_ignored": [ + "bbox.location", + "locality.location", + "locality.float", + "bbox.date", + "locality.date", + "postcode.date" + ], + "_source": { + "postcode": "3012", + "locality": "Maidstone", + "bbox": [ + "16126136.6235", + "-4549965.4885", + "16128587.3193", + "-4547280.8466" + ], + "id": "doc-6596599ccfe7a980b7d6c629" + } + }, + { + "_index": ".ent-search-engine-documents-vic-postcode-localities", + "_id": "doc-659659a6cfe7a9121bd6ca7f", + "_score": 5.582128, + "_ignored": [ + "bbox.location", + "locality.location", + "locality.float", + "bbox.date", + "locality.date", + "postcode.date" + ], + "_source": { + "postcode": "3012", + "locality": "Brooklyn", + "bbox": [ + "16121522.8712", + "-4554837.46", + "16125722.9652", + "-4551531.4341" + ], + "id": "doc-659659a6cfe7a9121bd6ca7f" + } + } + ] + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/localities-nyah.json b/examples/nuxt-app/test/fixtures/map-table/vsba/localities-nyah.json new file mode 100644 index 0000000000..752b4b678a --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/localities-nyah.json @@ -0,0 +1,67 @@ +{ + "took": 1, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": 7.7593584, + "hits": [ + { + "_index": ".ent-search-engine-documents-vic-postcode-localities", + "_id": "doc-659659adcfe7a91138d6cdc8", + "_score": 7.7593584, + "_ignored": [ + "bbox.location", + "locality.location", + "locality.float", + "bbox.date", + "locality.date", + "postcode.date" + ], + "_source": { + "postcode": "3594", + "locality": "Nyah", + "bbox": [ + "15955482.2839", + "-4189960.2973", + "15962542.8638", + "-4177428.7245" + ], + "id": "doc-659659adcfe7a91138d6cdc8" + } + }, + { + "_index": ".ent-search-engine-documents-vic-postcode-localities", + "_id": "doc-6596599fcfe7a9121bd6c766", + "_score": 5.787177, + "_ignored": [ + "bbox.location", + "locality.location", + "locality.float", + "bbox.date", + "locality.date", + "postcode.date" + ], + "_source": { + "postcode": "3595", + "locality": "Nyah West", + "bbox": [ + "15953047.5035", + "-4193025.5781", + "15960579.9343", + "-4183244.8488" + ], + "id": "doc-6596599fcfe7a9121bd6c766" + } + } + ] + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/page.json b/examples/nuxt-app/test/fixtures/map-table/vsba/page.json new file mode 100644 index 0000000000..2fbae39827 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/page.json @@ -0,0 +1,529 @@ +{ + "title": "Victorian School Building Authority", + "changed": "2023-11-08T12:12:07+11:00", + "created": "2021-04-29T13:42:44+10:00", + "type": "landing_page", + "nid": "b6cf3563-ee60-4c2c-92eb-0212109e6b4d", + "_sectionId": "622", + "sidebar": { + "contacts": [], + "relatedLinks": [], + "whatsNext": [], + "socialShareNetworks": [], + "siteSectionNav": null + }, + "status": "published", + "topicTags": [ + { + "text": "Education", + "url": "/topic/education" + } + ], + "siteSection": { + "id": 622, + "name": "schoolbuildings.vic.gov.au" + }, + "meta": { + "url": "/victorian-school-building-authority", + "langcode": "en", + "description": "The school infrastructure boom is part of our commitment to making Victoria the Education State.", + "additional": [ + { + "tag": "meta", + "attributes": { + "name": "title", + "content": "Victorian School Building Authority | Victorian School Building Authority" + } + }, + { + "tag": "link", + "attributes": { + "rel": "canonical", + "href": "https://develop.content.vic.gov.au/victorian-school-building-authority" + } + }, + { + "tag": "meta", + "attributes": { + "property": "og:locale", + "content": "en-AU" + } + } + ], + "keywords": "", + "image": null + }, + "showContentRating": true, + "summary": "The school infrastructure boom is part of our commitment to making Victoria the Education State.", + "showHeroAcknowledgement": false, + "showInPageNav": false, + "showHeroImageCaption": false, + "showTopicTags": false, + "inPageNavHeadingLevel": "h2", + "background": "default", + "header": { + "title": "Victorian School Building Authority", + "summary": "", + "links": { + "title": "", + "items": [], + "more": null + }, + "backgroundImageCaption": "VSDA Entrant", + "theme": "reverse", + "logoImage": null, + "backgroundImage": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2023-05/2023-24StateBudget_230523_HomeB.png", + "alt": "Home page banner - White Hills PS, VSDA Entrant", + "title": "Home page banner - White Hills PS, VSDA Entrant", + "width": 1600, + "height": 600, + "drupal_internal__target_id": 189857, + "focalPoint": { + "x": 480, + "y": 402 + } + }, + "cornerTop": null, + "cornerBottom": null, + "primaryAction": null, + "secondaryAction": null, + "secondaryActionLabel": "" + }, + "primaryCampaign": { + "title": "New names for new schools opening in 2024", + "summaryHtml": "

14 new schools opening in 2024 have their official names and are on track to welcome their first students for Term 1 next year.

", + "cta": { + "text": "Find out more", + "url": "/new-names-for-new-schools" + }, + "image": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2023-07/230714_MerrifieldSouthPS_Construction_FI.png", + "alt": "2024 new school naming - feature image, Merrifield South Primary School (interim name) - construction", + "title": "2024 new school naming - feature image, Merrifield South Primary School (interim name) - construction", + "width": 818, + "height": 496, + "drupal_internal__target_id": 223818, + "focalPoint": { + "x": 409, + "y": 248 + } + }, + "imageCaption": null + }, + "secondaryCampaign": { + "title": "New schools", + "summaryHtml": "

We’re building new schools where they are needed across Victoria.

", + "cta": { + "text": "Where are these schools?", + "url": "/new-schools" + }, + "image": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2021-12/100NewSchools_211201_CampaignImage.png", + "alt": "Inside of a new school learning space", + "title": "", + "width": 699, + "height": 411, + "drupal_internal__target_id": 38835, + "focalPoint": { + "x": 350, + "y": 206 + } + }, + "imageCaption": "Inside of a new school learning space" + }, + "headerComponents": [ + { + "uuid": "1fccc336-d32f-4cfc-8d07-ea0ecfde9595", + "component": "TideLandingPageIntroBanner", + "id": "595740", + "props": { + "title": "Our commitment", + "withIcon": false, + "links": { + "title": null, + "items": [ + { + "text": "About us", + "url": "/about-us" + }, + { + "text": "School funding programs", + "url": "/school-funding-programs" + }, + { + "text": "Early childhood grants", + "url": "/early-childhood-grants" + }, + { + "text": "Contact us", + "url": "/contact-victorian-school-building-authority" + } + ], + "type": "link", + "more": null + }, + "html": "

The school infrastructure boom is part of our commitment to making Victoria the Education State.

" + } + } + ], + "bodyComponents": [ + { + "uuid": "55555555-5555-5555-5555-555555555555", + "component": "TideCustomCollection", + "id": "123", + "title": "What's happening in your area?", + "props": { + "searchListingConfig": { + "searchProvider": "elasticsearch", + "index": "elasticsearch_index_develop_node", + "resultsPerPage": 5, + "displayMapTab": true, + "labels": { + "submit": "Search", + "placeholder": "Search by postcode or suburb" + } + }, + "queryConfig": { + "multi_match": { + "query": "{{query}}", + "fields": ["field_postcode", "field_suburb"] + } + }, + "mapConfig": { + "props": { + "popup": { + "title": { + "objKey": "_source.title[0]" + }, + "content": { + "component": "VSBAMapPopupContent" + } + }, + "pinIconFn": "vsbaPinIcons", + "locationObjPath": "_source.field_latitude_longitude_value[0]", + "titleObjPath": "title[0]", + "vectorLayerComponent": "VSBAProjectAreaLayer", + "legendItems": [ + { + "text": "New schools", + "icon": "icon-pin", + "iconColour": "#8A2A2B" + }, + { + "text": "School upgrades", + "icon": "icon-pin", + "iconColour": "#E35205" + }, + { + "text": "Planning projects", + "icon": "icon-pin", + "iconColour": "#FF9E1B" + }, + { + "text": "Early childhood projects", + "icon": "icon-pin", + "iconColour": "#87189D" + }, + { + "text": "Tech schools", + "icon": "icon-pin", + "iconColour": "#00B2A9" + }, + { + "text": "Non-government grants", + "icon": "icon-pin", + "iconColour": "#71C5E8" + } + ] + } + }, + "userFilters": [ + { + "id": "category", + "component": "TideSearchFilterDropdown", + "filter": { + "type": "terms", + "value": "field_mappintype_value" + }, + "aggregations": { + "field": "map_pin_type", + "source": "taxonomy" + }, + "props": { + "id": "category", + "label": "Project Type", + "placeholder": "Select", + "type": "RplFormDropdown", + "multiple": true, + "options": [ + { + "id": "1", + "label": "New school", + "value": "New school" + }, + { + "id": "2", + "label": "School upgrade", + "value": "School upgrade" + }, + { + "id": "3", + "label": "Planning", + "value": "Planning" + }, + { + "id": "4", + "label": "Early childhood", + "value": "Early childhood" + }, + { + "id": "5", + "label": "Tech school", + "value": "Tech school" + }, + { + "id": "6", + "label": "Non-government grant", + "value": "Non-government grant" + } + ] + } + } + ], + "globalFilters": [ + { + "terms": { + "type": ["project_infrastructure"] + } + }, + { + "terms": { + "field_node_site": [622] + } + } + ], + "locationQueryConfig": { + "component": "TideSearchAddressLookup", + "dslTransformFunction": "schoolBuildings", + "mapResultsMappingFn": "schoolBuildings" + }, + "resultsConfig": { + "layout": { + "component": "TideSearchResultsTable", + "props": { + "columns": [ + { + "label": "School name", + "component": "TideSearchListingTableLink" + }, + { + "label": "Suburb", + "objectKey": "field_suburb" + } + ] + } + } + } + } + }, + { + "uuid": "3e17008a-9492-4e97-9dd2-16b1b2f9ffae", + "component": "TideLandingPageContent", + "id": "583918", + "internalAnchors": [ + { + "text": "Explore further", + "id": "explore-further", + "type": "h2" + } + ], + "props": { + "html": "

Explore further

" + } + }, + { + "uuid": "c495a9e4-1226-41bd-ab17-c8ab6b83bc9c", + "component": "TideLandingPagePromoCard", + "id": "563870", + "layout": "card", + "props": { + "displayStyle": "thumbnail", + "title": "Australian Government Schools Upgrade Fund Information", + "summary": "The Australian Government's Schools Upgrade Fund (SUF) invests in large building projects. All Victorian government schools must seek endorsement from the VSBA. ", + "image": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2023-11/SchoolUpgrade_231101_ParkwoodGreenPS_Feature.jpg", + "focalPoint": { + "x": 409, + "y": 248 + }, + "alt": "", + "width": 818, + "height": 496, + "title": "" + }, + "url": "/schools-upgrade-fund", + "showMetadata": true, + "metadata": { + "dateStart": "", + "dateEnd": "", + "topic": "Education", + "contentType": "Landing Page", + "fvRecommendationStatus": "", + "inductionYear": "", + "isGrantOngoing": false + } + } + }, + { + "uuid": "9a5a3b93-0909-4e8a-9029-23426bae9eab", + "component": "TideLandingPagePromoCard", + "id": "2473849", + "layout": "card", + "props": { + "displayStyle": "thumbnail", + "title": "Kinders at schools", + "summary": "New Victorian primary schools will have a kinder on-site or next door. We're also planning and building a pipeline of kindergartens at existing schools. ", + "image": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2023-10/KAS_SothernCrossKindergarten_220801_Featuretile.jpg", + "focalPoint": { + "x": 409, + "y": 248 + }, + "alt": "", + "width": 818, + "height": 496, + "title": "" + }, + "url": "/kinders-at-schools", + "showMetadata": true, + "metadata": { + "dateStart": "", + "dateEnd": "", + "topic": "Education", + "contentType": "Landing Page", + "fvRecommendationStatus": "", + "inductionYear": "", + "isGrantOngoing": false + } + } + }, + { + "uuid": "79a50c73-2039-4d70-abc2-d07a95541454", + "component": "TideLandingPagePromoCard", + "id": "613957", + "layout": "card", + "props": { + "displayStyle": "thumbnail", + "title": "50 early learning centres for Victoria", + "summary": "We're building 50 new early learning centres across Victoria ", + "image": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2023-02/220307_FroebelCarltonELC-Feature.png", + "focalPoint": { + "x": 640, + "y": 388 + }, + "alt": "Froebel Carlton ELC - feature image, Play area", + "width": 1280, + "height": 776, + "title": "Froebel Carlton ELC - feature image, Play area" + }, + "url": "/50-early-learning-centres-victoria", + "showMetadata": true, + "metadata": { + "dateStart": "", + "dateEnd": "", + "topic": "Education", + "contentType": "Landing Page", + "fvRecommendationStatus": "", + "inductionYear": "", + "isGrantOngoing": false + } + } + }, + { + "uuid": "617bc20a-c7ec-462f-a114-eea137f2274e", + "component": "TideLandingPageContent", + "id": "583919", + "internalAnchors": [ + { + "text": "Some of our current projects", + "id": "some-of-our-current-projects", + "type": "h2" + } + ], + "props": { + "html": "

Some of our current projects

" + } + }, + { + "uuid": "92b680a3-3a5d-4096-88a8-280d83b47af8", + "component": "TideLandingPagePromoCard", + "id": "583923", + "layout": "card", + "props": { + "displayStyle": "noImage", + "title": "Hampden Specialist School", + "summary": "Learn more about the improvements at Hampden Specialist School", + "image": null, + "url": "/hampden-specialist-school", + "showMetadata": true, + "metadata": { + "dateStart": "", + "dateEnd": "", + "topic": "Education", + "contentType": "Project: Infrastructure", + "fvRecommendationStatus": "", + "inductionYear": "", + "isGrantOngoing": false + } + } + }, + { + "uuid": "5a56537c-fc57-4041-9eba-a7b9cfc61c69", + "component": "TideLandingPagePromoCard", + "id": "583925", + "layout": "card", + "props": { + "displayStyle": "noImage", + "title": "Heritage College Early Learning Centre", + "summary": "Learn more about the improvements at Heritage College Early Learning Centre.", + "image": null, + "url": "/heritage-college-early-learning-centre", + "showMetadata": true, + "metadata": { + "dateStart": "", + "dateEnd": "", + "topic": "Education", + "contentType": "Project: Infrastructure", + "fvRecommendationStatus": "", + "inductionYear": "", + "isGrantOngoing": false + } + } + }, + { + "uuid": "a8b22878-2dae-480a-91c0-f1adf896a61e", + "component": "TideLandingPagePromoCard", + "id": "583924", + "layout": "card", + "props": { + "displayStyle": "noImage", + "title": "Auburn High School", + "summary": "Learn more about the improvements at Auburn High School.", + "image": null, + "url": "/auburn-high-school", + "showMetadata": true, + "metadata": { + "dateStart": "", + "dateEnd": "", + "topic": "Education", + "contentType": "Project: Infrastructure", + "fvRecommendationStatus": "", + "inductionYear": "", + "isGrantOngoing": false + } + } + } + ] +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/response-all.json b/examples/nuxt-app/test/fixtures/map-table/vsba/response-all.json new file mode 100644 index 0000000000..57b2587b42 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/response-all.json @@ -0,0 +1,125739 @@ +{ + "took": 80, + "timed_out": false, + "_shards": { "total": 5, "successful": 5, "skipped": 0, "failed": 0 }, + "hits": { + "total": { "value": 2159, "relation": "eq" }, + "max_score": null, + "hits": [ + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/37143:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/a1-school"], + "changed": ["2023-12-29T12:00:37+11:00"], + "created": ["2023-12-22T14:38:48+11:00"], + "field_about_project_processed": [ + "a new project", + "a new project", + "a new project" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem", + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem", + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Inclusion Grant", + "Building Blocks Capacity Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_latitude": ["-37.995791569800396", "-37.99328442"], + "field_longitude": ["145.1462876592843", "145.1450121"], + "field_mappintype_name": [ + "Early childhood", + "Early childhood", + "School upgrade" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["Lav2-1", "Lav2-2", "LAV8"], + "field_project_title": ["Child care", "Child care", "new school"], + "field_q_complete": ["Q2, 2025", "Q2, 2025", "Q2, 2025"], + "field_start_date": ["Q1, 2024", "Q1, 2024", "Q1, 2024"], + "field_status_name": ["Design", "Design", "Design"], + "field_street_address": ["855 Springvale Rd"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [37143], + "status": [true], + "title": ["A1 school"], + "type": ["project_infrastructure"], + "uid": [11547], + "uuid": ["aa52fdf0-1421-488f-9043-315b2837ee72"] + }, + "sort": ["A1 school"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/37146:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aaa-school"], + "changed": ["2023-12-29T12:00:35+11:00"], + "created": ["2023-12-29T12:00:34+11:00"], + "field_about_project_processed": ["a new project"], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_latitude": ["-37.99328442"], + "field_latitude_longitude_value": ["-37.99328442,145.1450121"], + "field_latitude_value": ["-37.99328442"], + "field_longitude": ["145.1450121"], + "field_longitude_value": ["145.1450121"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3177"], + "field_project_code": ["LAV8"], + "field_project_title": ["Child care"], + "field_q_complete": ["Q2, 2025"], + "field_start_date": ["Q1, 2024"], + "field_status_name": ["Design"], + "field_street_address": ["146 Kidds Rd"], + "field_suburb": ["Doveton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [37146], + "status": [true], + "title": ["AAA school"], + "type": ["project_infrastructure"], + "uid": [11547], + "uuid": ["7c7e0a0f-fbf5-4fda-bc9a-393980fcd9ba"] + }, + "sort": ["AAA school"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20047:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/abbotsford-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished\u00a0the double-storey heritage school\u00a0building,\u00a0demolished\u00a0internal walls to create new teaching and learning spaces, and installed\u00a0a lift to allow access for students with special needs. We also delivered a new covered hardcourt, toilet block, learning community hubs and multi-purpose rooms.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$8.28 million of funding was allocated to this school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Abbotsford Primary School" + ], + "field_latitude": ["-37.809460"], + "field_latitude_longitude_value": ["-37.809460,144.998688"], + "field_latitude_value": ["-37.809460"], + "field_longitude": ["144.998688"], + "field_longitude_value": ["144.998688"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3067"], + "field_project_code": ["01-1886"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Lithgow St"], + "field_suburb": ["Abbotsford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20047], + "status": [true], + "title": ["Abbotsford Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a2ccbaa6-2a8d-4c98-8a03-7c7690a62aa7"] + }, + "sort": ["Abbotsford Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21234:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/abeles-liberman-pre-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are replacing asbestos roof sheets with a safer, steel alternative. A licensed technician will remove the asbestos in line with occupational health and safety regulations. They will monitor air quality throughout the process and certify the building is safe. They will complete the asbestos removal when children and staff are offsite.", + "We refurbished the resource area, therapy room and associated bathrooms. The resource area is a shared hub for staff with educational materials, resources and equipment to enhance children's learning. It includes a planning space for educators to work collaboratively. The therapy room allows children to access on-site sessions during school hours. The children's toilets were also relocated to be closer to their learning environment, ensuring quick access to the space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $500,000.00 was allocated to the project.", + "In the 2020\u201321 Building Blocks Improvement Grant $207,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Abeles Liberman Pre School." + ], + "field_latitude": ["-37.870807647705078"], + "field_latitude_longitude_value": [ + "-37.870807647705078,145.02366638183594" + ], + "field_latitude_value": ["-37.870807647705078"], + "field_longitude": ["145.02366638183594"], + "field_longitude_value": ["145.02366638183594"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3161"], + "field_project_code": ["d1-15-285", "15-285"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2024", "Q1 2022"], + "field_start_date": ["Q4 2022", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["81 Balaclava Rd"], + "field_suburb": ["Caulfield North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21234], + "status": [true], + "title": ["Abeles Liberman Pre School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["83e1d390-683e-49bb-978e-acab63707062"] + }, + "sort": ["Abeles Liberman Pre School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20276:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aberfeldie-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We undertook modernisation works to upgrade existing school facilities\u200b. This included refurbishments to\u00a0student toilets, roofing, the hall and\u00a0teaching spaces.\u00a0Landscaping work\u00a0was also\u00a0undertaken\u00a0throughout the site.", + "We helped\u00a0upgrade\u00a0the outdoor sensory learning and leisure space with new garden beds, quiet areas and a sheltered structure.", + "We refurbished the staff toilets and the accessible toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2016\u201317 State Budget allocated $1.13 million funding to this school. The school received an additional $1.4 million in the 2018\u201319 State Budget.", + "In 2018, $100,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2022\u201323 State Budget the project received $191,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Aberfeldie Primary School." + ], + "field_latitude": ["-37.755760", "-37.756488"], + "field_latitude_longitude_value": ["-37.755760,144.894760"], + "field_latitude_value": ["-37.755760"], + "field_longitude": ["144.894760", "144.894774"], + "field_longitude_value": ["144.894760"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3040"], + "field_project_code": ["01-4220", "D1-01-4220", "D2-01-4220"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2019", "Q4 2019", "Q1 2023"], + "field_start_date": ["Q4 2018", "Q2 2022"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["1 Doone St"], + "field_suburb": ["Essendon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20276], + "status": [true], + "title": ["Aberfeldie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aa44ec0d-0123-45fc-a12e-e1a924c9cc5e"] + }, + "sort": ["Aberfeldie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21301:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/acacia-avenue-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Kingston City Council built the new preschool.\u00a0\u200b The new facility includes: 2 early years indoor education spaces staff amenities multipurpose spaces meeting rooms allied health consulting\u200b rooms.\u00a0 It is\u00a0used for\u00a03 and 4-year-old kindergarten,\u00a0community group meetings, playgroups and providing\u00a0community services.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "\u200bAs part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $650,000 has been allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Acacia Avenue Preschool." + ], + "field_latitude": ["-37.98267"], + "field_latitude_longitude_value": ["-37.98267,145.0832"], + "field_latitude_value": ["-37.98267"], + "field_longitude": ["145.0832"], + "field_longitude_value": ["145.0832"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3194"], + "field_project_code": ["15-5305"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["18 Acacia Av"], + "field_suburb": ["Mentone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21301], + "status": [true], + "title": ["Acacia Avenue Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bf6d8cb1-2791-4820-ae51-dd90262b41d9"] + }, + "sort": ["Acacia Avenue Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28961:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/acacia-childrens-centre-richmond"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor area. Children of all abilities can now learn in a natural environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $51,703 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Acacia Children's Centre - Richmond" + ], + "field_latitude": ["-37.81447356"], + "field_latitude_longitude_value": ["-37.81447356,144.997319"], + "field_latitude_value": ["-37.81447356"], + "field_longitude": ["144.997319"], + "field_longitude_value": ["144.997319"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3121"], + "field_project_code": ["15-4713"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Belgium Ave"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28961], + "status": [true], + "title": ["Acacia Children's Centre - Richmond"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["0d798bbf-119f-4e7d-9f6c-9f4414dc4399"] + }, + "sort": ["Acacia Children's Centre - Richmond"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22622:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/acacia-childrens-centre-st-albans"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We replaced the cladding with safer, non-combustible material." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $300,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Acacia Children's Centre \u2013 St Albans" + ], + "field_latitude": ["-37.7276899"], + "field_latitude_longitude_value": ["-37.7276899,144.7980334"], + "field_latitude_value": ["-37.7276899"], + "field_longitude": ["144.7980334"], + "field_longitude_value": ["144.7980334"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["15-5475"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["159 Taylors Rd"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22622], + "status": [true], + "title": ["Acacia Children's Centre \u2013 St Albans"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["16cb82ff-5330-4819-882d-505e296ca827"] + }, + "sort": ["Acacia Children's Centre – St Albans"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21280:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/acacia-fitzroy-creche"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Acacia Indochinese Community Support Association, we upgraded the creche. The upgrade will include: creating more kindergarten places for 3 and 4-year-olds by converting storage and staff spaces into a kindergarten room building an extension, including a staff room.", + "We upgraded the outdoor learning spaces to make them more functional for children of all abilities and ages." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was allocated $145,000 through the Children's Facilities Capital Program.", + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $103,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Learning Facility Upgrade", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Acacia Fitzroy Creche." + ], + "field_latitude": ["-37.80312", "-37.80258496"], + "field_latitude_longitude_value": ["-37.80312,144.97929"], + "field_latitude_value": ["-37.80312"], + "field_longitude": ["144.97929", "144.9799422"], + "field_longitude_value": ["144.97929"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3065"], + "field_project_code": ["15-4714", "D1-15-4714"], + "field_project_title": [ + "Early Learning Facility Upgrade", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2022", "Q2 2022"], + "field_start_date": ["Q1 2020", "Q1 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["187 Napier St"], + "field_suburb": ["Fitzroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21280], + "status": [true], + "title": ["Acacia Fitzroy Creche"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1daa2838-c812-4982-b11c-d8ad6f3206af"] + }, + "sort": ["Acacia Fitzroy Creche"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21233:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/adass-israel-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the 4 kindergarten playgrounds. Children from the preschool were actively involved in designing the new playgrounds. This has helped them connect with, and take responsibility for, their new play spaces.", + "We expanded the preschool to prepare for the roll-out of subsidised kindergarten for 3-year-olds. This project transformed existing spaces into kindergarten facilities and created a new outdoor area. We also relocated administration facilities to improve the entrance and flow of the kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $500,000 was allocated to this project.", + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $600,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Adass Israel Preschool." + ], + "field_latitude": ["-37.88382492", "-37.886802673339844"], + "field_latitude_longitude_value": ["-37.88382492,145.0087986"], + "field_latitude_value": ["-37.88382492"], + "field_longitude": ["145.0087986", "145.00653076171875"], + "field_longitude_value": ["145.0087986"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3185"], + "field_project_code": ["D1-15-283", "15-283"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Capacity Grant - Expansion" + ], + "field_q_complete": ["Q1 2023", "Q4 2022"], + "field_start_date": ["Q1 2022", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["10-12 King St"], + "field_suburb": ["Elsternwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21233], + "status": [true], + "title": ["Adass Israel Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["93368945-4496-41c0-ab57-bb49449a8e00"] + }, + "sort": ["Adass Israel Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21182:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/advance-college-education-incorporated"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college with an upgrade that allows it to enrol more students at the Rosebud Campus. The upgrade also improved staff amenities, parking and student drop-off and pick-up areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2.8 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Advance College of Education Incorporated." + ], + "field_latitude": ["-38.383253"], + "field_latitude_longitude_value": ["-38.383253,144.886925"], + "field_latitude_value": ["-38.383253"], + "field_longitude": ["144.886925"], + "field_longitude_value": ["144.886925"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3939"], + "field_project_code": ["03-2109"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["6 Henry Wilson Dr"], + "field_suburb": ["Rosebud"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21182], + "status": [true], + "title": ["Advance College of Education Incorporated"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b2dcf9e8-0634-4736-a65d-d0d577fb991c"] + }, + "sort": ["Advance College of Education Incorporated"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20387:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ainslie-parklands-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the playground space.", + "We delivered a new architect-designed modular building to Ainslie Parklands Primary School to replace Block A.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Minor Capital Works Fund, the school was allocated $251,165.", + "In Round 3 of the program, the school was allocated $2,726,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ainslie Parklands Primary School." + ], + "field_latitude": ["-37.792348", "-37.79227"], + "field_latitude_longitude_value": ["-37.792348,145.263099"], + "field_latitude_value": ["-37.792348"], + "field_longitude": ["145.263099", "145.26322"], + "field_longitude_value": ["145.263099"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["D1-01-4879", "01-4879"], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q3 2022", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Hinkley Av"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20387], + "status": [true], + "title": ["Ainslie Parklands Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["25dac688-5cb5-4f9c-a67b-c10d96cae227"] + }, + "sort": ["Ainslie Parklands Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20681:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aintree-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including new play equipment.", + "The school will receive new permanent buildings to provide space for an additional 300 students.", + "We built a new primary school\u00a0in Aintree. It opened in 2021 and helps the growing local population get great education close to home.Simon Cornock was appointed as the first principal. Enrolments are now open for Prep to Year 6.Your new school includes the following facilities:2 learning neighbourhoodsadministration buildingoutdoor play courtsperforming arts and physical education buildingsports field.Timbertop Children\u2019s & Community Centre is located next to the\u00a0school. This will help local children make a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children.Further information on the school can be found on its official Facebook page.School nameThe school was originally known by the interim name of Rockbank North Primary School while it was being planned and built. Aintree Primary School was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including public interest, relevance to the local area, and the consideration of local Indigenous languages.The school is named after the suburb it is located in. This is the first new primary school to be built in Aintree.We consulted with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2022\u201323 State Budget, this school received at least $11.201 million.", + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for a proposed primary school in Aintree.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "New School", + "New School" + ], + "field_landing_page_summary": [ + "Learn more about the build of Aintree Primary School." + ], + "field_latitude": ["-37.723801", "-37.723801", "-37.72354"], + "field_latitude_longitude_value": ["-37.723801,144.666228"], + "field_latitude_value": ["-37.723801"], + "field_longitude": ["144.666228", "144.666228", "144.66595"], + "field_longitude_value": ["144.666228"], + "field_mappintype_name": [ + "School upgrade", + "New school", + "New school" + ], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3336"], + "field_project_code": ["D1-01-5575", "D2-01-5575", "01-5575"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "New School - Expansion", + "New School" + ], + "field_q_complete": ["Q1 2024", "Q2 2025", "Q1 2021"], + "field_start_date": ["Q4 2021", "Q2 2022", "Q2 2018"], + "field_status_name": ["Construction", "Construction", "Complete"], + "field_street_address": ["28 Fields St"], + "field_suburb": ["Aintree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20681], + "status": [true], + "title": ["Aintree Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cf2b4f54-5523-40c1-b443-ef92b6ea19de"] + }, + "sort": ["Aintree Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20672:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aireys-inlet-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to improve the school, upgrading and modernising facilities, including the main building. This ensures students are learning in an environment designed for delivering modern education.", + "We helped the school upgrade the playground and install new equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $2.22 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $65,131." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Aireys Inlet Primary School." + ], + "field_latitude": ["-38.4579043", "-38.4579043"], + "field_latitude_longitude_value": ["-38.4579043,144.1084772"], + "field_latitude_value": ["-38.4579043"], + "field_longitude": ["144.1084772", "144.1084772"], + "field_longitude_value": ["144.1084772"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3231"], + "field_project_code": ["D1-01-5566", "01-5566"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2024", "Q1 2022"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Anderson St"], + "field_suburb": ["Aireys Inlet"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20672], + "status": [true], + "title": ["Aireys Inlet Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["139adc35-108b-4807-a733-13bf0a4119ec"] + }, + "sort": ["Aireys Inlet Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27770:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/airly-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Airly Primary School" + ], + "field_latitude": ["-38.025712"], + "field_latitude_longitude_value": ["-38.025712,147.113897"], + "field_latitude_value": ["-38.025712"], + "field_longitude": ["147.113897"], + "field_longitude_value": ["147.113897"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3851"], + "field_project_code": ["01-4169"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["226 Airly Estate Rd"], + "field_suburb": ["Airly"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27770], + "status": [true], + "title": ["Airly Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0f371ced-09ef-4ae7-a215-009ccbe1a99c"] + }, + "sort": ["Airly Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21172:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aitken-college"], + "changed": ["2023-11-20T10:22:14+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to build a double-storey junior school building. Works included: 12 classrooms and support spaces a music and performance space a visual arts and technology space administration offices toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Aitken College." + ], + "field_latitude": ["-37.6264594"], + "field_latitude_longitude_value": ["-37.6264594,144.8832745"], + "field_latitude_value": ["-37.6264594"], + "field_longitude": ["144.8832745"], + "field_longitude_value": ["144.8832745"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3059"], + "field_project_code": ["03-1978"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1010 Mickleham Rd"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21172], + "status": [true], + "title": ["Aitken College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["af203b3f-0f57-435c-8d42-2f196a671072"] + }, + "sort": ["Aitken College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21394:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aitken-hill-integrated-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Hume City Council built\u00a0the Aitken Hill Integrated Community Centre. The centre\u00a0includes: 2 preschool rooms 2 maternal child health consulting rooms 3 specialist rooms flexible multipurpose community meeting/functions rooms and playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 Children's Facilities Capital Program $1.6 million was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Aitken Hill Integrated Community Centre." + ], + "field_latitude": ["-37.60558"], + "field_latitude_longitude_value": ["-37.60558,144.90348"], + "field_latitude_value": ["-37.60558"], + "field_longitude": ["144.90348"], + "field_longitude_value": ["144.90348"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["ELC-1"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Waterview & Elevation Blvd"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21394], + "status": [true], + "title": ["Aitken Hill Integrated Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["847eee93-2b90-4726-a1fd-bc636bf23de0"] + }, + "sort": ["Aitken Hill Integrated Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20673:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aitken-hill-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school will receive new permanent buildings to provide space for an additional 300 students.", + "We are building an inclusive outdoor learning space, including new sensory equipment.", + "Aitken Hill Primary School\u00a0will accommodate up to 475 students from Prep to Year 6. We've completed the\u00a0first stage,\u00a0and it welcomed\u00a0its first students in\u00a0term 1, 2019. \u200bThe school received an additional $6.77 million in the 2018-19 State Budget for Stage 2 of the project \u2013 constructing a performing arts and physical education facility that will be ready later\u00a0in term 1, 2019.\u00a0 Aitken Hill Primary School has an official Facebook page.\u200b Follow it for all the latest news.\u00a0\u200b \u200b \u200b \u200b Peter Hansen has been appointed as the foundation principal of Aitken Hill Primary School. For questions about enrolments, please contact the school. State-wide school zone maps are available at\u00a0Find my School. Policies on\u00a0enrolment,\u00a0placement, and\u00a0admission are available on the Department of Education's\u00a0website.\u200b\u200b Aitken Hill Integrated Community Centre\u00a0is located next to Aitken Hill Primary School, helping local\u00a0children make\u00a0a smooth transition from pre-school and reducing the number of drop-offs for some parents with kinder and school-aged children.\u00a0 This school, designed by Architectus and K2LD as part of the\u00a0Growth Areas Schools Project,\u00a0was a\u00a0winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $11.201 million.", + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "The 2017\u201318 State Budget allocated $13.806 million towards the school.The school received an additional $6.77 million in the 2018\u201319 State Budget for construction." + ], + "field_funding_type_name": [ + "New School", + "Inclusive Schools Fund", + "New School" + ], + "field_landing_page_summary": [ + "Learn more about the build of Aitken Hill Primary School" + ], + "field_latitude": ["-37.601714", "-37.601714", "-37.6022"], + "field_latitude_longitude_value": ["-37.601714,144.905558"], + "field_latitude_value": ["-37.601714"], + "field_longitude": ["144.905558", "144.905558", "144.905547"], + "field_longitude_value": ["144.905558"], + "field_mappintype_name": [ + "New school", + "School upgrade", + "New school" + ], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["D2-01-5567", "D1-01-5567", "01-5567"], + "field_project_title": [ + "New School - Expansion", + "Inclusive Schools Fund - Round 7", + "New School" + ], + "field_q_complete": ["Q2 2025", "Q2 2024", "Q1 2019"], + "field_start_date": ["Q2 2022", "Q4 2021"], + "field_status_name": ["Construction", "Construction", "Complete"], + "field_street_address": ["51 Rhyolite Dr"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20673], + "status": [true], + "title": ["Aitken Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["52c82ceb-66f3-406f-94c3-8b66b86b0e25"] + }, + "sort": ["Aitken Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21305:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/al-iman-college-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Al Iman College\u00a0extended\u00a0their early learning facility by building an additional large teaching space. This has\u00a0increase the centre's operational capacity and upgrade services for both staff and children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $339,573 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Al Iman College - Early Learning Centre" + ], + "field_latitude": ["-37.70712"], + "field_latitude_longitude_value": ["-37.70712,144.56548"], + "field_latitude_value": ["-37.70712"], + "field_longitude": ["144.56548"], + "field_longitude_value": ["144.56548"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["15-5532"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["20-40 Rees Rd"], + "field_suburb": ["Melton South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21305], + "status": [true], + "title": ["Al Iman College - Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1f6904bb-7bcf-472d-957d-a90aaa549b5d"] + }, + "sort": ["Al Iman College - Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20647:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alamanda-k-9-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are constructing a new building for Alamanda K-9 College. This will create places for more students at the school. It will reduce the need for relocatable buildings.The new building will include specialist spaces for art, digital media, textiles, food technology, wood and metal work, and science. It will also include a canteen, student toilets, and staff work areas. We will create outdoor terrace areas and complete landscaping works.There will be more teaching and learning spaces for local students. They will be learning in an environment designed for delivering modern education.\u00a0", + "We installed rubber safety matting in the school's playgrounds to make them accessible for all children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $6.2 million, with a further $5.37 million in 2023.", + "In 2019, $133,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Alamanda K-9 College" + ], + "field_latitude": ["-37.9071598", "-37.90844"], + "field_latitude_longitude_value": ["-37.9071598,144.7413101"], + "field_latitude_value": ["-37.9071598"], + "field_longitude": ["144.7413101", "144.74046"], + "field_longitude_value": ["144.7413101"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["D1-01-5528", "01-5528"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2025", "Q1 2022"], + "field_start_date": ["Q2 2021", "Q4 2019"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["86-100 Alamanda Boulevard"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20647], + "status": [true], + "title": ["Alamanda K-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["26d36d6d-a09f-45a2-bf28-5b6eeaff19ef"] + }, + "sort": ["Alamanda K-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20508:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/albanvale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the student toilets to provide modern and accessible amenities for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $380,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Albanvale Primary School." + ], + "field_latitude": ["-37.7440207"], + "field_latitude_longitude_value": ["-37.7440207,144.7738175"], + "field_latitude_value": ["-37.7440207"], + "field_longitude": ["144.7738175"], + "field_longitude_value": ["144.7738175"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["01-5179"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["54\u201364 Diamond Av"], + "field_suburb": ["Albanvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20508], + "status": [true], + "title": ["Albanvale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a304d4a6-ccb9-4741-ac7b-adef5e62a649"] + }, + "sort": ["Albanvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20610:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/albany-rise-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We constructed an artificial turf multi-purpose sports surface and undertook landscape works. \u200b\u200b", + "This project is now complete, we installed a new, secure fence along Zita Street. The Victorian government allocated $10 million to the School Improvement Fund in the 2015\u201316 State Budget to support minor works projects." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $1,090,909 from the Minor Capital Works Fund.", + "In the 2017\u201318 State Budget, the school received $407,500.", + "In the 2017\u201318 State Budget $62,204 was allocated to the school as part of the planned maintenance program. In the 2015\u201316 State Budget, $26,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Albany Rise Primary School." + ], + "field_latitude": ["-37.928122", "-37.92381", "-37.92381"], + "field_latitude_longitude_value": ["-37.928122,145.172891"], + "field_latitude_value": ["-37.928122"], + "field_longitude": ["145.172891", "145.17267", "145.17267"], + "field_longitude_value": ["145.172891"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3170"], + "field_project_code": ["D2-01-5427", "01-5427", "D1-01-5427"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund", + "School Improvement Fund" + ], + "field_q_complete": ["Q1 2024", "Q4 2018"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Albany Dr"], + "field_suburb": ["Mulgrave"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20610], + "status": [true], + "title": ["Albany Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["551176f0-3e69-48cf-9db8-067dfc255188"] + }, + "sort": ["Albany Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20959:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/albert-park-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We undertook a 4 stage project to cater for increasing enrolments at the college. Firstly we created additional classrooms in the gymnasium building at the Danks St\u00a0campus. The second stage involved relocating the previous Pickles St tenant, Melbourne City Mission, in order to build a new campus on the site and reconfigured the existing building to provide modern classrooms for up to 200 students in the third stage. Finally, we constructed 3 external classroom pavilions and provided landscaped gardens for the site.", + "We completed an Environmental Arts Hub at the Bay St campus in early 2017. This involved redeveloping a heritage-listed naval drill hall and former post office. The Hub is being used for a specialist program the school runs for its 250 Year 9 students to develop their knowledge of arts, sciences and humanities through studying climate change and other environmental issues. This innovative cross-discipline approach to learning brings the students together with 25 members of staff, artists in residence, scientists and members of the local community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017\u201318 State Budget allocated $5 million for Project 1.", + "Project 2 received $7.8 million from the 2014\u201315 and 2016\u201317 budgets." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Albert Park College." + ], + "field_latitude": ["-37.84472", "-37.84472"], + "field_latitude_longitude_value": ["-37.84472,144.94764"], + "field_latitude_value": ["-37.84472"], + "field_longitude": ["144.94764", "144.94764"], + "field_longitude_value": ["144.94764"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Explore more about other projects at the college" + ], + "field_postcode": ["3206"], + "field_project_code": ["01-8889", "D1-01-8889"], + "field_project_title": [ + "Upgrade and Modernisation - more classrooms and new campus", + "Upgrade and Modernisation - Environmental Arts Hub" + ], + "field_q_complete": ["Q2 2018", "Q4 2016"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["83 Danks St"], + "field_suburb": ["Albert Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20959], + "status": [true], + "title": ["Albert Park College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["81d3eb62-75c4-41ea-b331-b0496b68247f"] + }, + "sort": ["Albert Park College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19960:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/albert-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the student toilets to improve amenity, cleanliness and hygiene.", + "We refurbished the Heritage Victoria-listed former church building on the school site. The school uses the hall for drama and physical education, and this upgrade will ensure that it is fit to deliver these important curriculum subjects.", + "We extended the Moubray St Community Park to meet the growing recreational needs of the community and school. We consulted extensively with the community and worked with the school and the City of Port Phillip. The Moubray St community park is used by the students during school hours and is open to the public outside of school hours and on weekends.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $295,184 from the Minor Capital Works Fund.", + "The 2018\u201319 State Budget allocated $900,000 in funding.", + "In the 2016\u201317 State Budget, funding was provided for a community park extension. The Government has subsequently announced $900,000 in additional funding." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Albert Park Primary School." + ], + "field_latitude": ["-37.841884", "-37.841896", "-37.840302"], + "field_latitude_longitude_value": ["-37.841884,144.952766"], + "field_latitude_value": ["-37.841884"], + "field_longitude": ["144.952766", "144.952423", "144.957062"], + "field_longitude_value": ["144.952766"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3206"], + "field_project_code": ["D2-01-1181", "D1-01-1181", "01-1181"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation - Heritage Victoria listed building", + "Upgrade and Modernisation - Moubray Street Community Park" + ], + "field_q_complete": ["Q4 2023", "Q3 2022", "Q3 2016"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Bridport St"], + "field_suburb": ["Albert Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19960], + "status": [true], + "title": ["Albert Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0855314a-31a2-4a63-805d-0be89e6e7b78"] + }, + "sort": ["Albert Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20379:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/albion-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created an outdoor learning space and playground for the school community at Albion North Primary School. The outdoor area includes a sensory garden, quiet space, and equipment that supports individual students' physical needs and sensory issues.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Inclusive Schools Fund, $177,400 was allocated to the school." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Albion North Primary School" + ], + "field_latitude": ["-37.76185"], + "field_latitude_longitude_value": ["-37.76185,144.82337"], + "field_latitude_value": ["-37.76185"], + "field_longitude": ["144.82337"], + "field_longitude_value": ["144.82337"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["01-4855"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["67-73 Furlong Rd"], + "field_suburb": ["Sunshine North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20379], + "status": [true], + "title": ["Albion North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8f3cc43a-8def-45c6-bac1-dc6d09a1b48a"] + }, + "sort": ["Albion North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20281:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/albion-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We installed a roof\u00a0over the basketball court,\u00a0and added synthetic turf to create a multifunctional undercover\u00a0outdoor space.", + "We modernised the school by\u00a0refurbishing classrooms in Block A and Block C and upgrading\u00a0the administration building.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $454,165.", + "In the 2018\u201319 State Budget $1.3 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Albion Primary School." + ], + "field_latitude": ["-37.7810590000007", "-37.776459"], + "field_latitude_longitude_value": [ + "-37.7810590000007,144.819577350014" + ], + "field_latitude_value": ["-37.7810590000007"], + "field_longitude": ["144.819577350014", "144.819809"], + "field_longitude_value": ["144.819577350014"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["D1-01-4265", "01-4265"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2022", "Q3 2020"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Adelaide St"], + "field_suburb": ["Albion"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20281], + "status": [true], + "title": ["Albion Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5dffa509-6de1-4294-a9f1-021506d6fccb"] + }, + "sort": ["Albion Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20457:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aldercourt-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at the school, upgrading Block A and improving the school's basketball and netball courts.", + "We significantly upgraded and modernised Aldercourt Primary School. It included building: innovative, flexible spaces that support modern teaching practices and allow the school to offer integrated family, health and wellbeing services a new early learning centre\u00a0a welcoming community area that invites parents and the wider community to share school resources. The centre runs the Our Place model, a one-stop-shop for the community to promote positive educational outcomes for families and children. The\u00a0Our Place model is a partnership between the Department of Education and the Colman Foundation. The model offers families a range of services from one location, including: funded kindergarten for three and four-year-olds primary, secondary and adult education maternal and child health services health and wellbeing support training and job-seeking services.\u00a0 This school is part of the Frankston North Education Plan. Its\u00a0vision is for every child and family in the Frankston North community to succeed in learning and life \u2013 through better education and health and wellbeing programs from birth. Learn more about how the plan is transforming local education for Frankston North. Learn how education plans offer extra support for students to reach their full potential.\u00a0", + "We refurbished classrooms to create a new Year 5 and 6 Learning Hub. The learning hub has four flexible open plan classrooms geared for modern education practice, such as collaborative teaching. The building offers: improved lighting\u00a0 disability access\u00a0 easily identifiable 'task areas' using different floor finishes. We also refurbished the toilet block. This school is part of the Frankston North Education Plan. Its which vision is for every child and family in the Frankston North community to succeed in learning and life \u2013 through better education and health and wellbeing programs from birth. Learn more about how the plan is transforming local education for Frankston North. Learn how education plans offer extra support for students to reach their full potential.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $3.8 million", + "In the 2017-18 State Budget, the Frankston North Education Plan project shared in $7 million planning funding. The Frankston North Education Plan received an additional $15 million in the 2018-19 State Budget. Aldercourt Primary School is part of the Frankston North Education Plan. In the 2019-20 State Budget, the school shared in $11.268 million allocated to the Frankston North Education Plan.", + "In the 2017-18 State Budget, $352,000 was allocated to the school. An additional $100,000 was also allocated as part of the Planned Maintenance Program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Planned Maintenance Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Aldercourt Primary School" + ], + "field_latitude": ["-38.11658"], + "field_latitude_longitude_value": ["-38.11658,145.16134"], + "field_latitude_value": ["-38.11658"], + "field_longitude": ["145.16134"], + "field_longitude_value": ["145.16134"], + "field_mappintype_name": ["Early childhood", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Aldercourt Primary School \u2013 upgrade and modernisation" + ], + "field_postcode": ["3200"], + "field_project_code": ["D2-01-5043", "D1-01-5043", "01-5043"], + "field_project_title": [ + "Upgrade and Modernisation - Block A and Sports Courts", + "Upgrade and Modernisation - Frankston North Education Plan", + "Upgrade and Modernisation, Planned Maintenance Program" + ], + "field_q_complete": ["Q4 2025", "Q1 2021", "Q1 2019"], + "field_start_date": ["Q2 2023", "Q2 2018", "Q2 2017"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["Silver Avenue"], + "field_suburb": ["Frankston North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20457], + "status": [true], + "title": ["Aldercourt Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d66cde8a-668c-4582-9b7e-e306764c7cb1"] + }, + "sort": ["Aldercourt Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21327:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alexander-magit-children-and-family-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Alexander Magit Children and Family Centre removed their existing veranda and replaced it with new decking and a ramp to increase accessbility and flexibility in programming." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $65,565 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Alexander Magit Children and Family Centre" + ], + "field_latitude": ["-37.88663"], + "field_latitude_longitude_value": ["-37.88663,145.27033"], + "field_latitude_value": ["-37.88663"], + "field_longitude": ["145.27033"], + "field_longitude_value": ["145.27033"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["15-718"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["11 Harwell Rd"], + "field_suburb": ["Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21327], + "status": [true], + "title": ["Alexander Magit Children and Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bf4e5a7a-5ad7-4a90-9fec-4eb7f109af47"] + }, + "sort": ["Alexander Magit Children and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21260:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alexandra-district-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The kindergarten used this funding to upgrade their outdated facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 Children's Facilities Capital Program, $325,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Alexandra & District Kindergarten" + ], + "field_latitude": ["-37.19216"], + "field_latitude_longitude_value": ["-37.19216,145.70863"], + "field_latitude_value": ["-37.19216"], + "field_longitude": ["145.70863"], + "field_longitude_value": ["145.70863"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3714"], + "field_project_code": ["15-4"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Bayley St"], + "field_suburb": ["Alexandra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21260], + "status": [true], + "title": ["Alexandra & District Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ac42f669-9d1b-4e66-9453-4b244162a560"] + }, + "sort": ["Alexandra & District Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21250:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alexandra-avenue-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Brimbank City Council has\u00a0built\u00a0an integrated children\u2019s centre with a 2 room kindergarten, long day care, supported playgroups, and 4 consulting suites for maternal and child health and related services. It is\u00a0a campus-style development, with playground areas allowing for an integrated outdoor program. The model is a birth-to-school precinct offering a seamless transition between services.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program Major Grants $500,000 was allocated to the project." + ], + "field_funding_type_name": ["New Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Alexandra Avenue Children's Centre." + ], + "field_latitude": ["-37.78304"], + "field_latitude_longitude_value": ["-37.78304,144.83775"], + "field_latitude_value": ["-37.78304"], + "field_longitude": ["144.83775"], + "field_longitude_value": ["144.83775"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["15-3301"], + "field_project_title": ["New Integrated Children's Centre"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["31 Alexandra Av"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21250], + "status": [true], + "title": ["Alexandra Avenue Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2c22786a-08d3-4a76-a841-129b77dfe9ee"] + }, + "sort": ["Alexandra Avenue Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20978:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alexandra-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's oval to provide students with a safe and secure place to play, learn and train.", + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $234,165.", + "In the 2019\u201320 State Budget, the school received $3.147 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Alexandra Primary School" + ], + "field_latitude": ["-37.1925701", "-37.192568"], + "field_latitude_longitude_value": ["-37.1925701,145.7117222"], + "field_latitude_value": ["-37.1925701"], + "field_longitude": ["145.7117222", "145.711704"], + "field_longitude_value": ["145.7117222"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3714"], + "field_project_code": ["D1-01-912", "01-912"], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q3 2022", "Q4 2020"], + "field_start_date": ["Q4 2020", "Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["15 Webster St"], + "field_suburb": ["Alexandra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20978], + "status": [true], + "title": ["Alexandra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f56fbdf2-d232-4a76-8c1f-c05b76a164c2"] + }, + "sort": ["Alexandra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22658:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alfred-nuttall-memorial-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We extended\u00a0the office to better accommodate staff and increase storage. This will provide two separate walking areas\u00a0\u2013 a general office, and a director\u2019s office that can also be used as a private meeting room for staff and parent consultations." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Alfred Nuttall Memorial Kindergarten" + ], + "field_latitude": ["-37.77187679"], + "field_latitude_longitude_value": ["-37.77187679,145.022247"], + "field_latitude_value": ["-37.77187679"], + "field_longitude": ["145.022247"], + "field_longitude_value": ["145.022247"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3078"], + "field_project_code": ["15-950"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["34 Separation St"], + "field_suburb": ["Fairfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22658], + "status": [true], + "title": ["Alfred Nuttall Memorial Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3553e510-b42c-4da0-b11d-033871b01253"] + }, + "sort": ["Alfred Nuttall Memorial Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26027:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alfredton-community-hub"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-29T13:54:59+10:00"], + "field_about_project_processed": [ + "We are building an early learning centre with 3 kindergarten rooms. This will allow the centre to offer 99 places as part of the roll-out of funded kindergarten for 3-year-olds. This will give more local children 2 years of high-quality kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2022-23 Building Blocks Capacity Building Grants, $2,250,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Alfredton Community Hub (interim name)" + ], + "field_latitude": ["-37.56496531"], + "field_latitude_longitude_value": ["-37.56496531,143.7948731"], + "field_latitude_value": ["-37.56496531"], + "field_longitude": ["143.7948731"], + "field_longitude_value": ["143.7948731"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["15-ACHB"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Facility" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["18 Donegal Drive"], + "field_suburb": ["Alfredton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26027], + "status": [true], + "title": ["Alfredton Community Hub (interim name)"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["f40275f5-af3b-4277-a4b1-8ef79206dfcd"] + }, + "sort": ["Alfredton Community Hub (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19942:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alfredton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the flooring in the main building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $300,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Alfredton Primary School." + ], + "field_latitude": ["-37.5540575"], + "field_latitude_longitude_value": ["-37.5540575,143.8015741"], + "field_latitude_value": ["-37.5540575"], + "field_longitude": ["143.8015741"], + "field_longitude_value": ["143.8015741"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-1091"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["89a Cuthberts Rd"], + "field_suburb": ["Alfredton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19942], + "status": [true], + "title": ["Alfredton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9d802b44-3635-4746-a29f-2e7524de4cee"] + }, + "sort": ["Alfredton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20954:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alkira-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a cover over the school's outdoor hard courts. We also added lights and upgraded the scoreboard." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Alkira Secondary College" + ], + "field_latitude": ["-38.077529907226563"], + "field_latitude_longitude_value": [ + "-38.077529907226563,145.29853820800781" + ], + "field_latitude_value": ["-38.077529907226563"], + "field_longitude": ["145.29853820800781"], + "field_longitude_value": ["145.29853820800781"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-8874"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Nurture Av"], + "field_suburb": ["Cranbourne North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20954], + "status": [true], + "title": ["Alkira Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1e7a95f9-71fe-4b06-b2ce-4f38264250c1"] + }, + "sort": ["Alkira Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28124:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/all-saints-anglican-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school build stage 1 of a new school. Works include a junior school and arts building, and administration and senior school building, and a STEAM building with 3 specialist teaching rooms for Science, Hopsitality, Design and Technology." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at All Saints Anglican School." + ], + "field_latitude": ["-36.34078691535496"], + "field_latitude_longitude_value": [ + "-36.34078691535496,145.41515034232927" + ], + "field_latitude_value": ["-36.34078691535496"], + "field_longitude": ["145.41515034232927"], + "field_longitude_value": ["145.41515034232927"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3631"], + "field_project_code": ["01-ASAS"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["320 Verney Rd"], + "field_suburb": ["Shepparton North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28124], + "status": [true], + "title": ["All Saints Anglican School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["58fe43e1-a0a2-408d-8ece-dd19387a7efe"] + }, + "sort": ["All Saints Anglican School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20153:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/allansford-and-district-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to upgrade and repair the outdoor play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $73,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Allansford and District Primary School." + ], + "field_latitude": ["-38.3863946"], + "field_latitude_longitude_value": ["-38.3863946,142.5885152"], + "field_latitude_value": ["-38.3863946"], + "field_longitude": ["142.5885152"], + "field_longitude_value": ["142.5885152"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3277"], + "field_project_code": ["01-3"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Frank St"], + "field_suburb": ["Allansford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20153], + "status": [true], + "title": ["Allansford and District Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6d6aa36d-1a0e-4a7f-9ba3-76cdf34e470c"] + }, + "sort": ["Allansford and District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21164:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alphington-grammar-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0refurbish\u00a0and extend\u00a0a\u00a0library and classrooms to create science, technology, engineering and mathematics\u00a0(STEM) facilities, an\u00a0outdoor area, sunken courtyard, student hub and amenities. The project\u00a0also included improving\u00a0disability access and installing a\u00a0lift.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Capital Funding Program for Non-Government Schools, $1,299,446 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Alphington Grammar School." + ], + "field_latitude": ["-37.780411"], + "field_latitude_longitude_value": ["-37.780411,145.036743"], + "field_latitude_value": ["-37.780411"], + "field_longitude": ["145.036743"], + "field_longitude_value": ["145.036743"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3078"], + "field_project_code": ["03-1924"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["12-18 Old Heidelberg Rd"], + "field_suburb": ["Alphington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21164], + "status": [true], + "title": ["Alphington Grammar School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c5de3cc4-8077-4070-a40c-077d5f6311ac"] + }, + "sort": ["Alphington Grammar School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20205:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alphington-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school by constructing a new 2-storey administration block, library and staff rooms.", + "The Victorian Government is investing in the school to deliver a competition-grade gymnasium, music room and a 3-level learning building. This stage also includes refurbishing the art room and classrooms in the heritage building, and landscaping works. The upgrade will create new teaching and learning spaces for an additional 200 students. Community engagement Thank you to everyone who\u00a0took the time to engage with us during our consultation in October 2018. We wanted to hear the community's thoughts on the best way to build capacity. 2 options were under consideration; upgrading the current campus, or building a new senior primary campus for Years 5 & 6. Across all options explored, we heard consistently that the community values a strong community connection, access to the school, open space and safety. We heard that there was little support for Option 2 with a range of concerns raised about student wellbeing, access, outdoor space and cohesion in the school community. After receiving the community\u2019s views and the strengths and weaknesses of the considered options, the Victorian Government decided to upgrade Alphington Primary School at its current site. You can\u00a0contact us\u00a0for a copy of the engagement report.", + "We replaced the roof of the main building to prevent leaks and maintain the character of the original building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, funding was allocated to stages 1 and 2 of this project. \u200b In the 2017\u201318 State Budget, a further $4.5 million was allocated to both stages.", + "In the 2016\u201317 State Budget, funding was allocated to Stages 1 and 2 of this project. \u200bIn the 2017\u201318 State Budget, a further $4.5 million was allocated to both stages.", + "In the 2020 Minor Capital Works Fund, the school was allocated $327,165." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Alphington Primary School." + ], + "field_latitude": ["-37.783523", "-37.783379", "-37.7796845000115"], + "field_latitude_longitude_value": ["-37.783523,145.032006"], + "field_latitude_value": ["-37.783523"], + "field_longitude": ["145.032006", "145.031845", "145.032412700206"], + "field_longitude_value": ["145.032006"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Alphington Primary School upgrade \u2013 virtual tour" + ], + "field_postcode": ["3078"], + "field_project_code": ["D2-01-3599", "01-3599", "D1-01-3599"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2022", "Q3 2022", "Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Yarralea St"], + "field_suburb": ["Alphington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20205], + "status": [true], + "title": ["Alphington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cb01f906-10e1-4d3c-9c70-18f9ee218acd"] + }, + "sort": ["Alphington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21220:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alpine-view-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have expanded the centre. This has increased kinder places for local children, including those needed for the roll-out of subsidised kindergarten for 3-year-olds beginning in 2021." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $1,000,557 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Alpine View Children's Centre." + ], + "field_latitude": ["-36.7352053"], + "field_latitude_longitude_value": ["-36.7352053,146.9630166"], + "field_latitude_value": ["-36.7352053"], + "field_longitude": ["146.9630166"], + "field_longitude_value": ["146.9630166"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3741"], + "field_project_code": ["15-171"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["23 Deacon Av"], + "field_suburb": ["Bright"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21220], + "status": [true], + "title": ["Alpine View Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3fcfbcd8-8dba-423d-b686-d003a46e1b12"] + }, + "sort": ["Alpine View Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20947:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/altona-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We further modernised the school and delivered stage 2 of the school's master plan. This included upgrading the Learning Community Wing.", + "We improved the acoustics in the gym so all students, especially those with hearing difficulties, are able to participate in classes.", + "We expanded the school to a P-12 with an upgrade that gives students and staff better and more modern facilities. We constructed a new senior centre that includes classrooms, an open plan learning area, toilets, kitchen and staff work space. We also refurbished and rearranged science classrooms, prep and storage areas, and administration spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $3.556 million.", + "In 2018, $133,500 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2019\u201320 State Budget, the school received $4.746 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Altona College" + ], + "field_latitude": ["-37.863349", "-37.861584", "-37.86151"], + "field_latitude_longitude_value": ["-37.863349,144.818353"], + "field_latitude_value": ["-37.863349"], + "field_longitude": ["144.818353", "144.817978", "144.81726"], + "field_longitude_value": ["144.818353"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3018"], + "field_project_code": ["D2-01-8857", "01-8857", "D1-01-8857"], + "field_project_title": [ + "Upgrade and Modernisation - Learning Community Wing", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2023", "Q4 2019", "Q3 2021"], + "field_start_date": ["Q4 2020", "Q4 2018", "Q2 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["103 A Grieve Pde"], + "field_suburb": ["Altona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20947], + "status": [true], + "title": ["Altona College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["63597f27-d98a-4f39-835b-179b0540d635"] + }, + "sort": ["Altona College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21406:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/altona-early-years-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Hobsons Bay City Council built an integrated children's centre at Altona P-9 College. Integrated children's centres are key hubs for the community, bringing together a range of services where professionals work together to deliver education, care, health and support services to children and their families. They can provide a focal point for new communities in growth areas, but are equally valuable in improving the accessibility, quality and integration of early childhood services in established metropolitan and regional areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $1.6 million was allocated to the project through the Children's Facilities Capital Program Major Grants." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Altona Early Years Hub" + ], + "field_latitude": ["-37.86283"], + "field_latitude_longitude_value": ["-37.86283,144.81703"], + "field_latitude_value": ["-37.86283"], + "field_longitude": ["144.81703"], + "field_longitude_value": ["144.81703"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Altona Early Years Hub - Fly Through"], + "field_postcode": ["3018"], + "field_project_code": ["ELC-2"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["227 Civic Pde"], + "field_suburb": ["Altona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21406], + "status": [true], + "title": ["Altona Early Years Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5869b27c-5b44-4a48-b690-77e7b5f4f109"] + }, + "sort": ["Altona Early Years Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20564:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/altona-green-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground with new play equipment.", + "We renovated toilet blocks, used by students and staff, to improve amenity and cleanliness." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Altona Green Primary School." + ], + "field_latitude": ["-37.886773", "-37.8868234"], + "field_latitude_longitude_value": ["-37.886773,144.784916"], + "field_latitude_value": ["-37.886773"], + "field_longitude": ["144.784916", "144.7848361"], + "field_longitude_value": ["144.784916"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3028"], + "field_project_code": ["D1-01-5287", "01-5287"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2023", "Q3 2022"], + "field_start_date": ["Q4 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["240 Victoria St"], + "field_suburb": ["Altona Meadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20564], + "status": [true], + "title": ["Altona Green Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["763b99f9-ff91-4d9b-bdf0-f2783f7f98e5"] + }, + "sort": ["Altona Green Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22601:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/altona-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a multi-sensory, inclusive play space. The design is inspired by Indigenous themes and can also be used as an outdoor learning area. The space encourages children to engage with nature and each other." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Improvement Grant, $185,316 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Altona Kindergarten." + ], + "field_latitude": ["-37.86769367"], + "field_latitude_longitude_value": ["-37.86769367,144.8259819"], + "field_latitude_value": ["-37.86769367"], + "field_longitude": ["144.8259819"], + "field_longitude_value": ["144.8259819"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3018"], + "field_project_code": ["15-7"], + "field_project_title": [ + "Building Blocks Improvement Grant \u2013 Play Space" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["89 Blyth St"], + "field_suburb": ["Altona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22601], + "status": [true], + "title": ["Altona Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b56cea54-fa67-4ed2-becb-11714bda1bb3"] + }, + "sort": ["Altona Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20409:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/altona-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered new classrooms, a maker space, meeting rooms and an office to the school. We also refurbished IT spaces, classrooms and student amenities.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.83 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Altona North Primary School." + ], + "field_latitude": ["-37.83773"], + "field_latitude_longitude_value": ["-37.83773,144.84923"], + "field_latitude_value": ["-37.83773"], + "field_longitude": ["144.84923"], + "field_longitude_value": ["144.84923"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3025"], + "field_project_code": ["01-4931"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["51 Cresser St"], + "field_suburb": ["Altona North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20409], + "status": [true], + "title": ["Altona North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["de62ff77-d581-4845-a3f9-c5326ebf4535"] + }, + "sort": ["Altona North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20236:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/altona-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the school's fencing.", + "We delivered a new architect-designed modular building to the school to replace the library. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $1.2 million", + "In the 2017\u201318 State Budget, $888,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Altona Primary School." + ], + "field_latitude": ["-37.86735"], + "field_latitude_longitude_value": ["-37.86735,144.82245"], + "field_latitude_value": ["-37.86735"], + "field_longitude": ["144.82245"], + "field_longitude_value": ["144.82245"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3018"], + "field_project_code": ["D1-01-3923", "01-3923"], + "field_project_title": [ + "Upgrade and Modernisation - Fencing", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2025", "Q1 2018"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["109 Blyth St"], + "field_suburb": ["Altona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20236], + "status": [true], + "title": ["Altona Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["12808854-6cd5-4416-94cf-c2f5dda2e654"] + }, + "sort": ["Altona Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20611:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/amsleigh-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school construct a new covered walkway for all-weather access between buildings.", + "We built\u00a0a large sensory garden and labyrinth that\u00a0is\u00a0accessible for students in wheelchairs. The labyrinth helps children develop skills like relaxation, independence, self-awareness, creativity and flexibility. The sensory garden is designed to\u00a0stimulate the five senses; encouraging\u00a0learning, curiosity and imaginative play.", + "We modernised teaching and learning spaces at the school. This included constructing\u00a0new junior learning spaces to replace old light timber construction buildings,\u00a0and modernising\u00a0classrooms and administration areas in the existing red brick building.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $90,165.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2015\u201316 State Budget, $5.7 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Amsleigh Park Primary School." + ], + "field_latitude": ["-37.9003589", "-37.89953"], + "field_latitude_longitude_value": ["-37.9003589,145.1089603"], + "field_latitude_value": ["-37.9003589"], + "field_longitude": ["145.1089603", "145.10978"], + "field_longitude_value": ["145.1089603"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["D2-01-5428", "D1-01-5428", "01-5428"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2023", "Q3 2019", "Q4 2018"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["17 State St"], + "field_suburb": ["Oakleigh East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20611], + "status": [true], + "title": ["Amsleigh Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1485f0f0-451d-44d5-a6c5-08a0145c3eea"] + }, + "sort": ["Amsleigh Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36660:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/andersons-creek-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $498,793 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Andersons Creek Primary School" + ], + "field_latitude": ["-37.74822"], + "field_latitude_longitude_value": ["-37.74822,145.20768"], + "field_latitude_value": ["-37.74822"], + "field_longitude": ["145.20768"], + "field_longitude_value": ["145.20768"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3113"], + "field_project_code": ["01-5104"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["36-42 Drysdale Road"], + "field_suburb": ["Warrandyte"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36660], + "status": [true], + "title": ["Andersons Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["4c83207e-7d44-4dd4-9220-0933c7f5a953"] + }, + "sort": ["Andersons Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27782:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/anglesea-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Anglesea Primary School" + ], + "field_latitude": ["-38.39678"], + "field_latitude_longitude_value": ["-38.39678,144.191837"], + "field_latitude_value": ["-38.39678"], + "field_longitude": ["144.191837"], + "field_longitude_value": ["144.191837"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3230"], + "field_project_code": ["01-4332"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["85 Camp Rd"], + "field_suburb": ["Anglesea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27782], + "status": [true], + "title": ["Anglesea Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["f1b7ca14-abd2-45a4-8ed8-8a3dd8c747f3"] + }, + "sort": ["Anglesea Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28664:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/angliss-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading this centre. We will refurbish the kitchen, upgrade the hot water system and repaint the interiors. We will also update the fence and entry gate to enhance security and upgrade staff areas like the office and staff kitchen." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $500,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Angliss Children's Centre." + ], + "field_latitude": ["-37.79658019"], + "field_latitude_longitude_value": ["-37.79658019,144.906895"], + "field_latitude_value": ["-37.79658019"], + "field_longitude": ["144.906895"], + "field_longitude_value": ["144.906895"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3011"], + "field_project_code": ["15-558"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["13 Vipont St"], + "field_suburb": ["Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28664], + "status": [true], + "title": ["Angliss Children's Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0ba83e5d-20a5-4f89-a88f-bbcaf68b7aa2"] + }, + "sort": ["Angliss Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23310:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/antonine-sisters-child-care-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are expanding the centre by adding 3 kindergarten rooms. This will allow the centre to offer 25 additional places as part of the roll-out of funded kindergarten for 3-year-olds, giving more local children access to 2 years of high-quality education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $681,800 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Antonine Sisters Child Care Centre" + ], + "field_latitude": ["-37.75468166"], + "field_latitude_longitude_value": ["-37.75468166,144.9708954"], + "field_latitude_value": ["-37.75468166"], + "field_longitude": ["144.9708954"], + "field_longitude_value": ["144.9708954"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["15-3033"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["13 Barrow St"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23310], + "status": [true], + "title": ["Antonine Sisters Child Care Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["965b6ab3-b842-45b4-8b7d-82956f9dfa33"] + }, + "sort": ["Antonine Sisters Child Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20374:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/antonio-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive and accessible Bush Playground and Nature\u2019s Classroom space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Antonio Park Primary School" + ], + "field_latitude": ["-37.8153"], + "field_latitude_longitude_value": ["-37.8153,145.20619"], + "field_latitude_value": ["-37.8153"], + "field_longitude": ["145.20619"], + "field_longitude_value": ["145.20619"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3132"], + "field_project_code": ["01-4844"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["631-639 Whitehorse Rd"], + "field_suburb": ["Mitcham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20374], + "status": [true], + "title": ["Antonio Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["99ed1ae2-016f-4a3e-a9c5-1432c71fb774"] + }, + "sort": ["Antonio Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21478:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/apollo-bay-kindergarten"], + "changed": ["2023-08-03T14:44:26+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a 2-room kindergarten at Apollo Bay P-12 College. Having the kindergarten and school together may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.The kindergarten offers 66 kindergarten places to the local community and includes\u00a0staff areas and outdoor play spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 Budget this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Apollo Bay Kindergarten" + ], + "field_latitude": ["-38.75415"], + "field_latitude_longitude_value": ["-38.75415,143.66225"], + "field_latitude_value": ["-38.75415"], + "field_longitude": ["143.66225"], + "field_longitude_value": ["143.66225"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3233"], + "field_project_code": ["K-01-6203"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Pengilley Av"], + "field_suburb": ["Apollo Bay"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21478], + "status": [true], + "title": ["Apollo Bay Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ba5eb26-1e2a-4730-8853-d77bdfeee976"] + }, + "sort": ["Apollo Bay Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20704:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/apollo-bay-p-12-college"], + "changed": ["2023-08-09T14:23:06+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded and modernised facilities at Apollo Bay P-12 School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u20132018 State Budget $194,704 was allocated to the school as part of the Planned Maintenance Program." + ], + "field_funding_type_name": ["Planned Maintenance Program"], + "field_landing_page_summary": [ + "Learn more about the improvements at Apollo Bay P-12 College" + ], + "field_latitude": ["-38.75466"], + "field_latitude_longitude_value": ["-38.75466,143.66384"], + "field_latitude_value": ["-38.75466"], + "field_longitude": ["143.66384"], + "field_longitude_value": ["143.66384"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Apollo Bay P-12 College." + ], + "field_postcode": ["3233"], + "field_project_code": ["01-6203"], + "field_project_title": ["Planned Maintenance Program"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Pengilley Av"], + "field_suburb": ["Apollo Bay"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20704], + "status": [true], + "title": ["Apollo Bay P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c8a5a4c-ca2f-4514-8762-a1b19f808eea"] + }, + "sort": ["Apollo Bay P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24253:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/apollo-parkways-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T17:06:42+11:00"], + "field_about_project_processed": [ + "We are upgrading the preschool\u2019s outdoor space. Children will gain more natural play spaces. We will design it to stimulate their senses and help them develop physically and socially.", + "We upgraded the adult bathroom, the children's bathroom, and the main learning space. We extended and remodelled the children's bathroom to improve access for children who need more space. We relocated the cleaners\u2019 sink. This removes chemicals and dangerous materials from main areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $180,755.00 was allocated to the project.", + "In Round 1 of the 2021\u201322 Building Blocks Inclusion Grant, $136,365 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Apollo Parkways Preschool." + ], + "field_latitude": ["-37.69541222"], + "field_latitude_longitude_value": ["-37.69541222,145.1050816"], + "field_latitude_value": ["-37.69541222"], + "field_longitude": ["145.1050816"], + "field_longitude_value": ["145.1050816"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["d2-15-421", "15-421"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q1 2024", "Q1 2023"], + "field_start_date": ["Q4 2022", "Q1 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["31 Plenty River Dr"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24253], + "status": [true], + "title": ["Apollo Parkways Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a1057d8e-d6bf-4f5a-ad4a-baf80937bf6b"] + }, + "sort": ["Apollo Parkways Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22353:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/apollo-parkways-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:24:05+11:00"], + "field_about_project_processed": [ + "We refurbished the student toilet block to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $273,632" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Apollo Parkways Primary School" + ], + "field_latitude": ["-37.68739459"], + "field_latitude_longitude_value": ["-37.68739459,145.1098731"], + "field_latitude_value": ["-37.68739459"], + "field_longitude": ["145.1098731"], + "field_longitude_value": ["145.1098731"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["01-5184"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["31-43 Civic Drive"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22353], + "status": [true], + "title": ["Apollo Parkways Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["b06319e4-ab0f-4db2-8938-b5e38386b091"] + }, + "sort": ["Apollo Parkways Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20434:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ararat-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to upgrade fencing to improve security." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $89,620." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ararat North Primary School" + ], + "field_latitude": ["-37.2748378"], + "field_latitude_longitude_value": ["-37.2748378,142.9399152"], + "field_latitude_value": ["-37.2748378"], + "field_longitude": ["142.9399152"], + "field_longitude_value": ["142.9399152"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3377"], + "field_project_code": ["01-4995"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["66 Blake St"], + "field_suburb": ["Ararat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20434], + "status": [true], + "title": ["Ararat North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cdeab5dc-8244-4ab2-be23-ba056ae55e23"] + }, + "sort": ["Ararat North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20815:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ararat-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed\u00a0tired old sports facilities by upgrading the oval and sports courts." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $55,000. In 2020, the school received $495,000." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ararat Primary School" + ], + "field_latitude": ["-37.28622"], + "field_latitude_longitude_value": ["-37.28622,142.9377"], + "field_latitude_value": ["-37.28622"], + "field_longitude": ["142.9377"], + "field_longitude_value": ["142.9377"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3377"], + "field_project_code": ["01-800"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["70-78 Moore St"], + "field_suburb": ["Ararat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20815], + "status": [true], + "title": ["Ararat Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["58012525-d8a2-41eb-8b5f-a331563a36da"] + }, + "sort": ["Ararat Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33029:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ararat-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Ararat Secondary College." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $4.6 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ararat Secondary College" + ], + "field_latitude": ["-37.28599961"], + "field_latitude_longitude_value": ["-37.28599961,142.9219615"], + "field_latitude_value": ["-37.28599961"], + "field_longitude": ["142.9219615"], + "field_longitude_value": ["142.9219615"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3377"], + "field_project_code": ["01-8753"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["4-30 Barkly Street"], + "field_suburb": ["Ararat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33029], + "status": [true], + "title": ["Ararat Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["0bde3ccd-7e6b-4622-8482-1183cbe8e8f2"] + }, + "sort": ["Ararat Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20331:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ararat-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an indoor inclusive learning space.", + "We delivered a new architect-designed modular building to Ararat West Primary School to replace Block B with new classrooms, an art and craft room and staff area.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $57,673.", + "In the 2017-18 State Budget, $2,080,000 was allocated to the school" + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ararat West Primary School" + ], + "field_latitude": ["-37.2769745505875", "-37.27666"], + "field_latitude_longitude_value": [ + "-37.2769745505875,142.919734748706" + ], + "field_latitude_value": ["-37.2769745505875"], + "field_longitude": ["142.919734748706", "142.92121"], + "field_longitude_value": ["142.919734748706"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3377"], + "field_project_code": ["D1-01-4720", "01-4720"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2023", "Q2 2018"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Kneebone St"], + "field_suburb": ["Ararat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20331], + "status": [true], + "title": ["Ararat West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["044188a7-7a34-48f4-a26a-954473cfdb7d"] + }, + "sort": ["Ararat West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21285:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ardeer-kindergarten"], + "changed": ["2023-08-09T15:46:40+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe helped build a two-room kindergarten at Ardeer Primary School. Works included administrative facilities and an outdoor play space.Having the kindergarten and school together may help local children make a smooth transition from pre-school and can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 Budget this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ardeer Kindergarten" + ], + "field_latitude": ["-37.781538"], + "field_latitude_longitude_value": ["-37.781538,144.800036"], + "field_latitude_value": ["-37.781538"], + "field_longitude": ["144.800036"], + "field_longitude_value": ["144.800036"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3022"], + "field_project_code": ["15-4848"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["84-114 Suspension St"], + "field_suburb": ["Ardeer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21285], + "status": [true], + "title": ["Ardeer Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["deae2709-e983-4025-b297-e593ce0ed5df"] + }, + "sort": ["Ardeer Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20375:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ardeer-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground, including new play equipment, soft fall and landscaping.", + "We helped to fund the installation of 1.8m high fences at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000", + "The school received $358,000 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ardeer Primary School" + ], + "field_latitude": ["-37.7810972958559", "-37.7810972958559"], + "field_latitude_longitude_value": [ + "-37.7810972958559,144.7996385423287" + ], + "field_latitude_value": ["-37.7810972958559"], + "field_longitude": ["144.7996385423287", "144.7996385423287"], + "field_longitude_value": ["144.7996385423287"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Ardeer Primary School." + ], + "field_postcode": ["3022"], + "field_project_code": ["D1-01-4848", "01-4848"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2022", "Q4 2018"], + "field_start_date": ["Q2 2021", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["84-114 Suspension St"], + "field_suburb": ["Ardeer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20375], + "status": [true], + "title": ["Ardeer Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["87c13812-3411-4e06-9a86-6d2695560289"] + }, + "sort": ["Ardeer Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25362:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ardeer-south-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $474,127 from the Minor Capital Works Fund.", + "In Round 9 of the Inclusive Schools Fund, the project received $276,492" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ardeer South Primary School" + ], + "field_latitude": ["-37.788396", "-37.788396"], + "field_latitude_longitude_value": ["-37.788396,144.798996"], + "field_latitude_value": ["-37.788396"], + "field_longitude": ["144.798996", "144.798996"], + "field_longitude_value": ["144.798996"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["01-5064", "D2-01-5064"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q4 2023", "Q4 2025"], + "field_start_date": ["Q2 2022", "Q4 2023"], + "field_status_name": ["Construction", "Planning"], + "field_street_address": ["59-75 Murray Street"], + "field_suburb": ["Sunshine West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25362], + "status": [true], + "title": ["Ardeer South Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9d5e24ac-70fd-442d-a7b1-f9af08f82254"] + }, + "sort": ["Ardeer South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20013:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ardmona-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe created an outdoor learning area.", + "We restored\u00a0the original school building to\u00a0address structural issues and improve\u00a0the interiors for student use. We also upgraded three\u00a0existing classrooms\u00a0at the school.", + "We are replacing the student toilet block to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $132,000", + "In the 2017-18 State Budget, $90,000 was allocated to the school to upgrade and modernise facilities. An additional $131,592 was allocated as part of planned maintenance funding. Further funding of $500,000 has been allocated to the school in the 2018-19 State Budget.", + "In Round 2 of the Minor Capital Works Fund, the project received $496,897" + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Planned Maintenance Program", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ardmona Primary School" + ], + "field_latitude": ["-36.385460", "-36.385458"], + "field_latitude_longitude_value": ["-36.385460,145.313232"], + "field_latitude_value": ["-36.385460"], + "field_longitude": ["145.313232", "145.313066"], + "field_longitude_value": ["145.313232"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["D1-01-1563", "01-1563", "D2-01-1563"], + "field_project_title": [ + "School Pride and Sports Fund", + "Upgrade and Modernisation, Planned Maintenance Program", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q4 2021", "Q3 2019", "Q4 2023"], + "field_start_date": ["Q2 2018", "Q4 2021"], + "field_status_name": ["Complete", "Complete", "Construction"], + "field_street_address": ["580 Turnbull Road"], + "field_suburb": ["Ardmona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20013], + "status": [true], + "title": ["Ardmona Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3b5fbcac-c9a8-432a-8709-12dfa36bab4b"] + }, + "sort": ["Ardmona Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20119:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/armadale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space, including a water feature, garden beds and new play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Armadale Primary School" + ], + "field_latitude": ["-37.8525654"], + "field_latitude_longitude_value": ["-37.8525654,145.0176663"], + "field_latitude_value": ["-37.8525654"], + "field_longitude": ["145.0176663"], + "field_longitude_value": ["145.0176663"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3143"], + "field_project_code": ["01-2634"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["9-23 Densham Road"], + "field_suburb": ["Armadale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20119], + "status": [true], + "title": ["Armadale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1a31eb4a-63bb-45be-97a1-f53165e8d370"] + }, + "sort": ["Armadale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20670:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/armstrong-creek-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bThe new Armstrong Creek School is an exciting social infrastructure hub, which seeks to maximize community engagement and encourage out-of-hours use of the school facilities.\u00a0Evan Savage has been appointed as the principal.\u00a0 The inclusive school provides new facilities, combining primary (P-6) and special (P-12) school elements under one governance model.\u00a0 The school is part of the Armstrong Creek\u00a0Education Precinct, with a new campus for\u00a0Oberon\u00a0High\u00a0School\u00a0part of this precinct.\u00a0\u00a0 Facilities The school has been designed with the local community in mind and will be a gathering place for local families and residents to enjoy community, arts, sports and recreation programs.\u00a0The primary school accommodates 400 students and the special school accommodates 208 students.\u00a0\u200b \u200b \u200b The\u00a0new facilities at Armstrong Creek School\u00a0include: a Community Hub which will be used by the school during\u00a0the day and activated by the YMCA for before and after school care and other community programs after hours an indoor gymnasium built to Netball Victoria standards an indoor half-court gymnasium outdoor hardcourts and sporting fields sensory gardens, sensory rooms and sensory pressure poles a range of multi-purpose and flexible spaces, including conference, therapy and interview rooms. The school will also boast the latest in environmentally sustainable design and CERES will run its environmental education\u00a0'ResourceSmart' program. We have undertaken extensive communication and consultation\u00a0with the community to ensure the new school will\u00a0meet their diverse needs, including the needs of students with disabilities and mainstream students.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million PPP Project which is creating 15 new schools across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Armstrong Creek School." + ], + "field_latitude": ["-38.23042"], + "field_latitude_longitude_value": ["-38.23042,144.37292"], + "field_latitude_value": ["-38.23042"], + "field_longitude": ["144.37292"], + "field_longitude_value": ["144.37292"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Armstrong Creek School building time-lapse" + ], + "field_postcode": ["3217"], + "field_project_code": ["01-5564"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["100 Central Boulevard"], + "field_suburb": ["Armstrong Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20670], + "status": [true], + "title": ["Armstrong Creek School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c16946ef-b6a5-404a-a3b1-ae8fb72e3b1c"] + }, + "sort": ["Armstrong Creek School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21286:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/arnolds-creek-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the\u00a0kindergarten to prepare for the roll-out of subsidised kindergarten for three-year-olds. This project caters to the area's fast-growing population by providing an additional 33-place room for three and four-year-old kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $750,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Arnolds Creek Kindergarten." + ], + "field_latitude": ["-37.628276824951172"], + "field_latitude_longitude_value": [ + "-37.628276824951172,144.58578491210937" + ], + "field_latitude_value": ["-37.628276824951172"], + "field_longitude": ["144.58578491210937"], + "field_longitude_value": ["144.58578491210937"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["15-4914"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["19 Claret Ash Blvd"], + "field_suburb": ["Harkness"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21286], + "status": [true], + "title": ["Arnolds Creek Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["15b96f78-ad87-48cc-8c5e-9048374656bf"] + }, + "sort": ["Arnolds Creek Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20663:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/arnolds-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created a sensory garden that offers stimulating experiences for people of all ages and abilities. The initiative was developed after consulting students, families and staff, who collectively named the project the 'Munganin - Gadhaba Garden' which means 'Achieve Together' in the Taunurung language. Its design is influenced by the school's strong ties to Indigenous and Japanese cultures.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2017, the school received $200,000 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Arnolds Creek Primary School" + ], + "field_latitude": ["-37.66693"], + "field_latitude_longitude_value": ["-37.66693,144.54271"], + "field_latitude_value": ["-37.66693"], + "field_longitude": ["144.54271"], + "field_longitude_value": ["144.54271"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["01-5557"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["59 Claret Ash Blvd"], + "field_suburb": ["Melton West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20663], + "status": [true], + "title": ["Arnolds Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["991a0ced-9147-489c-9c37-e28143ca01ac"] + }, + "sort": ["Arnolds Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20482:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ascot-vale-heights-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the main building at the school. The upgrade provides fit-for-purpose, accessible spaces with defined junior and senior learning zones. This school is part of the Flemington Education Plan. It aims to give the local community access to high-quality, seamless education while fostering positive health, wellbeing and the capacity to succeed. The plan connects 4 local schools across primary, secondary and specialist education, supporting them to share their individual expertise and resources. Learn how\u00a0education plans\u00a0offer extra support for students to reach their full potential. About the design There were 3 key factors to the design: activation and connectivity adaptable and flexible learning spaces a connection to nature. We combined new window placements with internal planters to bring nature inside. We modified skylights and wall openings to bring in more sunlight, and we used natural materials such as timber and limewash finishes. We delivered: a new staff hub a refurbished main entry and reception area a new art room a specialist library space dedicated breakout spaces a variety of teaching areas wet areas for junior learning a refurbished senior area with meeting room and kitchen flexible walls that allow space for sensory withdrawal, or areas for individual or group work We also replaced the ceiling, added new windows and a cleaner\u2019s closet. We added open storage and library nooks to the corridors.", + "We installed 2 lifts, several ramps and refurbished stairs and bathrooms. The Planned Maintenance Program funds schools to upgrade buildings and infrastructure in the poorest condition. This school is part of the Flemington Education Plan. Its vision is to give the local community high-quality, seamless education from birth. This will foster positive health and wellbeing and the capacity to succeed. Learn more about how\u00a0the plan\u00a0is transforming local education for Flemington. Learn how\u00a0education plans\u00a0offer extra support for students to reach their full potential." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $430,000 in planning funding. In the 2020\u201321 State Budget, the school received $3.87 million.", + "In the 2018\u201319 Planned Maintenance Funding announcement, the school received $1.025 million" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Planned Maintenance Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ascot Vale Heights School." + ], + "field_latitude": ["-37.776817321777344", "-37.776810"], + "field_latitude_longitude_value": [ + "-37.776817321777344,144.91476440429687" + ], + "field_latitude_value": ["-37.776817321777344"], + "field_longitude": ["144.91476440429687", "144.932617"], + "field_longitude_value": ["144.91476440429687"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3032"], + "field_project_code": ["D1-01-5109", "01-5109"], + "field_project_title": [ + "Upgrade and Modernisation", + "Planned Maintenance Program" + ], + "field_q_complete": ["Q1 2023", "Q2 2020"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1 Tasma St"], + "field_suburb": ["Ascot Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20482], + "status": [true], + "title": ["Ascot Vale Heights School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f69f3c2a-4035-4d3e-9ab3-956e02a61a87"] + }, + "sort": ["Ascot Vale Heights School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20114:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ascot-vale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised Ascot Vale Primary School. This\u00a0involved: repainting classroom blocks internal refurbishment upgrading the\u00a0toilets replacing the school oval and playground equipment providing new fences and landscaping.\u200b", + "The school used the initial funding\u00a0to build a sensory garden. The later grant\u00a0funded\u00a0acoustic improvements in\u00a0two buildings, as well as further work on\u00a0the sensory garden.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.759 million was allocated to the school.", + "The school received $30,000 in Round 1 of the Inclusive Schools Fund, and a further $180,300 was allocated to the school in Round 2." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ascot Vale Primary School" + ], + "field_latitude": ["-37.77417", "-37.774349"], + "field_latitude_longitude_value": ["-37.77417,144.92572"], + "field_latitude_value": ["-37.77417"], + "field_longitude": ["144.92572", "144.926117"], + "field_longitude_value": ["144.92572"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3032"], + "field_project_code": ["01-2608", "D1-01-2608"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2019", "Q4 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Bank St"], + "field_suburb": ["Ascot Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20114], + "status": [true], + "title": ["Ascot Vale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["64327e62-d65c-4413-a8fc-342288af2f9e"] + }, + "sort": ["Ascot Vale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20253:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ascot-vale-west-primary-school"], + "changed": ["2023-10-10T11:15:40+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We modernised and expanded the school. It can now offer places for an extra 200 local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.278 million in planning funding.In the 2020\u201321 State Budget, the school received at least $10.355 million from a pool of more than $85 million to expand 7 schools in high-growth areas." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ascot Vale West Primary School." + ], + "field_latitude": ["-37.776817321777344"], + "field_latitude_longitude_value": [ + "-37.776817321777344,144.91476440429687" + ], + "field_latitude_value": ["-37.776817321777344"], + "field_longitude": ["144.91476440429687"], + "field_longitude_value": ["144.91476440429687"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3032"], + "field_project_code": ["01-4025"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Langs Rd"], + "field_suburb": ["Ascot Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20253], + "status": [true], + "title": ["Ascot Vale West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2792abde-f110-4bd9-b160-8811e743ee01"] + }, + "sort": ["Ascot Vale West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20289:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ashburton-primary-school"], + "changed": ["2023-07-16T19:37:16+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We resurfaced the netball court at Ashburton Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $0.676 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ashburton Primary School" + ], + "field_latitude": ["-37.861666"], + "field_latitude_longitude_value": ["-37.861666,145.082153"], + "field_latitude_value": ["-37.861666"], + "field_longitude": ["145.082153"], + "field_longitude_value": ["145.082153"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3147"], + "field_project_code": ["01-4317"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Fakenham Rd"], + "field_suburb": ["Ashburton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20289], + "status": [true], + "title": ["Ashburton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f4e41d69-8b1f-4ad0-8dd1-5f7f5b63c3cd"] + }, + "sort": ["Ashburton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20003:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ashby-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We repaired the heritage school building. We also refurbished the inside and outside of the building.", + "We modernised\u00a0the main building and consolidated\u00a0all\u00a0learning, amenities and support spaces within this space. The project also incorporated\u00a0a new main entrance, external learning areas, improved landscaping and recreation upgrades.", + "Ashby Primary School used Round 3 of the Inclusive Schools Fund\u200b grant to develop a variety of outdoor spaces specifically designed to offer stimulating sensory experiences for students of all abilities. The school created an outdoor sensory and re-engagement space which includes a playground, kitchen garden, an outdoor classroom and cubby house as well as an artificial turf area. We modernised\u00a0the main building to\u00a0consolidate\u00a0all required learning, amenities and support spaces in one building. We also\u00a0built\u00a0a new main entrance and\u00a0external learning areas and\u00a0upgraded passive recreation spaces\u00a0and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $485,887", + "In the 2017\u20132018 Stage Budget $2.84 million was allocated for upgrades and modernisation. An additional $858,792 was allocated from the Planned Maintenance Fund.", + "An additional $200,000 was allocated as part of the Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ashby Primary School" + ], + "field_latitude": ["-38.138556", "-38.138321", "-38.13832"], + "field_latitude_longitude_value": ["-38.138556,144.347098"], + "field_latitude_value": ["-38.138556"], + "field_longitude": ["144.347098", "144.347244", "144.34725"], + "field_longitude_value": ["144.347098"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3218"], + "field_project_code": ["D2-01-1492", "01-1492", "D1-01-1492"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2019", "Q4 2018"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["1-7 Waratah St"], + "field_suburb": ["Geelong West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20003], + "status": [true], + "title": ["Ashby Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["da7135cd-80dd-48a6-90dd-b1b10a1dc081"] + }, + "sort": ["Ashby Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20675:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ashley-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Ashley Park Primary School (formerly known as Yarrambat Park Primary School \u2013 interim name)\u00a0will accommodate up to 475 students from Prep to Year 6.\u00a0We opened the first stage for Term 1, 2019.\u00a0The school received an additional $5.27 million in the 2018\u201319 State Budget for the second stage\u00a0of the project \u2013\u00a0constructing\u00a0a performing arts and physical education facility that opened in Term 1, 2019.\u00a0 This school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards. Keren Barro was appointed as the foundation principal of Ashley Park Primary School.\u00a0Check out the Ashley Park Primary School website.\u00a0The school also has an\u00a0official Facebook page.\u00a0Follow it for all the latest news. Orchard Road Community and Early Learning Centre\u00a0is located next to Ashley Park Primary School, helping local\u00a0children make\u00a0a smooth transition from pre-school and reducing the number of drop-offs for some parents with kinder and school-aged children.\u00a0", + "We\u00a0upgraded the school's playground to create an inclusive area for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017\u201318 State Budget allocated $13.806 million towards the school. The school received an additional $5.27 million in the 2018\u201319 State Budget.", + "In the 2020 Minor Capital Works Fund the school was allocated $138,390." + ], + "field_funding_type_name": ["New School", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Ashley Park Primary School." + ], + "field_latitude": ["-37.614901", "-37.6154688000168"], + "field_latitude_longitude_value": ["-37.614901,145.127033"], + "field_latitude_value": ["-37.614901"], + "field_longitude": ["145.127033", "145.1261591"], + "field_longitude_value": ["145.127033"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["01-5569", "D1-01-5569"], + "field_project_title": ["New School", "Minor Capital Works Fund"], + "field_q_complete": ["Q1 2019", "Q4 2021"], + "field_start_date": ["Q2 2017", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["105 Orchard Road"], + "field_suburb": ["Doreen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20675], + "status": [true], + "title": ["Ashley Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["257a9f32-36d3-40be-a405-7750fb715b69"] + }, + "sort": ["Ashley Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20898:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ashwood-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school, including building a new school entrance and improving access to the netball car park.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $552,200 in planning funding. In the 2020\u201321 State Budget, the school received $9.742 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ashwood High School" + ], + "field_latitude": ["-37.865000"], + "field_latitude_longitude_value": ["-37.865000,145.105080"], + "field_latitude_value": ["-37.865000"], + "field_longitude": ["145.105080"], + "field_longitude_value": ["145.105080"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3147"], + "field_project_code": ["01-8743"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["50 Vannam Dr"], + "field_suburb": ["Ashwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20898], + "status": [true], + "title": ["Ashwood High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["85dcd089-3894-40e0-b122-630142a69a60"] + }, + "sort": ["Ashwood High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34244:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ashwood-memorial-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are expanding and improving this kindergarten. We are replacing the building with a new larger one which will give children better spaces to learn. It will also nearly double the kindergarten places it can offer for local families. The kindergarten service will move into Scammell Child and Family Services during construction in 2024. The new building will open Term 1, 2025.", + "We helped the Monash City Council plan an expansion of Ashwood Memorial Kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received $1.59 million as part of the Building Blocks Partnership between the Victorian Government and Monash City Council. The Victorian Government has invested up to $14.1 million to support 6 projects that will create up to 363 new kindergarten places in the local government area.", + "In the 2023 Building Blocks Grant - Planning stream, $103,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Planning Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support for Ashwood Memorial Kindergarten" + ], + "field_latitude": ["-37.860058", "-37.860058"], + "field_latitude_longitude_value": ["-37.860058,145.107145"], + "field_latitude_value": ["-37.860058"], + "field_longitude": ["145.107145", "145.107145"], + "field_longitude_value": ["145.107145"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3147"], + "field_project_code": ["D1-15-1322", "15-1322"], + "field_project_title": [ + "Building Blocks Partnership", + "Building Blocks Planning Grant" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Design"], + "field_street_address": ["17A Arthur St"], + "field_suburb": ["Ashwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34244], + "status": [true], + "title": ["Ashwood Memorial Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["20ad3423-7b57-4e88-9723-623d8f9d435a"] + }, + "sort": ["Ashwood Memorial Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20478:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ashwood-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will:build new classrooms and learning spacesupgrade toiletsupgrade the sports facilities.", + "We helped the school upgrade its perimeter fencing and gates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $9.737 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $191,125" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ashwood School" + ], + "field_latitude": ["-37.85901052727397", "-37.85904440993159"], + "field_latitude_longitude_value": [ + "-37.85901052727397,145.10722845767125" + ], + "field_latitude_value": ["-37.85901052727397"], + "field_longitude": ["145.10722845767125", "145.10722845767125"], + "field_longitude_value": ["145.10722845767125"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3147"], + "field_project_code": ["D1-01-5097", "01-5097"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2025", "Q4 2021"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["47-61 Montpellier Rd"], + "field_suburb": ["Ashwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20478], + "status": [true], + "title": ["Ashwood School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["be0f9d8c-a7aa-4179-a61f-6c0764299ec2"] + }, + "sort": ["Ashwood School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20271:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aspendale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to\u00a0extend the\u00a0library and install shade structures." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $371,600 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Aspendale Primary School" + ], + "field_latitude": ["-38.020273"], + "field_latitude_longitude_value": ["-38.020273,145.099756"], + "field_latitude_value": ["-38.020273"], + "field_longitude": ["145.099756"], + "field_longitude_value": ["145.099756"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["01-4193"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["23 Laura St"], + "field_suburb": ["Aspendale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20271], + "status": [true], + "title": ["Aspendale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3e536b69-b0c2-4d7d-8efa-9c328f9e0a52"] + }, + "sort": ["Aspendale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21313:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/assisi-kindergarten-strathfieldsaye"], + "changed": ["2023-10-09T14:58:34+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor area and landscaping. It is more inclusive for children of all abilities. It also better reflects the surrounding natural environment.\u00a0", + "\u200bSt. Therese's Parish used this funding to build a new early learning centre in Strathfieldsaye\u200b. Assisi Kindergarten Strathfieldsaye\u00a0offers\u00a04-year-old and 3-year-old Kindergarten program, and provides playgroup facilities for 0-5 year olds. The space also supports allied health services and\u00a0can be used as\u00a0a meeting room for local community groups. This Kindergarten\u00a0opened at the beginning of\u00a02017.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $170,000 was allocated to this project.", + "Through the 2015\u201316 Children's Facilities Capital Program $650,000 was allocated to the early learning facility." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "New Early Learning Facility" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Assisi Kindergarten Strathfieldsaye" + ], + "field_latitude": ["-36.80486"], + "field_latitude_longitude_value": ["-36.80486,144.35903"], + "field_latitude_value": ["-36.80486"], + "field_longitude": ["144.35903"], + "field_longitude_value": ["144.35903"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["D1-15-5634", "15-5634"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds", + "New Early Learning Facility" + ], + "field_q_complete": ["Q2 2023", "Q1 2017"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["46 Blucher St"], + "field_suburb": ["Strathfieldsaye"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21313], + "status": [true], + "title": ["Assisi Kindergarten Strathfieldsaye"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0fb9a592-c9cb-406c-8f5c-8bc37b95af35"] + }, + "sort": ["Assisi Kindergarten Strathfieldsaye"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26217:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/atherton-gardens-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:29:59+10:00"], + "field_about_project_processed": [ + "We are refurbishing this kindergarten. This will allow the centre to offer 44 extra places as part of the roll-out of funded kindergarten for 3-year-olds. This will give more local children 2 years of high-quality kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grants, $1,589,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "\u200b\u200bLearn more about our support of the facilities at Atherton Gardens Kindergarten" + ], + "field_latitude": ["-37.80406572"], + "field_latitude_longitude_value": ["-37.80406572,144.979276"], + "field_latitude_value": ["-37.80406572"], + "field_longitude": ["144.979276"], + "field_longitude_value": ["144.979276"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3065"], + "field_project_code": ["15-AGK"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Facility" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["125 Napier St"], + "field_suburb": ["Fitzroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26217], + "status": [true], + "title": ["Atherton Gardens Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["b301fa34-9691-42fe-9c62-2ee02dfc82d7"] + }, + "sort": ["Atherton Gardens Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20651:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/athol-road-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space, including paving, seats and a water feature." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $85,444." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Athol Road Primary School." + ], + "field_latitude": ["-37.971114"], + "field_latitude_longitude_value": ["-37.971114,145.150404"], + "field_latitude_value": ["-37.971114"], + "field_longitude": ["145.150404"], + "field_longitude_value": ["145.150404"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3172"], + "field_project_code": ["01-5536"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["159-167 Athol Rd"], + "field_suburb": ["Springvale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20651], + "status": [true], + "title": ["Athol Road Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a8564e65-f64b-4daa-b797-49aa8ff5dd71"] + }, + "sort": ["Athol Road Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20757:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/auburn-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are constructing a new senior building. This will include: a VCE centre 9 general purpose classrooms a science classroom. spaces for students and staff.", + "We are refurbishing the school's toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We upgraded the main block at Auburn High School. These works will target facilities that need it most, ensuring that students learn in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.13 million.", + "In the 2022\u201323 State Budget the project received $495,178 from the Minor Capital Works Fund.", + "In the 2019\u201320 State Budget, the school received $5.5 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Auburn High School." + ], + "field_latitude": ["-37.831977844238281", "-37.83988", "-37.84039"], + "field_latitude_longitude_value": [ + "-37.831977844238281,145.04981994628906" + ], + "field_latitude_value": ["-37.831977844238281"], + "field_longitude": ["145.04981994628906", "145.045067", "145.04496"], + "field_longitude_value": ["145.04981994628906"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3123"], + "field_project_code": ["D1-01-7526", "D2-01-7526", "01-7526"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Minor Capital Works Fund", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": ["Q2 2024", "Q1 2024", "Q3 2022"], + "field_start_date": ["Q4 2020", "Q2 2022", "Q2 2019"], + "field_status_name": ["Construction", "Construction", "Complete"], + "field_street_address": ["26 Burgess St"], + "field_suburb": ["Hawthorn East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20757], + "status": [true], + "title": ["Auburn High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a804881e-ed67-43c6-98ff-2ee1421f5d6d"] + }, + "sort": ["Auburn High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28680:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/auburn-kindergarten-and-child-care-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded the kindergarten\u2019s play area. We used natural materials to create fun spaces for physical and imaginative play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $117,854.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Auburn Kindergarten and Child Care Centre." + ], + "field_latitude": ["-37.82141271"], + "field_latitude_longitude_value": ["-37.82141271,145.046413"], + "field_latitude_value": ["-37.82141271"], + "field_longitude": ["145.046413"], + "field_longitude_value": ["145.046413"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3123"], + "field_project_code": ["elc-akccc"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Station St"], + "field_suburb": ["Hawthorn East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28680], + "status": [true], + "title": ["Auburn Kindergarten and Child Care Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["7a1a6908-25b7-4696-973b-5610801fd350"] + }, + "sort": ["Auburn Kindergarten and Child Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28768:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/auburn-south-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T14:11:14+11:00"], + "field_about_project_processed": [ + "We renovated the preschool to create extra kindergarten places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream, $300,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Auburn South Preschool." + ], + "field_latitude": ["-37.84043271"], + "field_latitude_longitude_value": ["-37.84043271,145.0485878"], + "field_latitude_value": ["-37.84043271"], + "field_longitude": ["145.0485878"], + "field_longitude_value": ["145.0485878"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3123"], + "field_project_code": ["15-5680"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["5 Anderson Rd"], + "field_suburb": ["Hawthorn East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28768], + "status": [true], + "title": ["Auburn South Preschool"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["e3a7ab52-0186-4e38-a108-250e1c4919c6"] + }, + "sort": ["Auburn South Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20270:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/auburn-south-primary-school"], + "changed": ["2023-08-31T14:06:30+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the main wing at Auburn South Primary School. Works included: refurbishment of the ground and first floor levels a new covered outdoor learning area (COLA) minor refurbishment to the loft and mezzanine a new lift that\u00a0provides access to all levels redesigning the visitor entrance to be more accessible." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $336,400 in planning funding.In the 2020\u201321 State Budget, the school received $3.328 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Auburn South Primary School." + ], + "field_latitude": ["-37.839100"], + "field_latitude_longitude_value": ["-37.839100,145.044632"], + "field_latitude_value": ["-37.839100"], + "field_longitude": ["145.044632"], + "field_longitude_value": ["145.044632"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3123"], + "field_project_code": ["01-4183"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["419 Tooronga Road"], + "field_suburb": ["Hawthorn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20270], + "status": [true], + "title": ["Auburn South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["24e77830-9a4f-40e7-9ba0-268792c21811"] + }, + "sort": ["Auburn South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20641:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/aurora-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities.", + "We built\u00a0an outdoor inclusive play area with stimulating and accessible multi-play equipment, outdoor sensory panels and sensory gardens." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $1.8 million.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Aurora School" + ], + "field_latitude": ["-37.84017872", "-37.840284132138855"], + "field_latitude_longitude_value": ["-37.84017872,145.1507912"], + "field_latitude_value": ["-37.84017872"], + "field_longitude": ["145.1507912", "145.1509085479789"], + "field_longitude_value": ["145.1507912"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["D1-01-5511", "01-5511"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q4 2019"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["96 Holland Rd"], + "field_suburb": ["Blackburn South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20641], + "status": [true], + "title": ["Aurora School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a740d03f-0713-4e2e-8a6d-9c3c4e1d5038"] + }, + "sort": ["Aurora School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21291:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/australian-christian-college-early-learners"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This grant enables Australian Christian College Early Learners to: double current capacity for three and four-year-old kindergarten provide long day care, before and after school care as well as holiday school care renovate the existing teaching space extend toilet facilities redevelop the existing kitchen facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $149,103 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Australian Christian College Early Learners" + ], + "field_latitude": ["-36.54736"], + "field_latitude_longitude_value": ["-36.54736,145.99901"], + "field_latitude_value": ["-36.54736"], + "field_longitude": ["145.99901"], + "field_longitude_value": ["145.99901"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3672"], + "field_project_code": ["15-5187"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["21 Sydney Rd"], + "field_suburb": ["Benalla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21291], + "status": [true], + "title": ["Australian Christian College Early Learners"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["11154766-1b56-4d83-a97d-b91fe7fdbc61"] + }, + "sort": ["Australian Christian College Early Learners"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21180:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/australian-christian-college-hume"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to construct three modular classrooms, allowing it to enrol more students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $427,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Australian Christian College Hume." + ], + "field_latitude": ["-36.547361"], + "field_latitude_longitude_value": ["-36.547361,145.9990132"], + "field_latitude_value": ["-36.547361"], + "field_longitude": ["145.9990132"], + "field_longitude_value": ["145.9990132"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3672"], + "field_project_code": ["03-2086"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["21 Sydney Rd"], + "field_suburb": ["Benella"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21180], + "status": [true], + "title": ["Australian Christian College Hume"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e0ae5d71-4777-4720-a121-df5475d0884d"] + }, + "sort": ["Australian Christian College Hume"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21354:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/australian-light-foundation-early-learning-centre" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are partnering with the Australia Light Foundation to build an early learning centre next to the Australian Light Foundation Community Hub. The new centre will offer 3 kindergarten rooms, maternal child health services and additional community spaces. The kindergarten will provide an additional 118 kindergarten places to the community and help local children access 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream, the children's centre received $1,500,000." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Australian Light Foundation Early Learning Centre." + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3032"], + "field_project_code": ["15-ALFELC"], + "field_project_title": ["New Early Learning Centre"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Planning"], + "field_suburb": ["Maribyrnong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21354], + "status": [true], + "title": ["Australian Light Foundation Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e6ba848a-5c7c-4432-9343-4fdc151afe11"] + }, + "sort": ["Australian Light Foundation Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21028:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ave-maria-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Ave Maria College to\u00a0build\u00a0a new library entrance to improve accessibility. As part of the project, 13 general learning and associated areas were refurbished to\u00a0provide contemporary and flexible facilities. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools $500,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ave Maria College" + ], + "field_latitude": ["-37.75618"], + "field_latitude_longitude_value": ["-37.75618,144.899"], + "field_latitude_value": ["-37.75618"], + "field_longitude": ["144.899"], + "field_longitude_value": ["144.899"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3040"], + "field_project_code": ["02-1625"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["14-22 Vida St"], + "field_suburb": ["Aberfedie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21028], + "status": [true], + "title": ["Ave Maria College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["54c59076-9e80-4b3f-9335-563e92e5dc0d"] + }, + "sort": ["Ave Maria College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25400:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ave-maria-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We are adding another kindergarten room to the centre. This will allow the centre to offer more places as part of the roll-out of funded kindergarten for 3-year-olds, giving more local children 2 years of high-quality education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Building Blocks Capacity Grant, $880,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ave Maria Kindergarten" + ], + "field_latitude": ["-37.7567600317854"], + "field_latitude_longitude_value": [ + "-37.7567600317854,144.896526897942" + ], + "field_latitude_value": ["-37.7567600317854"], + "field_longitude": ["144.896526897942"], + "field_longitude_value": ["144.896526897942"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3040"], + "field_project_code": ["15- 509"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["35 Fawkner St"], + "field_suburb": ["Aberfeldie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25400], + "status": [true], + "title": ["Ave Maria Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["54cf79bf-e268-469a-8461-63993d43b74a"] + }, + "sort": ["Ave Maria Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21192:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/avenel-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Shire of Strathbogie upgraded\u00a0Avenel Preschool to accommodate increasing enrolments and a range of early years services, including maternal and child\u00a0health and wellbeing outreach programs. The works have provided\u00a0a dedicated planning and administration space, and multipurpose meeting room. The upgraded facility is\u00a0part of a precinct for the small rural community of Avenel, further strengthening the community and providing increased support to vulnerable families in the area.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Avenel Preschool" + ], + "field_latitude": ["-36.901539"], + "field_latitude_longitude_value": ["-36.901539,145.237946"], + "field_latitude_value": ["-36.901539"], + "field_longitude": ["145.237946"], + "field_longitude_value": ["145.237946"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3664"], + "field_project_code": ["15-1139"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["31 Watson St"], + "field_suburb": ["Avenel"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21192], + "status": [true], + "title": ["Avenel Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["33a0f8cf-31b4-4eef-8757-2477f0b96109"] + }, + "sort": ["Avenel Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21035:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/avila-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to construct the Ballygriffin Senior Learning Centre, which includes learning areas and collaboration spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Avila College" + ], + "field_latitude": ["-37.8747486"], + "field_latitude_longitude_value": ["-37.8747486,145.1336688"], + "field_latitude_value": ["-37.8747486"], + "field_longitude": ["145.1336688"], + "field_longitude_value": ["145.1336688"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["02-1651"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["35 Charles St"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21035], + "status": [true], + "title": ["Avila College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7717be5a-c638-494a-821c-3324aace28c0"] + }, + "sort": ["Avila College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20250:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/avoca-primary-school"], + "changed": ["2023-08-23T13:59:09+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's basketball court and refurbished the floorboards in 2 classrooms.", + "We repaired the roof, replaced windows, and repainted the heritage building's facade." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $300,000.", + "In Round 2 of the Minor Capital Works Fund, the project received $229,298." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Avoca Primary School." + ], + "field_latitude": ["-37.0842", "-37.084502"], + "field_latitude_longitude_value": ["-37.0842,143.47551"], + "field_latitude_value": ["-37.0842"], + "field_longitude": ["143.47551", "143.475649"], + "field_longitude_value": ["143.47551"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3467"], + "field_project_code": ["01-4", "D1-01-4"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q3 2020", "Q3 2023"], + "field_start_date": ["Q2 2019", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["118 Barnett St"], + "field_suburb": ["Avoca"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20250], + "status": [true], + "title": ["Avoca Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0a5d0a77-0b25-426e-bc71-586d7d873b7e"] + }, + "sort": ["Avoca Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20363:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/avondale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the administration building with a new single-storey building.\u00a0It has an administration area, staff work spaces and a library for students. We built two\u00a0flexible learning centres with student amenities, staff work spaces and a total of 12 collaborative learning spaces. The project also included outdoor learning areas and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $9.02 million, which is a share in $130.1 million from the Established Areas Program." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Avondale Primary School" + ], + "field_latitude": ["-37.766956"], + "field_latitude_longitude_value": ["-37.766956,144.861008"], + "field_latitude_value": ["-37.766956"], + "field_longitude": ["144.861008"], + "field_longitude_value": ["144.861008"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3034"], + "field_project_code": ["01-4812"], + "field_project_title": ["Upgrade and modernisation"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["Clarendon St"], + "field_suburb": ["Avondale Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20363], + "status": [true], + "title": ["Avondale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["20614db2-97cf-4b7e-9032-10247b7a1175"] + }, + "sort": ["Avondale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21202:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/axedale-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Greater City of Bendigo upgraded Axedale Preschool's outdoor play space to create a natural, sustainable and interesting space for families, children and the community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316 $60,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Axedale Preschool" + ], + "field_latitude": ["-36.7866592407227"], + "field_latitude_longitude_value": [ + "-36.7866592407227,144.501403808594" + ], + "field_latitude_value": ["-36.7866592407227"], + "field_longitude": ["144.501403808594"], + "field_longitude_value": ["144.501403808594"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["15-1228"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["25 High St"], + "field_suburb": ["Axedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21202], + "status": [true], + "title": ["Axedale Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9e772409-9a99-49f0-9f9c-6df308ebf6bf"] + }, + "sort": ["Axedale Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19934:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/axedale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an all-weather learning space with resources to allow for self-directed play. We installed an artificial turf zone as well as a shipping crate equipped with sensory, construction and loose play-based items. A shade sail now provides shelter for a 'buddy bench' and other outdoor furniture." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $120,200 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Axedale Primary School" + ], + "field_latitude": ["-36.786228"], + "field_latitude_longitude_value": ["-36.786228,144.50146"], + "field_latitude_value": ["-36.786228"], + "field_longitude": ["144.50146"], + "field_longitude_value": ["144.50146"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["01-1008"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["81 High St"], + "field_suburb": ["Axedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19934], + "status": [true], + "title": ["Axedale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b6dfc859-01fa-4a37-a3ea-5486dc140c83"] + }, + "sort": ["Axedale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/37144:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/b1-school"], + "changed": ["2023-12-22T14:38:52+11:00"], + "created": ["2023-12-22T14:38:48+11:00"], + "field_about_project_processed": ["a new project"], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["Lav3-1"], + "field_project_title": ["Play School"], + "field_q_complete": ["Q4, 2025"], + "field_start_date": ["Q2, 2024"], + "field_status_name": ["Design"], + "field_street_address": ["800 Springvale Road"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [37144], + "status": [true], + "title": ["B1 school"], + "type": ["project_infrastructure"], + "uid": [11547], + "uuid": ["7d6ed8b9-f736-42e3-a3b6-e27043790839"] + }, + "sort": ["B1 school"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20905:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bacchus-marsh-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at Bacchus Marsh College.\u00a0 This entailed building a new science, technology, engineering and mathematics (STEM) centre and Material Technology buildings. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $3 million has been allocated to the school.\u00a0 In the 2015\u201316 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bacchus Marsh College" + ], + "field_latitude": ["-37.681850"], + "field_latitude_longitude_value": ["-37.681850,144.434616"], + "field_latitude_value": ["-37.681850"], + "field_longitude": ["144.434616"], + "field_longitude_value": ["144.434616"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["01-8777"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["73 Grant St"], + "field_suburb": ["Bacchus Marsh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20905], + "status": [true], + "title": ["Bacchus Marsh College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3c405d9f-9992-4338-b712-1c5ad8bf81da"] + }, + "sort": ["Bacchus Marsh College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21162:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bacchus-marsh-grammar"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Bacchus Marsh Grammar to build a new classroom block for Years 7 and 8." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $4,824,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bacchus Marsh Grammar" + ], + "field_latitude": ["-37.68781"], + "field_latitude_longitude_value": ["-37.68781,144.43276"], + "field_latitude_value": ["-37.68781"], + "field_longitude": ["144.43276"], + "field_longitude_value": ["144.43276"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["03-1919"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["South Maddingley Rd"], + "field_suburb": ["Bacchus Marsh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21162], + "status": [true], + "title": ["Bacchus Marsh Grammar"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e90cf317-8464-45b6-858c-35cc7b97a034"] + }, + "sort": ["Bacchus Marsh Grammar"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33253:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bacchus-marsh-montessori-uniting-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-06-07T16:07:09+10:00"], + "field_about_project_processed": [ + "We expanded and improved this kindergarten with a carpark, landscaping and new modular kindergarten building. The improvements will give children better spaces to learn and play. It has also created an extra 41 approved kindergarten places." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received funding from the $1.68 billion committed to Three Year Old Kindergarten in the 2018-19 budget. Funding was allocated in Round 2B of the 2021-22 Building Blocks Grants Capacity Building stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bacchus Marsh Montessori Uniting Kindergarten" + ], + "field_latitude": ["-37.65979"], + "field_latitude_longitude_value": ["-37.65979,144.44183"], + "field_latitude_value": ["-37.65979"], + "field_longitude": ["144.44183"], + "field_longitude_value": ["144.44183"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["15-BMMUK"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["176 Gisborne Road"], + "field_suburb": ["Darley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33253], + "status": [true], + "title": ["Bacchus Marsh Montessori Uniting Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["f56d482d-4569-4ce3-93d6-eb8a7454d3be"] + }, + "sort": ["Bacchus Marsh Montessori Uniting Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20133:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bacchus-marsh-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the science building.", + "We built an inclusive playground, including new play equipment and rubber soft fall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $491,401", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bacchus Marsh Primary School" + ], + "field_latitude": ["-37.67302961", "-37.673022"], + "field_latitude_longitude_value": ["-37.67302961,144.4431207"], + "field_latitude_value": ["-37.67302961"], + "field_longitude": ["144.4431207", "144.442423"], + "field_longitude_value": ["144.4431207"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["D1-01-28", "01-28"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q4 2023", "Q4 2022"], + "field_start_date": ["Q4 2021", "Q2 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["56-62 Lerderderg St"], + "field_suburb": ["Bacchus Marsh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20133], + "status": [true], + "title": ["Bacchus Marsh Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aba27f96-b465-48f4-afe9-507d013f8cdf"] + }, + "sort": ["Bacchus Marsh Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20577:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/baden-powell-p-9-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive outdoor learning space. This area now has play equipment and synthetic turf.", + "We built an inclusive outdoor learning space. This area now has play equipment and synthetic turf.", + "We helped to resurface the college's oval at the Tarneit Campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "The school received $161,200 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Baden Powell P-9 College." + ], + "field_latitude": ["-37.8591634", "-37.8425448", "-37.859838"], + "field_latitude_longitude_value": ["-37.8591634,144.6869609"], + "field_latitude_value": ["-37.8591634"], + "field_longitude": ["144.6869609", "144.6951506", "144.691019"], + "field_longitude_value": ["144.6869609"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["D1-01-5315", "D2-01-5315", "01-5315"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6 - Derrimut Heath Campus", + "Inclusive Schools Fund - Round 6 - Tarneit Campus", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q3 2023", "Q3 2023", "Q3 2019"], + "field_start_date": ["Q2 2021", "Q2 2021", "Q3 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Sycamore St"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20577], + "status": [true], + "title": ["Baden Powell P-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ef418d23-afd1-42dd-bd06-58d3de8b3887"] + }, + "sort": ["Baden Powell P-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20183:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/badger-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most.", + "We built a fitness track and outdoor 'action classroom' for the health, wellbeing and re-engagement of all students, particularly those with disabilities.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $9.011 million.", + "In 2017, the school received $198,100 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Badger Creek Primary School" + ], + "field_latitude": ["-37.653949737548828", "-37.65545"], + "field_latitude_longitude_value": [ + "-37.653949737548828,145.51718139648437" + ], + "field_latitude_value": ["-37.653949737548828"], + "field_longitude": ["145.51718139648437", "145.52423"], + "field_longitude_value": ["145.51718139648437"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3777"], + "field_project_code": ["D1-01-3309", "01-3309"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Badger Creek Rd"], + "field_suburb": ["Healesville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20183], + "status": [true], + "title": ["Badger Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["597cfa4e-e165-4308-a8eb-7ecdfe6ef323"] + }, + "sort": ["Badger Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20926:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/baimbridge-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed the first stage of the school\u2019s redevelopment, which included constructing a new building with science, technology and food technology facilities, as well as administration spaces.", + "We replaced the heating system, repaired the roof, added internal joinery to the home economics space, and painted sections." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This included funding for Baimbridge College. In the 2019\u201320 State Budget, the school received $840,000. In 2020, the school received $8.32 million.", + "In the 2015\u201316 State Budget, $368,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Planned Maintenance Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Baimbridge College" + ], + "field_latitude": ["-37.73643", "-37.73643"], + "field_latitude_longitude_value": ["-37.73643,142.0172399"], + "field_latitude_value": ["-37.73643"], + "field_longitude": ["142.0172399", "142.0172399"], + "field_longitude_value": ["142.0172399"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3300"], + "field_project_code": ["01-8814", "D1-01-8814"], + "field_project_title": [ + "Upgrade and Modernisation", + "Planned Maintenance Program" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2016"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["85 Stephen St"], + "field_suburb": ["Hamilton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20926], + "status": [true], + "title": ["Baimbridge College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a8bd1ff7-e31c-4462-96ac-a08092114de2"] + }, + "sort": ["Baimbridge College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21239:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bairnsdale-kindergarten-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created an inclusive, safe and accessible outdoor learning environment for three and four-year-old kindergarten students. Our environmentally sustainable design and construction will minimise ongoing maintenance.", + "The kindergarten upgraded their bathroom, laundry and change area to: remove asbestos improve the building's accessibility redevelop bathroom facilities increase classroom floor space and accessibility by moving forward the front classroom wall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Improvement Grant, $159,142 was allocated to this project.", + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $180,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Learning Facilities Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bairnsdale Kindergarten Inc." + ], + "field_latitude": ["-37.82258709", "-37.82253"], + "field_latitude_longitude_value": ["-37.82258709,147.6193291"], + "field_latitude_value": ["-37.82258709"], + "field_longitude": ["147.6193291", "147.61934"], + "field_longitude_value": ["147.6193291"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["D1-15-30", "15-30"], + "field_project_title": [ + "Building Blocks Improvement Grant \u2013 Outdoor Learning Environment", + "Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q3 2022", "Q3 2019"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["37 Turnbull St"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21239], + "status": [true], + "title": ["Bairnsdale Kindergarten Inc"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c83f1ace-4608-41b8-bda8-25bbb535d591"] + }, + "sort": ["Bairnsdale Kindergarten Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20876:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bairnsdale-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered Stage 2 of the school's master plan. We refurbished and extended the science building and built a Year 7 hub.\u00a0", + "We developed a masterplan for Bairnsdale Secondary College. We delivered two relocatable buildings, one as a 'general classroom' and one for science. These works included the partial demolition of an existing older building and associated asbestos removal." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $804,000 in planning funding. In the 2020\u201321 State Budget, the school received $7.232 million.", + "In the 2019\u201320 State Budget, the school received $140,000. In 2020, the school received $1.26 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bairnsdale Secondary College" + ], + "field_latitude": ["-37.856174468994141", "-37.82793"], + "field_latitude_longitude_value": [ + "-37.856174468994141,147.58685302734375" + ], + "field_latitude_value": ["-37.856174468994141"], + "field_longitude": ["147.58685302734375", "147.60374"], + "field_longitude_value": ["147.58685302734375"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["D1-01-8466", "01-8466"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q2 2021"], + "field_start_date": ["Q4 2020", "Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["90 Mckean St"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20876], + "status": [true], + "title": ["Bairnsdale Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9412c9ab-1c88-42b8-84cd-c56bfbabcc20"] + }, + "sort": ["Bairnsdale Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36658:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bairnsdale-west-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $498,437 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bairnsdale West Primary School" + ], + "field_latitude": ["-37.824541"], + "field_latitude_longitude_value": ["-37.824541,147.608096"], + "field_latitude_value": ["-37.824541"], + "field_longitude": ["147.608096"], + "field_longitude_value": ["147.608096"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["01-4725"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Cnr Wallace & Mckean Streets"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36658], + "status": [true], + "title": ["Bairnsdale West Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["7569a2fe-d12e-401a-9ca5-ec5f051d1ce1"] + }, + "sort": ["Bairnsdale West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20438:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballam-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We upgraded facilities at Ballam Park Primary School, including constructing a new administration building and external playground, and completing landscaping. Our work targeted facilities that needed it the most, ensuring that students learn in facilities that are designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $499,127 from the Minor Capital Works Fund.", + "In the 2018\u201319 State Budget $800,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ballam Park Primary School" + ], + "field_latitude": ["-38.147457", "-38.146839"], + "field_latitude_longitude_value": ["-38.147457,145.158282"], + "field_latitude_value": ["-38.147457"], + "field_longitude": ["145.158282", "145.158203"], + "field_longitude_value": ["145.158282"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building next to Ballam Park Primary School." + ], + "field_postcode": ["3199"], + "field_project_code": ["D1-01-5005", "01-5005"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2025", "Q3 2020"], + "field_start_date": ["Q4 2023", "Q2 2018"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Belar Av"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20438], + "status": [true], + "title": ["Ballam Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a18ef68c-79d3-413b-b737-74c23cbe6507"] + }, + "sort": ["Ballam Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35010:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballan-primary-school-kindergarten-interim-name"], + "changed": ["2023-11-14T16:28:17+11:00"], + "created": ["2023-09-18T12:15:22+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Ballan Primary School. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2025.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Ballan Primary School Kindergarten (interim name)" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3342"], + "field_project_code": ["15-BPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_suburb": ["Ballan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35010], + "status": [true], + "title": ["Ballan Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["47d17101-ead4-4fd4-96d3-7195b34dc2f8"] + }, + "sort": ["Ballan Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24599:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/ballarat-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Ballarat City Council employ someone to support the Alfredton Community and Early Years Hub Project - a new centre with 3 kindergarten rooms, community meeting spaces, outdoor areas, and parking. They will also support building works at 5 existing kindergartens to help local families continue to access 2 years of quality early childhood education. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Ballarat City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-BIP"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24599], + "status": [true], + "title": [ + "Ballarat City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3fcad84f-92a3-4444-b982-8b16437141de"] + }, + "sort": [ + "Ballarat City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20758:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballarat-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed a major upgrade of the ground floor of the J. J. Sheehan Wing and the administration building. It included modernising classrooms and other facilities.", + "We upgraded\u00a0Ballarat High School, including refurbishing and modernising\u00a0classrooms and facilities\u00a0in\u00a0the arts and technology building.\u00a0", + "We\u00a0delivered a new architect-designed modular building to Ballarat High School to replace the Year 9 TLC building with new classrooms.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $800,000. In 2020, the school received $7.20 million.", + "In the 2018\u201319 State Budget $4 million was allocated to the school. In 2019\u201320, the school received $220,000 through the Essential Maintenance and Compliance Initiative.", + "In the 2017\u201318 State Budget, $2,486,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ballarat High School" + ], + "field_latitude": ["-37.56269"], + "field_latitude_longitude_value": ["-37.56269,143.8603599"], + "field_latitude_value": ["-37.56269"], + "field_longitude": ["143.8603599"], + "field_longitude_value": ["143.8603599"], + "field_mappintype_name": ["Planning", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["D2-01-7540", "D1-01-7540", "01-7540"], + "field_project_title": [ + "Upgrade and Modernisation - J. J. Sheehan Wing and Administration Building", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2022", "Q3 2020", "Q4 2018"], + "field_start_date": ["Q2 2019", "Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Sturt St West"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20758], + "status": [true], + "title": ["Ballarat High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a640204a-b3b4-4d06-9f43-e38ee62baef2"] + }, + "sort": ["Ballarat High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20320:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballarat-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to replace the carpet in multiple relocatable classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $91,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ballarat North Primary School" + ], + "field_latitude": ["-37.5400078"], + "field_latitude_longitude_value": ["-37.5400078,143.8627967"], + "field_latitude_value": ["-37.5400078"], + "field_longitude": ["143.8627967"], + "field_longitude_value": ["143.8627967"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-4690"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["513 Landsborough St"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20320], + "status": [true], + "title": ["Ballarat North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68f1f74a-7a31-4493-86f2-1d7cf95983e9"] + }, + "sort": ["Ballarat North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20181:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballarat-primary-school-dana-street"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded outdoor play and sport spaces to optimise the outdoor space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ballarat Primary School (Dana Street)." + ], + "field_latitude": ["-37.5639485"], + "field_latitude_longitude_value": ["-37.5639485,143.8536271"], + "field_latitude_value": ["-37.5639485"], + "field_longitude": ["143.8536271"], + "field_longitude_value": ["143.8536271"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-33"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["401 Dana St"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20181], + "status": [true], + "title": ["Ballarat Primary School (Dana Street)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7c9880be-c567-4761-a388-84e6f93026bf"] + }, + "sort": ["Ballarat Primary School (Dana Street)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21293:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballarat-specialist-kindergarten"], + "changed": ["2023-09-08T15:38:15+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are expanding the centre in preparation for the roll-out of subsidised kindergarten for 3-year-olds. This will allow the kindergarten to offer 20 additional places to local families, improve the overall quality of the learning environment and help local children access 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream, the children's centre received $1,824,170" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ballarat Specialist Kindergarten" + ], + "field_latitude": ["-37.547531127929688"], + "field_latitude_longitude_value": [ + "-37.547531127929688,143.81538391113281" + ], + "field_latitude_value": ["-37.547531127929688"], + "field_longitude": ["143.81538391113281"], + "field_longitude_value": ["143.81538391113281"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3355"], + "field_project_code": ["15-5216"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Expansion" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Design"], + "field_street_address": ["25 Gillies St N"], + "field_suburb": ["Lake Gardens"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21293], + "status": [true], + "title": ["Ballarat Specialist Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4847b83a-3e08-4489-aa19-d44464118e39"] + }, + "sort": ["Ballarat Specialist Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20345:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballarat-specialist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are upgrading and modernising this school, including constructing additional permanent buildings.", + "We converted a courtyard into an accessible and inclusive sensory play space. This included rainbow chimes, musical flowers and an inclusive swing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ballarat Specialist School" + ], + "field_latitude": ["-37.547531127929688", "-37.55244058"], + "field_latitude_longitude_value": [ + "-37.547531127929688,143.81538391113281" + ], + "field_latitude_value": ["-37.547531127929688"], + "field_longitude": ["143.81538391113281", "143.8186955"], + "field_longitude_value": ["143.81538391113281"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3355"], + "field_project_code": ["D1-01-4762", "01-4762"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["25 Gillies St North"], + "field_suburb": ["Lake Gardens"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20345], + "status": [true], + "title": ["Ballarat Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9ce42c5d-67dd-4d64-9900-e041665f819c"] + }, + "sort": ["Ballarat Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21173:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballarat-steiner-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build a multi-purpose hall and refurbish a building to create an administration/reception area and classroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Capital Funding Program for Non-Government Schools, $643,163 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ballarat Steiner School" + ], + "field_latitude": ["-37.640747"], + "field_latitude_longitude_value": ["-37.640747,143.862183"], + "field_latitude_value": ["-37.640747"], + "field_longitude": ["143.862183"], + "field_longitude_value": ["143.862183"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["03-1984"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["244 Moss Av"], + "field_suburb": ["Mt Helen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21173], + "status": [true], + "title": ["Ballarat Steiner School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["64d8387b-585b-4bda-8e0c-94c00f4cb6e7"] + }, + "sort": ["Ballarat Steiner School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21486:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ballarat-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Ballarat Tech School officially opened in Term 1, 2018 and provides secondary school students access to programs using the latest technology to solve real-world problems faced by industry. Visit Ballarat Tech School for more information. Secondary school students from the Ballarat area have access to cutting-edge learning at the Ballarat Tech School, hosted by Federation University Australia. The Tech School is a high-tech learning environment. Its innovative education programs link with local industry to deliver real world learning. Students from 15 partner schools in Ballarat will access the Tech School throughout the year for specialised programs. Ballarat Tech School emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Ballarat Tech School" + ], + "field_latitude": ["-37.593538"], + "field_latitude_longitude_value": ["-37.593538,143.840802"], + "field_latitude_value": ["-37.593538"], + "field_longitude": ["143.840802"], + "field_longitude_value": ["143.840802"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["New Ballarat Tech School now open"], + "field_postcode": ["3550"], + "field_project_code": ["TS-Ba"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Federation University Australia, SMB Campus, 136 Albert St" + ], + "field_suburb": ["Ballarat Central"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21486], + "status": [true], + "title": ["Ballarat Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b3799df4-70bb-4109-815e-dd2bdf41ce8e"] + }, + "sort": ["Ballarat Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25363:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/balnarring-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are replacing roof sheeting and installing new ceilings in the school's main building. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $499,269 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Balnarring Primary School" + ], + "field_latitude": ["-38.376723"], + "field_latitude_longitude_value": ["-38.376723,145.122824"], + "field_latitude_value": ["-38.376723"], + "field_longitude": ["145.122824"], + "field_longitude_value": ["145.122824"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3926"], + "field_project_code": ["01-1698"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["1 Civic Court"], + "field_suburb": ["Balnarring"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25363], + "status": [true], + "title": ["Balnarring Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9746d07d-f169-42d9-b650-384ffa50a2e3"] + }, + "sort": ["Balnarring Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22296:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/balwyn-north-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:12+11:00"], + "field_about_project_processed": [ + "We are building an inclusive outdoor learning space, including a shade structure and timber decking." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Balwyn North Primary School" + ], + "field_latitude": ["-37.796699"], + "field_latitude_longitude_value": ["-37.796699,145.077044"], + "field_latitude_value": ["-37.796699"], + "field_longitude": ["145.077044"], + "field_longitude_value": ["145.077044"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3104"], + "field_project_code": ["01-4638"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Buchanan Av"], + "field_suburb": ["Balwyn North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22296], + "status": [true], + "title": ["Balwyn North Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["6f3828b4-23ba-4919-8d3b-35a545e02dd7"] + }, + "sort": ["Balwyn North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34954:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bannockburn-family-services-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-13T17:17:51+10:00"], + "field_about_project_processed": [ + "We are partnering with Golden Plains Shire Council to expand Bannockburn Family Services Centre. We will build a new modular kindergarten building with 2 new rooms and an outdoor play area. The new building will create up to 90 new kindergarten places for local families in Bannockburn." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received funding as part of thee Building Blocks Partnership between the State Government and Golden Plains Shire Council. The Victorian Government has provided $5 million to support 2 projects that will create up to 140 kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bannockburn Family Services Centre." + ], + "field_latitude": ["-38.05066901"], + "field_latitude_longitude_value": ["-38.05066901,144.1732396"], + "field_latitude_value": ["-38.05066901"], + "field_longitude": ["144.1732396"], + "field_longitude_value": ["144.1732396"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3331"], + "field_project_code": ["15-4570"], + "field_project_title": ["Building Blocks Partnership"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["2A Pope Street"], + "field_suburb": ["Bannockburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34954], + "status": [true], + "title": ["Bannockburn Family Services Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2db9a31d-b484-4503-99cb-e0f4717237a5"] + }, + "sort": ["Bannockburn Family Services Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20979:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bannockburn-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bBannockburn P-12 College is a new school, which includes the relocated Bannockburn Primary School. As the first secondary school in the Golden Plains Shire, Bannockburn P-12 College has been built to accommodate the enrolment demand for secondary education in the area. The prep to Year 6 component will accommodate 475 students and the Year 7 to 12 component will accommodate 720 students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million Public Private Partnership (PPP) Project across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Bannockburn P-12 College" + ], + "field_latitude": ["-38.04208"], + "field_latitude_longitude_value": ["-38.04208,144.16026"], + "field_latitude_value": ["-38.04208"], + "field_longitude": ["144.16026"], + "field_longitude_value": ["144.16026"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3331"], + "field_project_code": ["01-932"], + "field_project_title": ["New school"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["139 Milton St"], + "field_suburb": ["Bannockburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20979], + "status": [true], + "title": ["Bannockburn P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7ebc6cce-a649-4d34-bb1f-9aa440b839ed"] + }, + "sort": ["Bannockburn P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24956:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Banum-Warrik-Primary-School"], + "changed": ["2023-11-09T10:17:58+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Kalkallo. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home.It will be able to enrol up to 525 students when the first stage of the school is complete.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school is open for enrolments for students in Prep to Grade 6. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au.\u00a0For enrolment queries, please email banum.warrik.ps@education.vic.gov.au.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Banum Warrik Primary School" + ], + "field_latitude": ["-37.521307"], + "field_longitude": ["\u00a0144.955636"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/Lockerbie_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Banum Warrik Primary\u00a0School was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Banum Warrik\u00a0(pronounced\u00a0 bar-num warr-rik ) are\u00a0Woi-wurrung words of the Wurundjeri people\u00a0meaning grassy plains. We\u00a0used\u00a0Lockerbie Central Primary School\u00a0as\u00a0an interim name while the school was being planned and designed.", + "Anthony Potesta\u00a0has been appointed as principal of the new school. Anthony is the foundation principal of Banum Warrik Primary School . Most recently he was the principal at Meadows Primary School. Anthony is committed to building strong relationships with the school community to improve educational and wellbeing outcomes for all learners.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 2 learning neighbourhoods a community hub with indoor multi-use court, canteen and arts/music spaces hard courts a sports field a carpark. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage. We have planned for future growth of this school. Those plans include an additional learning neighbourhood and more learning resource spaces.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Wurundjeri Woi-wurrung Cultural Heritage Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_paragraph_body": [ + "Lockerbie Central Primary School (interim name) - Introducing Anthony Potesta \u00a0" + ], + "field_postcode": ["3064"], + "field_project_code": ["01-5601"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Koeks Vista"], + "field_suburb": ["Kalkallo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24956], + "status": [true], + "title": ["Banum Warrik Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8eddebff-8a19-4ef8-87e7-b30c358f8352"] + }, + "sort": ["Banum Warrik Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25013:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/banyan-fields-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade the multipurpose hall and prep building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $2.104 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Banyan Fields Primary School" + ], + "field_latitude": ["-38.094598"], + "field_latitude_longitude_value": ["-38.094598,145.187909"], + "field_latitude_value": ["-38.094598"], + "field_longitude": ["145.187909"], + "field_longitude_value": ["145.187909"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3201"], + "field_project_code": ["01-3613"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["90 Cadles Road"], + "field_suburb": ["Carrum Downs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25013], + "status": [true], + "title": ["Banyan Fields Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a30abfa7-df27-48c5-affc-91295df599ba"] + }, + "sort": ["Banyan Fields Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21488:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/banyule-nillumbik-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Secondary school students from the Banyule and Nillumbik areas now have access to cutting-edge learning at the Banyule Nillumbik Tech School, hosted by Melbourne Polytechnic. The Tech School is a high-tech learning environment. Its innovative education programs link with local industry to deliver real world learning. Students from 19 partner schools in Banyule and Nillumbik will access the Tech School throughout the year for specialised programs. Banyule Nillumbik Tech School emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Banyule Nillumbik Tech School" + ], + "field_latitude": ["-37.68784"], + "field_latitude_longitude_value": ["-37.68784,145.11197"], + "field_latitude_value": ["-37.68784"], + "field_longitude": ["145.11197"], + "field_longitude_value": ["145.11197"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["TS-BN"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Melbourne \u200bPolytechnic, Greensborough Campus, 61 Civic Dr" + ], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21488], + "status": [true], + "title": ["Banyule Nillumbik Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4913845a-050b-4059-bebc-41586a10ad08"] + }, + "sort": ["Banyule Nillumbik Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20340:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/banyule-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade and modernise the school, including Block A.", + "We built a competition-grade gymnasium and other amenities, including a canteen. We also completed landscaping, and repositioned portable buildings to maximise the school grounds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $12.386 million.", + "The 2017\u201318 State Budget allocated the school $1 million for an upgrade. The school received an additional $3.47 million in the 2018\u201319 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Banyule Primary School" + ], + "field_latitude": ["-37.739845275878906", "-37.743031"], + "field_latitude_longitude_value": [ + "-37.739845275878906,145.07081604003906" + ], + "field_latitude_value": ["-37.739845275878906"], + "field_longitude": ["145.07081604003906", "145.077805"], + "field_longitude_value": ["145.07081604003906"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["D1-01-4746", "01-4746"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation - Sport Facilities Renewal" + ], + "field_q_complete": ["Q1 2024", "Q4 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["50 Banyule Rd"], + "field_suburb": ["Rosanna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20340], + "status": [true], + "title": ["Banyule Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d718e727-5a74-4983-8fc7-007c82f0806c"] + }, + "sort": ["Banyule Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21231:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/baranbali-camperdown-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the bathrooms and outdoor learning areas. We also built an office for families to have private consultations with specialist services.", + "We helped Baranbali Camperdown Kindergarten to fix a roof and upgrade their foyer to improve security. The upgrade also included creating a meeting room for use by parents and visiting health professionals." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $122,795 was allocated to this project.", + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $86,250 was allocated to the project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facilities Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Baranbali Camperdown Kindergarten" + ], + "field_latitude": ["-38.23355248", "-38.23355247617268"], + "field_latitude_longitude_value": ["-38.23355248,143.1446587"], + "field_latitude_value": ["-38.23355248"], + "field_longitude": ["143.1446587", "143.1446587463888"], + "field_longitude_value": ["143.1446587"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3260"], + "field_project_code": ["D1-15-267", "15-267"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q1 2023", "Q3 2019"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["50 Campbell St"], + "field_suburb": ["Camperdown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21231], + "status": [true], + "title": ["Baranbali Camperdown Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["846fec9c-8f4b-4942-bd3d-94ab81472f13"] + }, + "sort": ["Baranbali Camperdown Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20472:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/baringa-special-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are building on the upgrades and modernisation we completed in 2019, including constructing additional permanent buildings.", + "We provided new facilities and completed maintenance work on roofs at the school. We delivered: a new multi-purpose hall incorporating six general purpose classrooms, quiet and group student workspaces, staff collaboration rooms and a consultation room new outdoor junior play spaces and landscaping incorporating outdoor and undercover learning spaces and accessible staff and student facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $13.706 million.", + "In the 2016\u201317 State Budget, $3 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Baringa Special School" + ], + "field_latitude": ["-38.178279876708984", "-38.19222"], + "field_latitude_longitude_value": [ + "-38.178279876708984,146.260986328125" + ], + "field_latitude_value": ["-38.178279876708984"], + "field_longitude": ["146.260986328125", "146.25737"], + "field_longitude_value": ["146.260986328125"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["D1-01-5079", "01-5079"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q1 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["47 Staff St"], + "field_suburb": ["Moe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20472], + "status": [true], + "title": ["Baringa Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["12e14782-7722-467a-8b12-39b80f4157d2"] + }, + "sort": ["Baringa Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20001:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/barnawartha-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an accessible playground where children of all abilities can play together and feel\u00a0part of their school community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Barnawartha Primary School" + ], + "field_latitude": ["-36.10158"], + "field_latitude_longitude_value": ["-36.10158,146.67522"], + "field_latitude_value": ["-36.10158"], + "field_longitude": ["146.67522"], + "field_longitude_value": ["146.67522"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3688"], + "field_project_code": ["01-1489"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["11-17 Stanely St"], + "field_suburb": ["Barnawartha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20001], + "status": [true], + "title": ["Barnawartha Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c5922af9-1323-4491-81e5-8bf96f6b18ae"] + }, + "sort": ["Barnawartha Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20689:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/barrawang-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Wollert West. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Alisha Campbell was appointed as the first principal of the school. The school was previously known by its interim name, Wollert West Primary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 to 8 July 2022. Barrawang (pronounced barra-wang) is a Woi-wurrung word of the Wurundjeri people meaning magpie. Facilities Facilities include the following: an administration building with a library, staff offices and amenities. As well as specialist teaching areas for science and food technology 2 learning neighbourhood buildings. These have general purpose classrooms, and flexible and collaborative teaching spaces a community hub building with a competition-grade gymnasium, canteen, music and drama space 2 outdoor hard courts a sports field. Supported inclusion school This school\u00a0is a supported inclusion school. This school has specialised facilities and capabilities designed to accommodate students with disabilities. Kindergarten We have built Barrawang Primary School Kindergarten, a two-room kindergarten at the school. It can offer up to 66 much-needed kindergarten places for local families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Barrawang Primary School." + ], + "field_latitude": ["-37.5983"], + "field_latitude_longitude_value": ["-37.5983,144.99347"], + "field_latitude_value": ["-37.5983"], + "field_longitude": ["144.99347"], + "field_longitude_value": ["144.99347"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/BarrawangPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we built at Barrawang Primary School." + ], + "field_postcode": ["3750"], + "field_project_code": ["01-5585"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Islington St"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20689], + "status": [true], + "title": ["Barrawang Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["45566c84-24ea-4780-8c07-f4e17e3a2942"] + }, + "sort": ["Barrawang Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21390:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/barrawang-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Barrawang Primary School. This 2-room centre provides 66 kindergarten places and opens into an outdoor learning and play space. Having the kindergarten and school together may help local children make a smoother transition into primary school and can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten funding, delivered over 4 years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Barrawang Primary School Kindergarten." + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["15-WWPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Islington St"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21390], + "status": [true], + "title": ["Barrawang Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cfac99fa-1a0a-4634-b9f9-37e0e010e8dc"] + }, + "sort": ["Barrawang Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28654:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/barry-beckett-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor play and learning areas. Children will be able to learn while exploring natural landscapes or playing with others in a mud kitchen or bush hut. They will experience Indigenous culture and be able to relax alongside running water." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $178,451.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Barry Beckett Children's Centre." + ], + "field_latitude": ["-37.73613095"], + "field_latitude_longitude_value": ["-37.73613095,144.981092"], + "field_latitude_value": ["-37.73613095"], + "field_longitude": ["144.981092"], + "field_longitude_value": ["144.981092"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["elc-bbcc"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["12 Connolly Av"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28654], + "status": [true], + "title": ["Barry Beckett Children's Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["fb3f4225-ab78-4bc4-a9f3-d53bad8cb7d6"] + }, + "sort": ["Barry Beckett Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20666:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/barton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe have built Barton Primary School, which serves families in the growing suburb of Cranbourne West. The school accommodates up to 475 students, and was delivered by the Learning Communities Victoria (LCV) consortium.\u200b The school opened for students, Prep to Year 6 in Term 1, 2017.\u200b \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million Public Private Partnership (PPP) Project across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Barton Primary School" + ], + "field_latitude": ["-38.1145"], + "field_latitude_longitude_value": ["-38.1145,145.23953"], + "field_latitude_value": ["-38.1145"], + "field_longitude": ["145.23953"], + "field_longitude_value": ["145.23953"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5560"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["90 Everlasting Blvd"], + "field_suburb": ["Cranbourne West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20666], + "status": [true], + "title": ["Barton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68371495-1c4a-4ac7-af13-75723c1b10f2"] + }, + "sort": ["Barton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20015:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/barwon-heads-primary-school"], + "changed": ["2023-09-11T14:20:48+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground with rubber soft fall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Barwon Heads Primary School" + ], + "field_latitude": ["-38.2862276000118"], + "field_latitude_longitude_value": [ + "-38.2862276000118,144.486467800096" + ], + "field_latitude_value": ["-38.2862276000118"], + "field_longitude": ["144.486467800096"], + "field_longitude_value": ["144.486467800096"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3227"], + "field_project_code": ["01-1574"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Golf Links Road"], + "field_suburb": ["Barwon Heads"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20015], + "status": [true], + "title": ["Barwon Heads Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["39f451db-ee35-48ca-bf41-be89ff4b96b3"] + }, + "sort": ["Barwon Heads Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20588:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/barwon-valley-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are continuing to upgrade and modernise this school, including constructing permanent buildings and upgrading the multipurpose building.", + "We built an\u00a0innovative play space to support inclusive exercise, sensory, social and educational experiences.", + "We\u00a0upgraded and modernised facilities at Barwon Valley School, including\u00a0refurbishing\u00a0classrooms and facilities that were\u00a0in poor condition. These works\u00a0targeted facilities which needed it most, ensuring that students learn in facilities that are ready for the delivery of modern education.", + "We undertook external refurbishments to develop an innovative senior learning community play space. This project has made inclusive exercise, as well as \u200bsensory, social and age-appropriate educational experiences possible for all students at the school.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.726 million.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In the 2018\u201319 State Budget $2.1 million was allocated to the school.", + "In Round 2 of the Inclusive Schools Fund, $200,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Barwon Valley School" + ], + "field_latitude": [ + "-38.180030822753906", + "-38.17831", + "-38.178871", + "-38.178871" + ], + "field_latitude_longitude_value": [ + "-38.180030822753906,144.34281921386719" + ], + "field_latitude_value": ["-38.180030822753906"], + "field_longitude": [ + "144.34281921386719", + "144.32782", + "144.327703", + "144.327698" + ], + "field_longitude_value": ["144.34281921386719"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": [ + "D3-01-5368", + "D2-01-5368", + "D1-01-5368", + "01-5368" + ], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Inclusive Schools Fund - Round 5", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2024", "Q1 2021", "Q1 2020", "Q1 2018"], + "field_start_date": ["Q4 2020", "Q4 2019", "Q2 2018"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["76-94 Laura Av"], + "field_suburb": ["Belmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20588], + "status": [true], + "title": ["Barwon Valley School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ea86f2b4-d708-412b-8264-b2e3477eb3af"] + }, + "sort": ["Barwon Valley School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24593:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/basicneeds-australia"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping BasicNeeds Australia plan expansion works at the centre to help create more kindergarten places for local children. This planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of BasicNeeds Australia" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-BANEA"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24593], + "status": [true], + "title": ["BasicNeeds Australia"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f3bde990-cdd1-4ad6-83db-a127ea1da66c"] + }, + "sort": ["BasicNeeds Australia"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20896:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bass-coast-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new senior campus for Year 10\u201312 students at Bass Coast College (formerly\u00a0Wonthaggi Secondary College), forming part of an exciting new education and learning precinct in the Bass Coast Shire. The new campus is purpose-built for adolescent and adult learning, and to facilitate strong connections to the local community. The design includes a two-storey administration and learning building, as well as a games hall, linked by landscaped, outdoor social and recreational areas.\u00a0 The administration and learning building includes general learning areas, administration facilities, a library resources area and specialist facilities for visual arts, graphics, materials technology and science. The new school will also have woodwork and metalwork facilities. A wetland environment, sports field and playing courts create a strong culture of health, wellbeing and inclusion. \u200b\u200b\u200bThis project, designed by ClarkeHopkinsClarke, was a finalist for \u2018Best Secondary School Project\u2019 in the 2020 Victorian School Design Awards. In August 2019, the Victorian Government announced an additional new junior campus for Years 7-9 will be built in San Remo to cater for families across Phillip Island, San Remo and the waterline area. \u200b School naming\u00a0 From February 11 to March 4 2021, we consulted\u00a0with the Wonthaggi and Bass Coast community on a new name for Wonthaggi Secondary College.\u00a0 These preferences were\u00a0used to inform the Department of Education\u2019s final decision on the school name, in conjunction with the guiding principles for renaming school. 'Bass Coast College'\u00a0received\u00a0the highest level of community support.\u00a0The school welcomes students from a large number of primary schools across the Bass Coast Shire. This new name\u00a0more\u00a0accurately reflects the school's unique identity, inspires local pride, and makes the school easily locatable across its three campuses.\u00a0", + "We built an indoor inclusive learning space.", + "We built two additional indoor courts for the school and local community to share. This\u00a0provides the whole community with high quality sports facilities. It also includes specialist areas for Performing Arts and Food Technology and a canteen.\u200b\u200b The Shared Facilities Fund \u200benables schools, local councils and other institutions to build shared facilities that bring communities together." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Victorian Government has allocated $31 million to the school.", + "In Round 6 of the Inclusive Schools Fund, this project received $179,000.", + "As part of the $31 million allocated to the school by the Victorian Government, $3 million has been allocated to the school through the Shared Facilities Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bass Coast College." + ], + "field_latitude": ["-38.607730", "-38.6004404", "-38.60741"], + "field_latitude_longitude_value": ["-38.607730,145.592830"], + "field_latitude_value": ["-38.607730"], + "field_longitude": ["145.592830", "145.5788772", "145.591812"], + "field_longitude_value": ["145.592830"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Wonthaggi Secondary College \u2013 new senior campus", + "Wonthaggi Secondary College | Construction update" + ], + "field_postcode": ["3995"], + "field_project_code": ["01-8736", "D2-01-8736", "D1-01-8736"], + "field_project_title": [ + "New Senior Campus - Wonthaggi Campus", + "Inclusive Schools Fund - Round 6", + "Shared Facilities Fund - Wonthaggi Campus" + ], + "field_q_complete": ["Q4 2019", "Q2 2023", "Q4 2019"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["2 McKenzie St"], + "field_suburb": ["Wonthaggi"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20896], + "status": [true], + "title": ["Bass Coast College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["08184193-2860-4e84-9a3d-75e64077dba9"] + }, + "sort": ["Bass Coast College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21393:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bass-coast-college-san-remo-campus"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new junior secondary campus for Bass Coast College in San Remo, which opened in January 2022.\u00a0 The new Years 7\u20139 campus is able to enrol up to 500 students, and\u00a0has added to the college's two existing campuses (including the recently opened\u00a0Wonthaggi Campus). Facilities a 'Welcome and\u00a0Wellbeing Centre', which consists of administration and library spaces and reflects the\u00a0importance of holistic\u00a0student development with strong wellbeing support a learning base and innovation neighbourhood consisting of classroom spaces that are\u00a0innovative\u00a0and\u00a0adaptable a specialist building where\u00a0science, technology\u00a0and design learning takes place in a collaborative setting a community and health building, which consists of a performing arts and physical education area (which includes an\u00a0indoor play court), and a food technology space and canteen, which\u00a0can be accessible for local community events an oval 4 outdoor play courts. School naming The school was previously known by\u00a0Wonthaggi Secondary College.\u00a0We consulted with the community on\u00a0Bass Coast College name from 11 February to 4 March 2021. This new name\u00a0more\u00a0accurately reflects the school's unique identity, inspires local pride, and makes the school easily locatable across its three campuses.\u00a0 Community and design consultation We engaged with students, teachers, parents and community members from the Bass Coast community from 23 May to 14 June 2019, on current education options, priorities and the best location for a new school facility. In particular, we wanted to know where the school should be located, what the community feels are the most important factors when choosing a school, as well as what current secondary schools parents are considering for their children. In October 2019, we engaged with students, teachers, parents and community members from San Remo, Phillip Island and the surrounding area, gathering their input to help design the new junior secondary campus in San Remo. We used an online survey and held a community drop-in consultation event. You can\u00a0contact us\u00a0for a copy of the reports from both consultations." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, this school shared in $624.8 million allocated for new schools. In 2020, the school received a further $5 million in funding.In the 2020\u201321 State Budget, the school received at least $25.76 million." + ], + "field_funding_type_name": ["New School Campus"], + "field_landing_page_summary": [ + "Learn more about the build of Bass Coast College - San Remo Campus." + ], + "field_latitude": ["-38.529363"], + "field_latitude_longitude_value": ["-38.529363,145.390705"], + "field_latitude_value": ["-38.529363"], + "field_longitude": ["145.390705"], + "field_longitude_value": ["145.390705"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/BassCoastNewCampus_211206_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3925"], + "field_project_code": ["D3-01-8736"], + "field_project_title": ["New School Campus"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["Potters Hill Rd"], + "field_suburb": ["San Remo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21393], + "status": [true], + "title": ["Bass Coast College - San Remo Campus"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["13cf01bc-d5e5-46d2-946b-559c08325ba1"] + }, + "sort": ["Bass Coast College - San Remo Campus"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24606:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/bass-coast-shire-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping Bass Coast Shire Council plan to expand or improve 3 of their kindergartens. They\u2019ll expand Bass Valley Children Centre, refurbish Wonthaggi North Kindergarten and build a new kindergarten in the Wonthaggi-Northeast Precinct. These projects would create more kindergarten places for local 3 and 4-year-olds. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $138,601 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Bass Coast Shire Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-BCSCK"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24606], + "status": [true], + "title": [ + "Bass Coast Shire Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["33119c2c-ef16-4b5d-9c46-47478b7dff15"] + }, + "sort": [ + "Bass Coast Shire Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20948:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bass-coast-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will deliver new permanent facilities.", + "We helped the school construct a wheelchair ramp, allowing all students safe access to a hilled natural play space.", + "We\u00a0upgraded\u00a0the school's outdoor spaces to be inclusive for all students and built new sensory play spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $1.934 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $93,665.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bass Coast Specialist School." + ], + "field_latitude": ["-38.60974434", "-38.6101618", "-38.6093"], + "field_latitude_longitude_value": ["-38.60974434,145.5964659"], + "field_latitude_value": ["-38.60974434"], + "field_longitude": ["145.5964659", "145.5970749", "145.59767"], + "field_longitude_value": ["145.5964659"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3995"], + "field_project_code": ["D2-01-8859", "D1-01-8859", "01-8859"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2022", "Q1 2021"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q4 2019"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["6 Mckenzie St"], + "field_suburb": ["Wonthaggi"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20948], + "status": [true], + "title": ["Bass Coast Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7f8f60c3-f75b-430e-ad5d-00d962247b72"] + }, + "sort": ["Bass Coast Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21420:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bass-valley-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Bass Valley Children's Centre opened in term 1, 2018. Bass Coast Shire Council have built a new integrated children's centre adjacent to the Bass Valley Primary School\u200b, providing much needed childcare facilities to families in the Bass Valley area.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015\u201316 Children's Facilities Capital Program Major Grants $900,000 was allocated to the children's centre." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bass Valley Children's Centre" + ], + "field_latitude": ["-38.43128"], + "field_latitude_longitude_value": ["-38.43128,145.48896"], + "field_latitude_value": ["-38.43128"], + "field_longitude": ["145.48896"], + "field_longitude_value": ["145.48896"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3984"], + "field_project_code": ["ELC-4"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["70 Corinella Rd"], + "field_suburb": ["Corinella"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21420], + "status": [true], + "title": ["Bass Valley Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2b32449c-341a-4b97-8f5c-4bd7da622d1c"] + }, + "sort": ["Bass Valley Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20517:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bass-valley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the asphalt in the school's central outdoor area, to modernise and create a flexible, safe outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $283,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bass Valley Primary School" + ], + "field_latitude": ["-38.4312818"], + "field_latitude_longitude_value": ["-38.4312818,145.4889564"], + "field_latitude_value": ["-38.4312818"], + "field_longitude": ["145.4889564"], + "field_longitude_value": ["145.4889564"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3984"], + "field_project_code": ["01-5195"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["70 Corinella Rd"], + "field_suburb": ["Corinella"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20517], + "status": [true], + "title": ["Bass Valley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7ca00590-f5af-429c-a25b-92c013bec668"] + }, + "sort": ["Bass Valley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25451:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/batman-park-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We are redesigning and refurbishing the kitchen. This will help staff prepare for kindergarten activities and offer extra storage. We are also building a new covered outdoor space. The space will give children a weather-proof area where they can take part in a variety of activities.", + "We made significant improvements to the south yard. We built a wooden deck, an additional play space and a space for water play. We also added a dry creek bed and a raised vegetable garden with a sensory pathway. These improvements will create more opportunities for children to better engage in lessons around sustainability and biodiversity." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $60,773 was allocated to the project.", + "In the 2021\u201322 Building Blocks Improvement Grants, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Batman Park Kindergarten" + ], + "field_latitude": ["-37.76811141"], + "field_latitude_longitude_value": ["-37.76811141,144.9936056"], + "field_latitude_value": ["-37.76811141"], + "field_longitude": ["144.9936056"], + "field_longitude_value": ["144.9936056"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3070"], + "field_project_code": ["D1-15-953", "15- 953"], + "field_project_title": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant - Minor Infrastructure" + ], + "field_q_complete": ["Q1 2024", "Q4 2022"], + "field_start_date": ["Q4 2022", "Q2 2022"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["79 Elm St"], + "field_suburb": ["Northcote"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25451], + "status": [true], + "title": ["Batman Park Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["c8bda328-e74d-4667-9446-17b33924e02f"] + }, + "sort": ["Batman Park Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34236:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/baw-baw-shire-council"], + "changed": ["2023-08-09T14:55:18+10:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Baw Baw Shire Council plan a 3-room kindergarten in Warragul. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $100,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Baw Baw Shire Council" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["15-BBSC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["Corner King Street and Landsborough Road"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34236], + "status": [true], + "title": ["Baw Baw Shire Council"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["09836cb3-cba1-4a3b-9359-4c2e49b84da9"] + }, + "sort": ["Baw Baw Shire Council"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20154:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/baxter-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to the school. The new building will feature general purpose classrooms, an open plan central area, student toilets and accessible toilet facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $2.581 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Baxter Primary School." + ], + "field_latitude": ["-38.199663"], + "field_latitude_longitude_value": ["-38.199663,145.181553"], + "field_latitude_value": ["-38.199663"], + "field_longitude": ["145.181553"], + "field_longitude_value": ["145.181553"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3911"], + "field_project_code": ["01-3023"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Grant Rd"], + "field_suburb": ["Baxter"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20154], + "status": [true], + "title": ["Baxter Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ad33496-654b-4596-b11c-e6dca4f531e4"] + }, + "sort": ["Baxter Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20607:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayles-regional-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to Bayles Regional Primary School to replace Block B. \u200b", + "We\u00a0built an inclusive fitness area and musical playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $466,000 was allocated to the school.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bayles Regional Primary School" + ], + "field_latitude": ["-38.17666", "-38.17666"], + "field_latitude_longitude_value": ["-38.17666,145.56566"], + "field_latitude_value": ["-38.17666"], + "field_longitude": ["145.56566", "145.56566"], + "field_longitude_value": ["145.56566"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Bayles Regional Primary School get a new modular building" + ], + "field_postcode": ["3981"], + "field_project_code": ["01-5421", "D1-01-5421"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2018", "Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["3730 Ballarto Rd"], + "field_suburb": ["Bayles"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20607], + "status": [true], + "title": ["Bayles Regional Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e12654ed-894f-4715-a829-93bd9e942d05"] + }, + "sort": ["Bayles Regional Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20916:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayside-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade and modernise the school, including the maths and science block.", + "We completed maintenance and minor works to the school's Trades Wing. The work included the reconfiguration of classrooms, demolition of some internal walls, new joinery, replacement of some doors, windows and gutters, as well as more work to the roof." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6.714 million.", + "In the 2015\u201316 State Budget, $300,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bayside P-12 College" + ], + "field_latitude": ["-37.863193511962891", "-37.85891"], + "field_latitude_longitude_value": [ + "-37.863193511962891,144.90263366699219" + ], + "field_latitude_value": ["-37.863193511962891"], + "field_longitude": ["144.90263366699219", "144.88503"], + "field_longitude_value": ["144.90263366699219"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3016"], + "field_project_code": ["D1-01-8800", "01-8800"], + "field_project_title": [ + "Upgrade and Modernisation - Williamstown Campus", + "School Improvement Fund" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["29-69 Kororoit Creek Rd"], + "field_suburb": ["Williamstown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20916], + "status": [true], + "title": ["Bayside P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["adab6e6a-fe46-44f9-8832-0f0d0ef8d53e"] + }, + "sort": ["Bayside P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20537:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayside-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school benefited from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we built on the upgrades and modernisation we completed in 2019, to deliver the final stage of the school's master plan.", + "\u200b\u200b\u200bWe completed\u00a0the first stage of rebuilding\u00a0Bayside Special Developmental School, offering specialist education and first-class facilities for junior, middle and senior children and young people\u00a0with additional needs. The school is designed around a central courtyard as an inclusive space at the heart of the school. Early education, junior, middle and senior learning neighbourhoods are grouped around this courtyard.\u00a0Flexible \u2018learning communities' feature movable walls allowing a variety of modern teaching methods. Outdoor break out spaces and active play areas beyond create opportunities for students to explore and engage with a variety of sensory experiences.\u00a0 Providing both educational and therapeutic programs for students, the new amenities include: new buildings for Early Education Program students (aged 2.8 \u2013 5), as well as junior, middle and senior years school administration on Genoa Street t\u200bhe \u2018Jan Lake Centre\u2019- a multipurpose centre located above the administration building for use by DET regional staff for professional development, the Bayside Special\u00a0Developmental School and the community music and multipurpose spaces, including a\u00a0hardcourt,\u00a0located next to the administration building to allow for out-of-hours use a transport drop-off hub a sport field a sensory garden an accessible community playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $3.445 million.", + "In the 2017-18 State Budget, $11.4 million was allocated to the school.\u00a0 The school also received a further $65,300 through the School Pride and Sports Fund. This was in addition to planning funding granted in the 2016-17 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bayside Special Developmental School" + ], + "field_latitude": ["-37.941432952880859", "-37.942688"], + "field_latitude_longitude_value": [ + "-37.941432952880859,145.05696105957031" + ], + "field_latitude_value": ["-37.941432952880859"], + "field_longitude": ["145.05696105957031", "145.057281"], + "field_longitude_value": ["145.05696105957031"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3189"], + "field_project_code": ["D1-01-5240", "01-5240"], + "field_project_title": [ + "Upgrade and Modernisation - Completion of Masterplan", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["4 Genoa Street"], + "field_suburb": ["Moorabbin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20537], + "status": [true], + "title": ["Bayside Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["690bedd4-090c-42f2-bb04-5fbfd52603bd"] + }, + "sort": ["Bayside Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21466:en", + "_score": null, + "_ignored": [ + "field_paragraph_body.keyword", + "field_paragraph_accordion_body.keyword" + ], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayswater-education-plan"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Bayswater Education Plan. Work on the plan began in 2020. It will improve local government primary and secondary schools, and build community pride and confidence in them. It also helps us plan new and upgraded school buildings, so students have the facilities they need to reach their full potential.\u00a0 The schools involved in the plan are: Bayswater Secondary College Bayswater Primary School Bayswater North Primary School Bayswater South Primary School Bayswater West Primary School Subscribe to our\u00a0mailing\u00a0list\u00a0to stay up to date with the latest information on the Bayswater Education Plan." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Victorian Government has invested $12.433 million in this plan for new, and more modern, school buildings. From the 2020\u201321 Statewide Planning and Acceleration Fund, $500,000 was allocated for initial planning." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Bayswater Education Plan" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "We\u2019ve released the Bayswater Education Plan \u2013 a 10-year strategy to inspire and support children and young people in the Bayswater community to aim higher and achieve more at every stage of their learning journey.\u00a0 This plan is a framework for the schools and the broader community to work in partnership to improve educational outcomes and create new learning opportunities. What will success look like? Bayswater students engaged, challenged and supported in their learning Happy, healthy and resilient Bayswater children and young people Local community confidence in Bayswater public schools Bayswater children and young people prepared for each stage of their learning and career journey", + "1. Develop excellence in teaching and learning, and an engaging curriculum across the Bayswater schools There will be greater collaboration between schools to share excellence in teaching practice and support teachers\u2019 professional development. They will: work together to develop new learning programs that inspire and motivate student curiosity and passions, such as STEM, arts and music, or physical and health education work with local universities and tertiary education providers to develop extension and enrichment programs for students across the Bayswater schools. 2. Build pride and confidence in Bayswater schools Students and schools will always achieve more with the support of their families and the broader community. The schools will promote their shared vision and unique offerings. They will develop new ways to share student progress and celebrate leadership, achievement, and success. 3. Build networks, partnerships, and collective responsibility for student outcomes This plan will create new partnerships between schools, kindergartens, universities, TAFE, and local businesses. These partnerships help develop a seamless curriculum and make a smoother transition from early learning through the different school stages and onto further education, training and employment. The schools also want to develop new partnerships with families and carers, giving them more opportunities to become involved in their children\u2019s education while supporting academic achievement and staying at school longer. 4. Build integrated and holistic health and wellbeing initiatives within, and across, the Bayswater schools The schools already have a strong focus on developing caring relationships and nurturing environments. Through the plan they will: strengthen the health and wellbeing systems that are key to students achieving their best continue to support and empower students to develop the knowledge and skills they need for learning, self-awareness, deep intellectual engagement, and thrive as citizens in the 21st century.", + "We engaged with staff, students, teachers, parents, families, and carers from the 5 schools involved in the Bayswater Education Plan in February and March 2021. The goal of our engagement was to identify the wants and needs of the local community.", + "The Victorian Government recognises the importance of transforming local education in Melbourne\u2019s outer south-east and, in 2020, announced a new Bayswater Education Plan. The plan aims to build pride and confidence in our government schools and will focus on the wellbeing, engagement and achievement of all children and young people in Bayswater. It will provide a framework to map infrastructure needs so that our students have access to the facilities essential for them to reach their full potential. There are 5 schools involved in the plan: Bayswater Secondary College Bayswater Primary School Bayswater North Primary School Bayswater South Primary School Bayswater West Primary School. The schools have been working together and with their communities to strengthen and support the development of the plan. These shared voices represent the educational needs and aspirations of the local community.", + "We engaged with staff, students, teachers, parents, families, and carers from the five schools involved in the Bayswater Education Plan in February and March 2021. We did this via an online survey, in individual school and combined school student workshops, and a staff workshop. The goal of our engagement was to identify the wants and needs of the local community and help build pride and confidence in their local government primary and secondary schools. This report provides a summary of what we heard from the community during this engagement.", + "What participants love about their school and identify as their school\u2019s strengths How students like to learn and what education in Bayswater should look like in the future What schools need to help drive success for students and support teachers to deliver this", + "Workshops 5 individual face-to-face workshops 1 combined student workshop 1 combined staff online workshop 60 students participated across six individual school workshops 40 students participated in the combined student workshop Almost 100 staff participated in the staff workshop Online survey (15 February to 12 March) We received 80 responses across the Engage Victoria survey Social media promotion reached 6,312 people and resulted in 240 clicks through to the Engage Victoria website", + "Bayswater schools offer supportive and caring communities. Students need access to more subjects and learning pathways, and engaging students in their learning is critical for success. From the survey Across all levels of schooling, good social skills, continual learning, and development of self-confidence is critical for student success. When it comes to choosing a school, resources, quality teaching, positive school culture and wellbeing programs are important for parents with younger students. Diverse subject choice and programs on offer are highly valued to those exploring secondary options for their child. From the workshops Across the workshops, students and staff were enthusiastic and positive about education in Bayswater and valued being involved in the development of the plan. Successful schools will need: Wellbeing programs and resilience building Diverse curriculum and various learning pathways Student-centred learning for greater student engagement From the students From 43 individual ideas on the best way to improve school, \u2018create a more personalised curriculum and choose what classes you want to attend\u2019 stood out as the strongest idea. The most effective and engaging form of learning for students is to develop student independence and create an environment where their thoughts and ideas can be expressed and respected. Students told us they liked different styles of learning and working collaboratively on difficult projects and we heard that \u2018brain breaks\u2019 worked well as a tool for younger students\u2019 concentration. Schools of the future will \u201cuse technology in a more integrated way\u201d and \u201chave bigger buildings to accommodate a larger population\u201d. Students learn best through \u201casking teachers for help when needed\u201d, \u201cworking with friends to tackle tough tasks or problems\u201d and \u201cquiet spaces for focused learning, with calming music\u201d. Students said improvements could be \u201cImproving school facilities, including playgrounds and equipment\u201d, \u201ca more personalised curriculum that allows students to do the work they want to do\u201d and \u201cnew ways of learning, with more collaboration and hands-on learning methods\u201d.", + "You can access a designed version of this report." + ], + "field_paragraph_accordion_name": [ + "Bayswater Education Plan released in 2022", + "How will this be achieved?", + "Community engagement", + "About the Bayswater Education Plan", + "About the engagement", + "What we wanted to know", + "Engagement snapshot", + "What we heard", + "Designed report" + ], + "field_paragraph_body": [ + "For more information on learning programs and partnerships this plan is delivering, please visit the Department of Education and Training . This plan is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to other education plans across the state, please visit the VSBA education plans page. For all other information and queries contact\u00a0 education.plans@education.vic.gov.au ." + ], + "field_paragraph_title": [ + "Plan released", + "Engaging with the community" + ], + "field_postcode": ["3153"], + "field_project_code": ["EP-BW"], + "field_project_title": ["Education Plan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21466], + "status": [true], + "title": ["Bayswater Education Plan"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0ceeddfb-a76c-434a-b97f-bef4918612f8"] + }, + "sort": ["Bayswater Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27776:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayswater-north-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bayswater North Primary School" + ], + "field_latitude": ["-37.8288"], + "field_latitude_longitude_value": ["-37.8288,145.295621"], + "field_latitude_value": ["-37.8288"], + "field_longitude": ["145.295621"], + "field_longitude_value": ["145.295621"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3153"], + "field_project_code": ["01-4143"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Stuart St"], + "field_suburb": ["Bayswater North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27776], + "status": [true], + "title": ["Bayswater North Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["496860fc-a8e0-4f65-bab6-ae2a8d1c75ee"] + }, + "sort": ["Bayswater North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20081:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayswater-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have replaced an older building containing asbestos with a new architecturally-designed permanent modular building. The building includes general-purpose classrooms, administration area and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.390 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bayswater Primary School." + ], + "field_latitude": ["-37.843720"], + "field_latitude_longitude_value": ["-37.843720,145.258630"], + "field_latitude_value": ["-37.843720"], + "field_longitude": ["145.258630"], + "field_longitude_value": ["145.258630"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3153"], + "field_project_code": ["01-2163"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Birch St"], + "field_suburb": ["Bayswater"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20081], + "status": [true], + "title": ["Bayswater Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["96fce09c-3e6d-4f16-8d33-28971df09205"] + }, + "sort": ["Bayswater Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20760:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayswater-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and expanding Bayswater\u00a0Secondary College to provide modern and functional learning environments equipped for 21st century learning. This school is part of the Bayswater Education Plan,\u00a0which is inspiring and supporting children and young people in the Bayswater\u00a0community to aim higher and achieve more at every stage of their learning journey. Learn how education plans offer extra support for students to reach their full potential." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $12.433 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bayswater Secondary College" + ], + "field_latitude": ["-37.83903"], + "field_latitude_value": ["-37.846309661865234"], + "field_longitude": ["145.261998"], + "field_longitude_value": ["145.26277160644531"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Both middle and senior year students at Bayswater Secondary will have access to revitalised learning facilities through two new learning hubs. Each hub will include flexible facilities to cater to the wide variety of students\u2019 educational, social, and well-being needs. New facilities will be arranged by year-level grouping and include spaces for integrated science, technology and art learning. Students will also have access to new locker areas. These buildings will have operable windows for natural ventilation, with CO2 sensors in place to provide all classrooms with an alert of when windows should be opened. College principal Liz Swan says, \u201cI believe that a local school should reflect the needs and aspirations of the community it serves. Our community contributed to a design that provides flexibility within a structured setting that facilitates an environment in which all students can learn and thrive. There is something for everyone in the new build.\u201d\u00a0", + "Newly created undercover areas in both learning hubs will allow for further opportunities for students to learn outside. These outdoor informal learning areas provide students new ways to learn throughout the seasons. Staff will also use these spaces to circulate between the hubs." + ], + "field_paragraph_accordion_name": [ + "A middle and senior learning hub for students of every ability", + "Outdoor spaces that cater to student learning" + ], + "field_paragraph_body": [ + "Bayswater Secondary College \u2013 design release", + "Downloads" + ], + "field_paragraph_title": ["Design features"], + "field_postcode": ["3153"], + "field_project_code": ["01-7560"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["14 Orchard Rd"], + "field_suburb": ["Bayswater"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20760], + "status": [true], + "title": ["Bayswater Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2d9f2fc2-d240-46a7-bf74-9c0e4d86473c"] + }, + "sort": ["Bayswater Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20423:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayswater-south-primary-school"], + "changed": ["2023-11-09T14:30:10+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will upgrade all classroom buildings and modernise Block A, Block B and Block C.", + "We upgraded the climate control facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $11.07 million", + "In the 2020 Minor Capital Works Fund, the school was allocated $429,125." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bayswater South Primary School." + ], + "field_latitude": ["-37.8545835000107"], + "field_latitude_longitude_value": [ + "-37.8545835000107,145.261240449998" + ], + "field_latitude_value": ["-37.8545835000107"], + "field_longitude": ["145.261240449998"], + "field_longitude_value": ["145.261240449998"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3153"], + "field_project_code": ["D1-01-4973", "01-4973"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2026", "Q4 2023"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Enfield Dr"], + "field_suburb": ["Bayswater"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20423], + "status": [true], + "title": ["Bayswater South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5bd2a841-1d5a-4445-8d2a-0b924f7f61b4"] + }, + "sort": ["Bayswater South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20454:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bayswater-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground, including new play equipment and a soft rubber fall. The Inclusive Schools Fund supports small innovative building projects making a big difference in meeting the educational and social needs of children and young people with disabilities and additional needs. This school is part of the Bayswater Education Plan, building community pride and confidence in local government schools and how education plans offer extra support for students to reach their full potential.", + "We helped refurbish the school toilets. This school is part of the Bayswater Education Plan, building community pride and confidence in local government schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $178,000.", + "The school received $296,900 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bayswater West Primary School." + ], + "field_latitude": ["-37.8488726431611", "-37.849670"], + "field_latitude_longitude_value": [ + "-37.8488726431611,145.252995563983" + ], + "field_latitude_value": ["-37.8488726431611"], + "field_longitude": ["145.252995563983", "145.253159"], + "field_longitude_value": ["145.252995563983"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3153"], + "field_project_code": ["D1-01-5039", "01-5039"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q1 2023", "Q4 2020"], + "field_start_date": ["Q2 2021", "Q3 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Phyllis St"], + "field_suburb": ["Bayswater"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20454], + "status": [true], + "title": ["Bayswater West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3b9741b5-6c3f-4f8e-b589-d385281721ba"] + }, + "sort": ["Bayswater West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21155:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaconhills-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Beaconhills College to upgrade their Community Arts and Recreation Centre.", + "We supported Beaconhills College to\u00a0build\u00a0a Year 9 building.\u00a0 It has: 6 general purpose classrooms breakout spaces a multipurpose area staff offices\u00a0 drama and\u00a0music rooms student and staff amenities.\u200b\u200b\u200b\u200b\u200b\u200b\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 has been allocated to the school.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2,865,515 has been allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Beaconhills College" + ], + "field_latitude": ["-38.06187", "-38.06187"], + "field_latitude_longitude_value": ["-38.06187,145.46652"], + "field_latitude_value": ["-38.06187"], + "field_longitude": ["145.46652", "145.46652"], + "field_longitude_value": ["145.46652"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["D1-03-1855", "03-1855"], + "field_project_title": [ + "Non-Government Schools Capital Fund - Berwick Campus", + "Non-Government Schools Capital Fund - Pakenham Campus" + ], + "field_q_complete": ["Q4 2022", "Q2 2018"], + "field_start_date": ["Q4 2019", "Q2 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["30-34 Toomuc Valley Rd"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21155], + "status": [true], + "title": ["Beaconhills College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c13e214-406d-4bd4-8e0d-8e58bb16dfab"] + }, + "sort": ["Beaconhills College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36778:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaconsfield-upper-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $58,889" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Beaconsfield Upper Primary School" + ], + "field_latitude": ["-37.995404"], + "field_latitude_longitude_value": ["-37.995404,145.414758"], + "field_latitude_value": ["-37.995404"], + "field_longitude": ["145.414758"], + "field_longitude_value": ["145.414758"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3808"], + "field_project_code": ["01-2560"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["40 Stoney Creek Road"], + "field_suburb": ["BEACONSFIELD UPPER"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36778], + "status": [true], + "title": ["Beaconsfield Upper Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["42b58364-9379-4738-8392-035030e4058d"] + }, + "sort": ["Beaconsfield Upper Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25364:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bealiba-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are upgrading the school's power supply to provide three-phase power. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $93,358 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bealiba Primary School" + ], + "field_latitude": ["-36.789942"], + "field_latitude_longitude_value": ["-36.789942,143.551897"], + "field_latitude_value": ["-36.789942"], + "field_longitude": ["143.551897"], + "field_longitude_value": ["143.551897"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3475"], + "field_project_code": ["01-749"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["9 Grant Street"], + "field_suburb": ["Bealiba"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25364], + "status": [true], + "title": ["Bealiba Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["56627bbd-fc02-4bda-9718-37d9198be74a"] + }, + "sort": ["Bealiba Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21188:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaufort-early-childhood-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new modular building and improve the outdoor play space in preparation for the roll-out of subsidised kindergarten for three-year-olds. The building provides families with an additional 33 kindergarten places and helps cater for population growth in the community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 1 of the 2021\u201322 Building Blocks Capacity Grant stream" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Beaufort Early Childhood Centre" + ], + "field_latitude": ["-37.4354058000016"], + "field_latitude_longitude_value": [ + "-37.4354058000016,143.382719250019" + ], + "field_latitude_value": ["-37.4354058000016"], + "field_longitude": ["143.382719250019"], + "field_longitude_value": ["143.382719250019"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Explore more about kindergartens"], + "field_postcode": ["3373"], + "field_project_code": ["15-1083"], + "field_project_title": ["Building Blocks Capacity Grant - Modular"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Park Rd"], + "field_suburb": ["Beaufort"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21188], + "status": [true], + "title": ["Beaufort Early Childhood Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6b5d93d5-3d68-4359-be9e-532cb20a0b25"] + }, + "sort": ["Beaufort Early Childhood Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36787:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaufort-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $169,984" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Beaufort Primary School" + ], + "field_latitude": ["-37.43852098"], + "field_latitude_longitude_value": ["-37.43852098,143.3817175"], + "field_latitude_value": ["-37.43852098"], + "field_longitude": ["143.3817175"], + "field_longitude_value": ["143.3817175"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3373"], + "field_project_code": ["01-60"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["2/37 Park Road"], + "field_suburb": ["Beaufort"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36787], + "status": [true], + "title": ["Beaufort Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3bbd27ba-afa9-436c-bd81-d57ed92a2e32"] + }, + "sort": ["Beaufort Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20761:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaufort-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded science and technology facilities at Beaufort Secondary College to create a cluster of learning areas around central corridors. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Beaufort Secondary College" + ], + "field_latitude": ["-37.43873"], + "field_latitude_longitude_value": ["-37.43873,143.38359"], + "field_latitude_value": ["-37.43873"], + "field_longitude": ["143.38359"], + "field_longitude_value": ["143.38359"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3373"], + "field_project_code": ["01-7565"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["1/37 Park Rd"], + "field_suburb": ["Beaufort"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20761], + "status": [true], + "title": ["Beaufort Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e44eae2c-7a1c-4dff-b6ab-e59b5a25c031"] + }, + "sort": ["Beaufort Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20356:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaumaris-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered\u200b\u00a0a new architect-designed modular building to Beaumaris North Primary School which will\u00a0replace Block B with new classrooms, staff facilities and a multi-purpose room.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1,850,498 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Beaumaris North Primary School" + ], + "field_latitude": ["-37.97454"], + "field_latitude_longitude_value": ["-37.97454,145.0372"], + "field_latitude_value": ["-37.97454"], + "field_longitude": ["145.0372"], + "field_longitude_value": ["145.0372"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["01-4803"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Wood St"], + "field_suburb": ["Beaumaris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20356], + "status": [true], + "title": ["Beaumaris North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["92aa92f9-f814-47c5-9b15-b83bb784d849"] + }, + "sort": ["Beaumaris North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20233:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaumaris-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to the school to replace Block C.\u00a0", + "We resurfaced the oval and basketball courts with a synthetic surface. The works improve the outdoor learning environment and condition of the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $2,644,000.", + "In the 2020 Minor Capital Works Fund, the school was allocated $321,125." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Beaumaris Primary School." + ], + "field_latitude": ["-37.9853499", "-37.9853083529592"], + "field_latitude_longitude_value": ["-37.9853499,145.03771"], + "field_latitude_value": ["-37.9853499"], + "field_longitude": ["145.03771", "145.037926975636"], + "field_longitude_value": ["145.03771"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["01-3899", "D1-01-3899"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2019", "Q1 2023"], + "field_start_date": ["Q2 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["79-99 Dalgetty Rd"], + "field_suburb": ["Beaumaris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20233], + "status": [true], + "title": ["Beaumaris Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e71f5c74-5875-47ee-b370-63b68cf654da"] + }, + "sort": ["Beaumaris Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20762:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beaumaris-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed the second stage of upgrades which allows the school to accomodate 1100 students. We extended the\u00a0learning hub by building a new three-storey building. The new building includes art, design and technology facilities\u00a0as well as senior learning and collaborative spaces. The hub's existing art space was transformed into a science space. We also extended the food technology\u00a0facilities\u00a0in the school's activity centre building.", + "\u200b\u200bThe new school\u00a0opened its doors\u00a0in 2018 to Year 7 students. It has\u00a0first-class sporting facilities built in partnership with the Melbourne Cricket Club (MCC).\u00a0The partnership with the MCC will maximise the use of school facilities and provide significant education, economic and broader community benefits. The development comprises the following new sporting facilities: Indoor competition-grade netball/basketball court Outdoor courts Senior Oval\u00a0 Community Oval\u00a0 Multi-Purpose Pitch\u00a0 Pavilion Environmental features are embedded in the school design. This includes developing a wetland to provide educational opportunities and environmental benefits.\u200b These are\u00a0shared by the college, the club and the wider community.\u00a0 The project has\u00a0revitalised a rundown site to create facilities and an outdoor environment that can be enjoyed by everyone for generations to come.\u200b\u200b \u200b \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, Beaumaris Secondary College received a further $18.97 million to deliver Stage 2.", + "The 2017\u201318 State Budget allocated $6.8 million to this project. This is in addition to the $13.5 million committed in the 2016\u201317 State Budget and the $6.5 million in 2015-16 State Budget. Total project funding is $26.8 million." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Beaumaris Secondary College." + ], + "field_latitude": ["-37.981394", "-37.99145"], + "field_latitude_longitude_value": ["-37.981394,145.033342"], + "field_latitude_value": ["-37.981394"], + "field_longitude": ["145.033342", "145.03162"], + "field_longitude_value": ["145.033342"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "New facilities open at Beaumaris Secondary College" + ], + "field_postcode": ["3193"], + "field_project_code": ["D1-01-7566", "01-7566"], + "field_project_title": ["New School - Stage 2", "New School"], + "field_q_complete": ["Q1 2022", "Q1 2018"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["117 - 136 Reserve Road"], + "field_suburb": ["Beaumaris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20762], + "status": [true], + "title": ["Beaumaris Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5d03d6a6-a3d8-40fd-b0d9-8b41eb83aa15"] + }, + "sort": ["Beaumaris Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20366:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beeac-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partially replaced roof sheeting, gutters and downpipes on the school's main building. This work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We helped the school to install new fencing and complete landscaping works.", + "We built an outdoor social participation area with play equipment for the students at the\u00a0school.\u200b The area will be also be used as a learning space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $98,836 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $69,715.", + "In 2016\u201317, $75,200 was allocated to the school in Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Beeac Primary School." + ], + "field_latitude": ["-38.193973", "-38.1941251", "-38.19394"], + "field_latitude_longitude_value": ["-38.193973,143.644279"], + "field_latitude_value": ["-38.193973"], + "field_longitude": ["143.644279", "143.6435873", "143.64362"], + "field_longitude_value": ["143.644279"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3251"], + "field_project_code": ["D2-01-482", "D1-01-482", "01-482"], + "field_project_title": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2022", "Q4 2021", "Q2 2021"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["35 Lang St"], + "field_suburb": ["Beeac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20366], + "status": [true], + "title": ["Beeac Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ad277ecb-8831-4341-9716-362c50cae732"] + }, + "sort": ["Beeac Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20012:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beechworth-primary-school"], + "changed": ["2023-12-05T10:12:52+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. We worked with school leaders to ensure works help achieve educational goals. The works focused on targeted improvements where most needed." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $7.739 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Beechworth Primary School" + ], + "field_latitude": ["-36.359165191650391"], + "field_latitude_longitude_value": [ + "-36.359165191650391,146.68894958496094" + ], + "field_latitude_value": ["-36.359165191650391"], + "field_longitude": ["146.68894958496094"], + "field_longitude_value": ["146.68894958496094"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3747"], + "field_project_code": ["01-1560"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["17 Junction Rd"], + "field_suburb": ["Beechworth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20012], + "status": [true], + "title": ["Beechworth Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["77514855-bda0-440f-bf70-449517486471"] + }, + "sort": ["Beechworth Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20763:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beechworth-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school.", + "We\u00a0built\u00a0a new science and resource centre, which\u00a0includes two laboratories, learning spaces, common areas, seminar rooms and staff rooms. We\u00a0also\u00a0refurbished\u00a0tennis\u00a0and basketball courts, giving students access to modern sports\u00a0facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This included funding for Beechworth Secondary College. In the 2019\u201320 State Budget, the school received $9.384 million." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Beechworth Secondary College" + ], + "field_latitude": ["-36.34715"], + "field_latitude_longitude_value": ["-36.34715,146.68994"], + "field_latitude_value": ["-36.34715"], + "field_longitude": ["146.68994"], + "field_longitude_value": ["146.68994"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3747"], + "field_project_code": ["D1-01-7575", "01-7575"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q2 2021"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["85 Balaclava Rd"], + "field_suburb": ["Beechworth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20763], + "status": [true], + "title": ["Beechworth Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1d837966-5c15-4ead-bc0a-f5981299da0e"] + }, + "sort": ["Beechworth Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21312:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beis-menachem-community-centre"], + "changed": ["2023-08-23T11:04:51+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are delivering two modular buildings to Beis Menachem Community Centre. This project will replace tired, old facilities with larger, state-of-the-art modular buildings that cater for 66 kindergarten places. The additional places and enhanced premises will provide local families with access to quality early learning facilities.", + "We fixed the windows in the south-west corner of Beis Menachem Community Centre. This involved restoring the frames and replacing the glass with child safety glass. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building $1.5 million was allocated to the project.", + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Beis Menachem Community Centre" + ], + "field_latitude": ["-37.922245025634766", "-37.91950033"], + "field_latitude_longitude_value": [ + "-37.922245025634766,145.06695556640625" + ], + "field_latitude_value": ["-37.922245025634766"], + "field_longitude": ["145.06695556640625", "145.0715023"], + "field_longitude_value": ["145.06695556640625"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["15-5625", "D1-15-5625"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["TBC", "Q3 2023"], + "field_start_date": ["Q4 2020", "Q3 2021"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["13-17 Cecil St"], + "field_suburb": ["Bentleigh East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21312], + "status": [true], + "title": ["Beis Menachem Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e2b9284d-7eb4-49fa-b2d7-922f8997c6ad"] + }, + "sort": ["Beis Menachem Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32804:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beleura-hill-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-08T20:55:05+10:00"], + "field_about_project_processed": [ + "We upgraded the playground to be more inclusive and safer for children of all abilities. We replaced old and metal play equipment. We also landscaped the playground so that children can play in a natural environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $56,412 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Beleura Hill Preschool." + ], + "field_latitude": ["-38.22092766"], + "field_latitude_longitude_value": ["-38.22092766,145.0536499"], + "field_latitude_value": ["-38.22092766"], + "field_longitude": ["145.0536499"], + "field_longitude_value": ["145.0536499"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["15-907"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["32 Amelia Avenue"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32804], + "status": [true], + "title": ["Beleura Hill Preschool"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["7b366fb4-9cc3-4838-bec2-fb7e610a2a65"] + }, + "sort": ["Beleura Hill Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21214:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belgrade-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We converted the Belgrade Avenue community centre into an early learning centre. The new centre has: two kindergarten rooms meeting spaces staff spaces maternal child health and playgroup facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants $251,607 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Belgrade Children's Centre" + ], + "field_latitude": ["-36.126939718182619"], + "field_latitude_longitude_value": [ + "-36.126939718182619,146.9041059369587" + ], + "field_latitude_value": ["-36.126939718182619"], + "field_longitude": ["146.9041059369587"], + "field_longitude_value": ["146.9041059369587"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["15-1422"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Belgrade Av"], + "field_suburb": ["Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21214], + "status": [true], + "title": ["Belgrade Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["00b60e90-3657-42b6-a8c4-26805008c597"] + }, + "sort": ["Belgrade Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32805:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/belgrave-heights-christian-school-early-learning-centre" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-08T20:55:05+10:00"], + "field_about_project_processed": [ + "We renovated and increased the size of the outdoor play area. This included extending outdoor classroom space and buying play equipment, plants, and outdoor seating. The improvements include a sensory trail to allow children to play, learn and develop." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $150,802 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Belgrave Heights Christian School Early Learning Centre." + ], + "field_latitude": ["-37.91911853"], + "field_latitude_longitude_value": ["-37.91911853,145.3459031"], + "field_latitude_value": ["-37.91911853"], + "field_longitude": ["145.3459031"], + "field_longitude_value": ["145.3459031"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3160"], + "field_project_code": ["15-BHCSELC"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["20 Wattle Valley Rd"], + "field_suburb": ["Belgrave"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32805], + "status": [true], + "title": ["Belgrave Heights Christian School Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["3ce0cb18-ffe5-470e-89b2-e1de30436f83"] + }, + "sort": ["Belgrave Heights Christian School Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20200:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belgrave-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0constructed an\u00a0outdoor classroom with a kitchen garden and community precinct." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $200,000 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Belgrave South Primary School" + ], + "field_latitude": ["-37.93119813"], + "field_latitude_longitude_value": ["-37.93119813,145.3579203"], + "field_latitude_value": ["-37.93119813"], + "field_longitude": ["145.3579203"], + "field_longitude_value": ["145.3579203"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3160"], + "field_project_code": ["01-3551"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["175 Colby Dr"], + "field_suburb": ["Belgrave South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20200], + "status": [true], + "title": ["Belgrave South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["593510b1-c1cf-44b6-a665-6e0c83b71cb5"] + }, + "sort": ["Belgrave South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20419:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bell-park-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished indoor classrooms, teaching spaces and reception area to better meet student needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $374,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bell Park North Primary School" + ], + "field_latitude": ["-38.106708"], + "field_latitude_longitude_value": ["-38.106708,144.3378109"], + "field_latitude_value": ["-38.106708"], + "field_longitude": ["144.3378109"], + "field_longitude_value": ["144.3378109"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["01-4962"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["16\u201326 Barton St"], + "field_suburb": ["Bell Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20419], + "status": [true], + "title": ["Bell Park North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eb45aed3-6153-4b75-8589-56d70e1951fc"] + }, + "sort": ["Bell Park North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22660:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bell-post-hill-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We partnered with Bell Post Hill Kindergarten to redevelop the playground to give the 3 and 4-year-olds an even better place to play and learn." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bell Post Hill Kindergarten" + ], + "field_latitude": ["-38.10038718"], + "field_latitude_longitude_value": ["-38.10038718,144.3275485"], + "field_latitude_value": ["-38.10038718"], + "field_longitude": ["144.3275485"], + "field_longitude_value": ["144.3275485"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["15-334"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["58 Ernest St"], + "field_suburb": ["Bell Post Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22660], + "status": [true], + "title": ["Bell Post Hill Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d8243a74-8991-45af-a018-c9b906abf12c"] + }, + "sort": ["Bell Post Hill Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20286:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bell-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to modernise the school, and will complete the next stage of the school's master plan which includes building a new gymnasium community hub. The hub will house a competition-grade basketball and netball facility, as well as a canteen and music performance space.", + "We upgraded and modernised facilities at Bell Primary School, helping the needs of the growing school.\u200b\u200b The project included a major upgrade and extensions to the underutilised library & library mezzanine spaces. This delivered a new senior school learning hub that is better connected to the existing first floor learning spaces. The project also included a major upgrade to student and staff amenities and improved accessibility\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $7.172 million.", + "In the 2017\u201318 State Budget Update, $2 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bell Primary School" + ], + "field_latitude": ["-37.741649627685547", "-37.747559"], + "field_latitude_longitude_value": [ + "-37.741649627685547,145.00907897949219" + ], + "field_latitude_value": ["-37.741649627685547"], + "field_longitude": ["145.00907897949219", "144.990463"], + "field_longitude_value": ["145.00907897949219"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["D1-01-4309", "01-4309"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q4 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["78A Oakover Rd"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20286], + "status": [true], + "title": ["Bell Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aa9cf201-6e45-4945-805b-0d7f8f169d23"] + }, + "sort": ["Bell Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20384:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bellaire-primary-school"], + "changed": ["2023-10-23T09:07:28+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including building a new learning centre and refurbishing Block B. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $7.64 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bellaire Primary School" + ], + "field_latitude": ["-38.166557312011719"], + "field_latitude_longitude_value": [ + "-38.166557312011719,144.31504821777344" + ], + "field_latitude_value": ["-38.166557312011719"], + "field_longitude": ["144.31504821777344"], + "field_longitude_value": ["144.31504821777344"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["01-4873"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["59-71 Larcombe Street"], + "field_suburb": ["Highton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20384], + "status": [true], + "title": ["Bellaire Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4e83ba26-83f0-44c8-97cd-c225f0ad5d0a"] + }, + "sort": ["Bellaire Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20846:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bellarine-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new VCE centre at the Drysdale campus. It includes new seminar rooms, a student lounge and an administration space.", + "\u200b\u200b\u200b\u200b\u200b\u200bBy combining\u00a0all funding allocations, we have modernised and refurbished buildings at the Drysdale and Ocean Grove campuses of Bellarine Secondary College.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $892,500. In 2020, the school received $8.03 million.", + "In the 2017\u201318 State Budget $102,182 was allocated for planned maintenance. In 2016-17 $1.18 million was allocated. In 2015-16 $1.1 million was allocated, then a further $146,000 for maintenance." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Planned Maintenance Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bellarine Secondary College" + ], + "field_latitude": ["-38.18796", "-38.18823"], + "field_latitude_longitude_value": ["-38.18796,144.55597"], + "field_latitude_value": ["-38.18796"], + "field_longitude": ["144.55597", "144.55799"], + "field_longitude_value": ["144.55597"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3222"], + "field_project_code": ["D1-01-8250", "01-8250"], + "field_project_title": [ + "Upgrade and Modernisation - VCE Centre", + "Upgrade and Modernisation, Planned Maintenance Program" + ], + "field_q_complete": ["Q2 2022", "Q2 2018"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Peninsula Dr"], + "field_suburb": ["Drysdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20846], + "status": [true], + "title": ["Bellarine Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["490cb6fd-6127-487d-a57c-c137d4c7d594"] + }, + "sort": ["Bellarine Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20173:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bellbrae-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We modernised Bellbrae Primary with a competition-grade gym, open learning spaces and new science, technology, engineering and maths facilities. We also made improvements to the school oval.", + "\u200b\u200bWe funded this project, delivered by the water authority, to provide the school with permanent sewer and town water connections.", + "We refurbished the amenities block\u00a0at Bellbrae Primary School.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2019\u201320 State Budget, the school received $9.1 million.", + "In 2020, the school received $2.38 million for these works.", + "In the 2017-18 State Budget, $754,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bellbrae Primary School" + ], + "field_latitude": ["-38.33364403", "-38.33369", "-38.333691"], + "field_latitude_longitude_value": ["-38.33364403,144.2630037"], + "field_latitude_value": ["-38.33364403"], + "field_longitude": ["144.2630037", "144.26286", "144.262863"], + "field_longitude_value": ["144.2630037"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3228"], + "field_project_code": ["d3-319", "D1-01-319", "D2-01-319", "01-319"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "Upgrade and Modernisation - gym, learning spaces, science, technology, engineering and maths facilities", + "Upgrade and Modernisation - water and sewerage works", + "Upgrade and Modernisation - amenities block" + ], + "field_q_complete": ["Q1 2024", "Q1 2023", "Q2 2022", "Q3 2019"], + "field_start_date": ["Q4 2022", "Q2 2019"], + "field_status_name": ["Design", "Complete", "Complete", "Complete"], + "field_street_address": ["50 School Rd"], + "field_suburb": ["Bellbrae"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20173], + "status": [true], + "title": ["Bellbrae Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["74433edd-a05b-46e7-b7f3-d781e1eab444"] + }, + "sort": ["Bellbrae Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25462:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bellbridge-early-years-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We are making the outdoor playground more inclusive for children of all abilities. This will allow more sensory and exploratory play, giving children a diverse range of experiences that help their learning and development." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $188,995 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bellbridge Early Years Learning Centre" + ], + "field_latitude": ["-36.09927209"], + "field_latitude_longitude_value": ["-36.09927209,147.0628549"], + "field_latitude_value": ["-36.09927209"], + "field_longitude": ["147.0628549"], + "field_longitude_value": ["147.0628549"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3691"], + "field_project_code": ["15-1268"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["22 Craig Dr"], + "field_suburb": ["Bellbridge"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25462], + "status": [true], + "title": ["Bellbridge Early Years Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["dacb9562-5332-443d-acc4-8ccc57fc1774"] + }, + "sort": ["Bellbridge Early Years Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21225:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belle-vue-park-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the nappy-change facilities and refreshing the wall and floor finishes.", + "We delivered a more accessible outdoor play space for the children at the kindergarten. We improved the overall quality of the outdoor area to enhance the indoor-outdoor flow and enable the kindergarten to be used to its full capacity." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $370,000 was allocated to this project.", + "In the 2020\u201321 Building Blocks Improvement Grant $269,606 was allocated to the project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Belle Vue Park Kindergarten." + ], + "field_latitude": ["-37.7014869", "-37.7019962128938"], + "field_latitude_longitude_value": ["-37.7014869,144.9429921"], + "field_latitude_value": ["-37.7014869"], + "field_longitude": ["144.9429921", "144.946982845314"], + "field_longitude_value": ["144.9429921"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["D1-15-197", "15-197"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2022", "Q1 2022"], + "field_start_date": ["Q3 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Morell St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21225], + "status": [true], + "title": ["Belle Vue Park Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2b448f16-c068-4158-84d0-aa8d8bef48de"] + }, + "sort": ["Belle Vue Park Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20623:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belle-vue-park-primary-school"], + "changed": ["2023-12-20T10:06:18+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an indoor inclusive learning space, including upgraded environment and sensory space.", + "We refurbished the student toilet block. This has improved amenity, cleanliness and hygiene. This work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $180,000", + "In the 2022-23 State Budget the project received $492,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Belle Vue Park Primary School" + ], + "field_latitude": ["-37.7023499584891", "-37.701198"], + "field_latitude_longitude_value": [ + "-37.7023499584891,144.950148197036" + ], + "field_latitude_value": ["-37.7023499584891"], + "field_longitude": ["144.950148197036", "144.943937"], + "field_longitude_value": ["144.950148197036"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["01-5453", "D1-01-5453"], + "field_project_title": [ + "Minor Capital Works Fund - inclusive learning space", + "Minor Capital Works Fund - student toilets" + ], + "field_q_complete": ["Q1 2024", "Q4 2023"], + "field_start_date": ["Q2 2021", "Q2 2022"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Morell Street"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20623], + "status": [true], + "title": ["Belle Vue Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d0e393d0-7f17-4b86-b638-a02e5176de72"] + }, + "sort": ["Belle Vue Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34247:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bellevue-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping the City of Boroondara plan to redevelop Bellevue Kindergarten. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Bellevue Kindergarten" + ], + "field_latitude": ["-37.788096"], + "field_latitude_longitude_value": ["-37.788096,145.074219"], + "field_latitude_value": ["-37.788096"], + "field_longitude": ["145.074219"], + "field_longitude_value": ["145.074219"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3104"], + "field_project_code": ["15-248"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["49 Bulleen Road"], + "field_suburb": ["Balwyn North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34247], + "status": [true], + "title": ["Bellevue Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["0ea46a7e-e9d2-405d-ba2f-6e90d55bc050"] + }, + "sort": ["Bellevue Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21355:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bellfield-community-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build the Bellfield Community Hub. Among its other services, the hub provides: 2 kindergarten rooms with a large outdoor play area 2 maternal and child health rooms a social enterprise cafe a big community garden. The hub is an environmentally sustainable building. It brings together the services Banyule City Council offers for babies, children, families and older adults." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $2 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bellfield Community Hub." + ], + "field_latitude": ["-37.752986907958984"], + "field_latitude_longitude_value": [ + "-37.752986907958984,145.03834533691406" + ], + "field_latitude_value": ["-37.752986907958984"], + "field_longitude": ["145.03834533691406"], + "field_longitude_value": ["145.03834533691406"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3081"], + "field_project_code": ["15-BCH"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centres" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Daphne Cr"], + "field_suburb": ["Bellfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21355], + "status": [true], + "title": ["Bellfield Community Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["917a92b0-9242-4797-b65b-e6c50d9e3e4e"] + }, + "sort": ["Bellfield Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20764:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belmont-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We completed the first stage of modernising Belmont High School. Stage one works include: creating a new performing arts facility with a flexible 290-seat theatre space, bio-box and adjoining music and drama rooms a new entry foyer, toilets, canteen and covered eating area with caf\u00e9 style kiosk new change rooms for the gymnasium upper level multi-purpose teaching space with access to an outdoor learning deck new staff planning space, staff shower and change facilities internal painting of the art and technology wing. This project was a finalist in the\u00a02019 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2016\u201317 State Budget, $5.24 million has been allocated to the school." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Belmont High School" + ], + "field_latitude": ["-38.1756699"], + "field_latitude_longitude_value": ["-38.1756699,144.33161"], + "field_latitude_value": ["-38.1756699"], + "field_longitude": ["144.33161"], + "field_longitude_value": ["144.33161"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Belmont High School upgrade - virtual tour" + ], + "field_postcode": ["3216"], + "field_project_code": ["D1-01-7585", "01-7585"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q1 2019"], + "field_start_date": ["Q2 2023", "Q4 2017"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Rotherham St"], + "field_suburb": ["Belmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20764], + "status": [true], + "title": ["Belmont High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["df589739-9a41-40da-afc5-f5c402c5eda7"] + }, + "sort": ["Belmont High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20112:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belmont-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school install outdoor covered areas in the central hub." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $57,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Belmont Primary School." + ], + "field_latitude": ["-38.1707058"], + "field_latitude_longitude_value": ["-38.1707058,144.342052"], + "field_latitude_value": ["-38.1707058"], + "field_longitude": ["144.342052"], + "field_longitude_value": ["144.342052"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["01-26"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["51 Mt Pleasant Rd"], + "field_suburb": ["Belmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20112], + "status": [true], + "title": ["Belmont Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e92fa2a6-ef18-46ca-8cbc-779a6bf6a6e7"] + }, + "sort": ["Belmont Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20315:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belmore-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are upgrading and modernising this school, including Block A. We're also building a new library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $9.677 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Belmore School" + ], + "field_latitude": ["-37.804321"], + "field_latitude_longitude_value": ["-37.804321,145.08116"], + "field_latitude_value": ["-37.804321"], + "field_longitude": ["145.08116"], + "field_longitude_value": ["145.08116"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3103"], + "field_project_code": ["01-4675"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["49 Stroud St"], + "field_suburb": ["Balwyn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20315], + "status": [true], + "title": ["Belmore School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c5d3f9ff-01e0-485d-b9b0-cf450f71d8e9"] + }, + "sort": ["Belmore School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20395:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belvedere-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school's\u00a0facilities, including refurbishing and extending the main classroom wing to provide four additional classrooms\u00a0and associated\u00a0outdoor learning spaces.\u00a0 We also\u00a0demolished two toilet blocks and removed asbestos from the school. \u00a0", + "We\u00a0replaced\u00a0an old relocatable with a new relocatable classroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $1.4 million was allocated to the school. In the 2016\u201317 State Budget, $45,000 was allocated to the school in School Pride and Sports Funding.", + "In the 2020 Minor Capital Works Fund, the school was allocated $461,478." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Belvedere Park Primary School" + ], + "field_latitude": ["-38.110371", "-38.1097163"], + "field_latitude_longitude_value": ["-38.110371,145.146637"], + "field_latitude_value": ["-38.110371"], + "field_longitude": ["145.146637", "145.1468127"], + "field_longitude_value": ["145.146637"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["01-4902", "D1-01-4902"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2020", "Q2 2021"], + "field_start_date": ["Q2 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["30 Belvedere Rd"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20395], + "status": [true], + "title": ["Belvedere Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1292fe4c-ac0d-4cec-a592-5424552c49f1"] + }, + "sort": ["Belvedere Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20528:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/belvoir-wodonga-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. These will replace relocatable buildings.", + "We helped build\u00a0an inclusive playground that has sporting, sensory and calming spaces with wheelchair access. The project included\u00a0synthetic turf and rubber softfall, an open area for ball games, a shaded seating area, outdoor musical instruments and a quiet zone." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $4.032 million.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Belvoir Wodonga Special Developmental School" + ], + "field_latitude": ["-36.123209", "-36.123209"], + "field_latitude_longitude_value": ["-36.123209,146.854535"], + "field_latitude_value": ["-36.123209"], + "field_longitude": ["146.854535", "146.854535"], + "field_longitude_value": ["146.854535"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["D1-01-5222", "01-5222"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2019"], + "field_start_date": ["Q2 2022", "Q4 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["54 Gayview Dr"], + "field_suburb": ["West Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20528], + "status": [true], + "title": ["Belvoir Wodonga Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6088e3e0-df7f-497b-82ac-70507ec5bcbf"] + }, + "sort": ["Belvoir Wodonga Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21388:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Bembit-Bag-rook-Community-Centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build a new Integrated Family Centre in Tarneit North. This new centre will provide the future local community with access to high quality kindergarten, maternal and child health and other family services. It will be a welcoming and safe environment for families, young children and parents." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $2.5 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bembit Bag-rook Community Centre." + ], + "field_latitude": ["-37.825448591940614"], + "field_latitude_longitude_value": [ + "-37.825448591940614,144.6809042703781" + ], + "field_latitude_value": ["-37.825448591940614"], + "field_longitude": ["144.6809042703781"], + "field_longitude_value": ["144.6809042703781"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-TNIFC"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["61 Polly Pde"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21388], + "status": [true], + "title": ["Bembit Bag-rook Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ff935ca-c409-40e8-a50e-7120abb17e4a"] + }, + "sort": ["Bembit Bag-rook Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20862:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Bemin-Secondary-College"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new secondary school in Truganina. The school, delivered as a junior and senior campus, will open day one of Term 1 in 2024 and help the growing local population get a great education close to home.The junior campus will be able to enrol up to 600 junior students when the first stage of the school is complete and will be located at 30 Everton Road.\u00a0Warreen Primary School\u00a0and\u00a0kindergarten\u00a0will also be located at the same site.The senior campus will be able to enrol up to 800 senior students when the first stage of the school is complete and will be located at 805 Morris Road.In its first year of operation, Bemin Secondary College will open to Year 7 (junior campus) and Year 10 (senior campus) students only, and progress by year level thereafter. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au.Subscribe to our mailing list for updatesEnrolments are openThe school is now taking enrolments for Year 7 and Year 10 students for 2024.\u00a0For Year 7 enrolment queries, please email bemin.sc.everton@education.vic.gov.au. For Year 10 enrolment queries, please email bemin.sc.morris@education.vic.gov.au.\u00a0Learn more about the Year 6-7 placement process." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction.\u00a0In the 2022\u201323 State Budget, this school received $41.178 million for the next stage of construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Bemin Secondary College" + ], + "field_latitude": ["-37.827391"], + "field_latitude_longitude_value": ["-37.827391,144.708145"], + "field_latitude_value": ["-37.827391"], + "field_longitude": ["144.708145"], + "field_longitude_value": ["144.708145"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/TruganinaNorthSSSC_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Bemin Secondary College was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Bemin\u00a0(pronounced bee-min ) is a Bunurong word meaning ringtail possum. We\u00a0used\u00a0Truganina North Secondary School\u00a0as an interim name\u00a0while the school was being planned and designed.", + "Joanne Camozzato has been appointed as principal of the new school. Joanne has worked extensively in education in Victoria over 25 years. She was appointed as the foundation Middle school Principal at Mernda Central College and then as the foundation Principal of Edgars Creek Secondary College in 2018. Joanne\u2019s experience is in the areas of student wellbeing and engagement, as well as teaching and learning.", + "When the junior campus (years 7\u20139) opens it will include: an administration and library building 2 learning neighbourhoods an arts and technology building a science and technology building a community hub car park hard courts outdoor play spaces. When the senior campus (years 10\u201312) opens it will include: administration building a library a learning neighbourhood technology and science buildings a community hub car parks hard courts outdoor play spaces. Students will have great modern learning areas with air conditioning and heating. We have designed each campus to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Bunurong Land Council Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding." + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_paragraph_body": [ + "Truganina North Secondary School (interim name) - Introducing Joanne Camozzato", + "Bemin Secondary College - junior campus image galleries", + "Bemin Secondary College - senior campus image galleries" + ], + "field_postcode": ["3029"], + "field_project_code": ["01-8396"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20862], + "status": [true], + "title": ["Bemin Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b80e58a4-6adf-4045-b7df-c7ad5ae8be0f"] + }, + "sort": ["Bemin Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20976:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/benalla-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new food technology classrooms, staff and junior school buildings, as well as a canteen.", + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We transformed the school\u2019s outdated\u00a0facilities with a new Science, Technology, Engineering, Arts and Maths (STEAM) building and science block. The new building and grounds have been imagined as the new life of the school, revitalising the campus and introducing the early stages of the proposed school 'heart'. The facilities include\u00a0a library, science hub, arts and graphics hub, and maker space.", + "We \u200brelocated\u00a0the new senior learning school \u2013 named after Sir Weary Dunlop \u2013\u00a0to the Faithfull Street campus alongside the Trade Centre, named after long-serving college staff member Rex Wills. Buildings on the Avon Street campus that were no longer fit for purpose\u00a0were\u00a0demolished. \u00a0\u00a0", + "We built a socially inclusive outdoor area that includes a playground specifically built to support the needs of all students in years 5 to 9.\u00a0 This is set\u00a0in a sensory garden which allows for slow and reflective play, and include hammocks, c\u200bubbies, visual art and sound play. Raised garden beds help define smaller spaces for discovery, and be used to grow plants for touch, taste and smell.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $14.28 million.", + "In the 2023-24 State Budget the project received $495,541 from the Minor Capital Works Fund.", + "In the 2019\u201320 State Budget, the school received $12.064 million.", + "In the 2014-15 and 2016-17 State Budgets, the school was funded a total $8.5 million.", + "In 2017, the school received $200,000 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Benalla P-12 College." + ], + "field_latitude": [ + "-36.553372", + "-36.553372", + "-36.55259", + "-36.55259", + "-36.55259" + ], + "field_latitude_longitude_value": ["-36.553372,145.963847"], + "field_latitude_value": ["-36.553372"], + "field_longitude": [ + "145.963847", + "145.963847", + "145.96607", + "145.96607", + "145.96607" + ], + "field_longitude_value": ["145.963847"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "The building and ground have been imagined as the new life of the school, revitalising the campus and introducing the early stages of the proposed school heart. Benalla (benalta) - Daung Wurrung: big waterhole or crossing place Design Principles: Centric, radiating planning Journey, flow, levels Floating roof, active ground Connection to nature", + "The design Narrative draws from the local context, presenting two overarching ideas: architecture which reflects regional forms, and an environment which acknowledges the local Indigenous community and the origins of the name \u2018Benalla\u2019. The established form, function, and relationships consider water and nature as social connector or gathering place. Inspired by the notion of ebbs and flows of water to create fluid circulation throughout the building, key functions radiate off a central space that has the ability to support many STEAM-related activities.", + "Outdoor Learning: Extended eaves and shaded outdoor learning spaces providing valuable protection from the weather and quality social and learning spaces. Natural ventilation and light: High level operable windows provide natural ventilation and top light within the space. Acoustic ceilings: Absorptive materials create a comfortable acoustic environment and support multiple activities in an open environment. External platform: A raised platform provides a social connection space between the STEAM building and the existing Block C classroom building. Once the full master plan is complete the raised platform will address the school heart and act as a focus space for external school assemblies and performances Bio-swale: An embedded landscape feature to capture and filter water on-site. Provides a strong landscape identity and creates a learning tool for students. Indoor\u2013outdoor connection: Benches extend indoor to outside to expand the external learning experience. Strong connections are provided through glazing and openings. Expressed structure: The structure is expressed internally, embedding the learning experience in the building itself. The environment tells a story and can be used as a teaching tool- creating engaging spaces and showcasing innovation. Collaboration circle: Tiered seating allows group presentations and discussion. When not programmed the space is an extension of the library and supports informal learning and reading. Green wall: Once Block C is partially demolished a new wall will cap the remaining building. It is envisioned that this wall will act as a framework for climbing vegetation providing a green background to the newly formed open space", + "Modern Library experience: A multifunctional learning space which caters to a variety of different teaching modes. The library is open and accessible, extending its use out of school hours and inviting students to explore and engage. Book stacks are mobile to allow library to be reconfigured to accommodate informal gatherings and events. Collaboration space: The heart of STEAM learning \u2013 the collaboration zone will provide opportunities for students to work together as a class or in small groups. The space has been designed to maximise natural light and ventilation and provide a flexible, adaptable space to allow a broad range of activities. Seamless movement: Internal collaboration spaces flown effortlessly between indoor and outdoor learning experiences. Maker Space: A unique space emphasizing the function of STEAM learning with a variety of digital tools. The space integrates ideation, fabrication and presentation.", + "Library The library has been envisioned as a multifunction learning space which caters to a variety of different teaching modes including collaborative learning, group and individual study. Bookstacks are on lockable castors that allow the central library area to be reconfigured for school and community events. An enclosed presentation space with tiered carpet seating allows groups to come together for storytelling and media displays. Integrated glass cabinets and pinboards maximise opportunity for display. Rammed earth feature columns provide the space with warmth and texture and reference the materiality of the Broken River bed. Science Hub The science hub provides three flexible labs supported by a prep room. Lab services have been located around the perimeter of the room in conjunction with reconfigurable tables that provide a flexible central teaching space. A covered outdoor learning area at one end of the science hub provides a direct external learning connection. Operable windows open up to the outdoors and a dual sided bench allows a seamless transition. Arts and graphics hub The art and graphics hub accommodate a graphics room, a wet art space with kiln for ceramics and a 2D art space with provision for textiles. Visibility in and out of the classrooms is promoted via glazed windows and walls. Sliding windows open up to an outdoor learning area with a dual sided bench extending the range of learning activities. The adjacent circulation space has been envisioned as a gallery space with ample provision for display. Maker space The glue that binds all the classrooms together, the maker space allows for the cross over of disciplines. Designed as a flexible area it has access to equipment, tools and art supplies in the adjacent equipment room. Furniture is flexible to cater to different group sizes, activities and projects. The maker space is located in the centre of the building with high visibility to put learning on display. The ICT and media space has computers located around the perimeter of the room allowing the central space to be flexible. It is intended that ICT can occur in this room as well as in the maker space with the use of mobile iPads." + ], + "field_paragraph_accordion_name": [ + "Introduction", + "Concept and narrative", + "Characteristics", + "Functional relationships", + "Areas" + ], + "field_paragraph_body": ["Building design"], + "field_postcode": ["3672"], + "field_project_code": [ + "D3-01-8915", + "D4-01-8915", + "D2-01-8915", + "D1-01-8915", + "01-8915" + ], + "field_project_title": [ + "Upgrade and Modernisation \u2013 Next Stage", + "Minor Capital Works Fund", + "Upgrade and Modernisation - New STEAM Building", + "Upgrade and Modernisation - Campus Relocation", + "Inclusive Schools Fund" + ], + "field_q_complete": [ + "Q2 2025", + "Q4 2025", + "Q1 2023", + "Q2 2019", + "Q1 2019" + ], + "field_start_date": ["Q2 2022", "Q4 2023", "Q2 2019"], + "field_status_name": [ + "Design", + "Planning", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["20 Faithfull Street"], + "field_suburb": ["Benalla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20976], + "status": [true], + "title": ["Benalla P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["abe960ee-2f3f-49db-a5ec-efd9e66de81f"] + }, + "sort": ["Benalla P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21465:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bendigo-education-plan"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Bendigo Education Plan. Work on the plan began in 2005 to re-energise secondary education in the area. The government extended the plan in 2018 to connect all stages of education. This connects: schools other education providers local government local business. We are working with them to create high-quality education pathways for the Bendigo community from birth through to higher education, training, and employment. For more information on learning programs and partnerships this plan is delivering, please visit the Department of Education. This is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to others across the state, please visit the VSBA education plans page. For all other information and queries contact education.plans@edumail.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Bendigo Education Plan" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["EP-Be"], + "field_project_title": ["Education Plan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21465], + "status": [true], + "title": ["Bendigo Education Plan"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c609e9d2-b0bf-4488-b2d3-2ff0715fbc63"] + }, + "sort": ["Bendigo Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20765:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bendigo-senior-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building on the upgrade completed in 2018 with further modernisation of the school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most. As part of this project we will refurbish general purpose classrooms and deliver heritage conservation works to Block G, upgrade the student services area, and refurbish the trade training centre and new courtyard. We will also upgrade toilet facilities. This school is part of the Bendigo Education Plan, involving schools working with government, business and other education providers to transform local education.", + "The final stage of the college's performing arts centre, Ulumbarra Theatre has recently been completed.\u00a0A further $2.8 million was committed in the 2016-17 State Budget to cover remaining costs on the Ulumbarra Theatre project. The\u00a0Ulumbarra Theatre\u200b was developed through\u200b collaboration between the college, the local council and the architect\u200b. It is housed in a former gaol on the college grounds. The 1000 seat 4-star theatre has dance, drama, music and hospitality spaces, and serves both the college and the surrounding community. The college surrounds the gaol, hosting 1,800 Year 11 and 12 students.\u00a0 The project recently won an Association for Learning Environments award for Best Renovation/Modernisation. Following the completion of the Ulumbarra theatre, we have completed a $6.2 million upgrade. Relocatable buildings were removed, existing buildings refurbished and maintenance works undertaken. The project saw\u00a0the\u00a0Alexander Wing block refurbished with a new library, VCAL centre and learning areas for psychology, humanities and health. The upgrade was also a nominated finalist for the 2018 Victorian School Design Awards\u200b.\u00a0\u00a0\u00a0\u00a0\u00a0 \u200b \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In the 2016\u201317 State Budget, $2.8 million has been allocated to the school. In the 2015\u201316 State Budget, $6.2 million was allocated to the school" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bendigo Senior Secondary College" + ], + "field_latitude": ["-36.755634307861328", "-36.7658538818359"], + "field_latitude_longitude_value": [ + "-36.755634307861328,144.27581787109375" + ], + "field_latitude_value": ["-36.755634307861328"], + "field_longitude": ["144.27581787109375", "144.293441772461"], + "field_longitude_value": ["144.27581787109375"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["D1-01-7595", "01-7595"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q2 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["40 Gaol Rd"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20765], + "status": [true], + "title": ["Bendigo Senior Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["adcd4f74-2199-4ad8-b70e-d4af4ed5401e"] + }, + "sort": ["Bendigo Senior Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20793:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bendigo-south-east-7-10-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's stadium toilet and change rooms to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We replaced the stadium floor." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $499,897 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $472,125." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bendigo South East 7\u201310 Secondary College." + ], + "field_latitude": ["-36.775789", "-36.7734715"], + "field_latitude_longitude_value": ["-36.775789,144.297592"], + "field_latitude_value": ["-36.775789"], + "field_longitude": ["144.297592", "144.291073"], + "field_longitude_value": ["144.297592"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["D1-01-7837", "01-7837"], + "field_project_title": [ + "Minor Capital Works Fund \u2014 stadium toilet and change rooms", + "Minor Capital Works Fund \u2014 stadium floor" + ], + "field_q_complete": ["Q4 2023", "Q2 2023"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Ellis St"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20793], + "status": [true], + "title": ["Bendigo South East 7\u201310 Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["67db456c-8405-41e8-b607-6c3f529d0174"] + }, + "sort": ["Bendigo South East 7–10 Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20569:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bendigo-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces.", + "We are developing an outdoor health and physical education hub.", + "We built a sensory space and accessible playground (including unrestricted access for students with vision impairments) offering\u00a0a range of movement experiences (e.g. climbing, bouncing, rocking, running and crawling) and opportunities for sensory exploration." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $8.874 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $303,125.", + "In 2018, $171,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bendigo Special Developmental School." + ], + "field_latitude": ["-36.795866", "-36.7960331", "-36.795866"], + "field_latitude_longitude_value": ["-36.795866,144.240152"], + "field_latitude_value": ["-36.795866"], + "field_longitude": ["144.240152", "144.2400778", "144.240152"], + "field_longitude_value": ["144.240152"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3555"], + "field_project_code": ["D2-01-5298", "D1-01-5298", "01-5298"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q2 2025", "Q2 2020"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q4 2018"], + "field_status_name": ["Design", "Design", "Complete"], + "field_street_address": ["26-32 Lockwood Rd"], + "field_suburb": ["Kangaroo Flat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20569], + "status": [true], + "title": ["Bendigo Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2d52de1c-c63b-4059-80b9-ba399192784b"] + }, + "sort": ["Bendigo Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21487:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bendigo-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Secondary school students from the Bendigo area now have access to cutting-edge learning at the Tech School, hosted by La Trobe University. The school is a high-tech learning environment. Its innovative education programs link with local industry to deliver real world learning. Students from 14 partner schools in Bendigo will access the school throughout the year for specialised programs. The school emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future.\u200b \u200b \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Bendigo Tech School." + ], + "field_latitude": ["-36.76724"], + "field_latitude_longitude_value": ["-36.76724,144.30613"], + "field_latitude_value": ["-36.76724"], + "field_longitude": ["144.30613"], + "field_longitude_value": ["144.30613"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3552"], + "field_project_code": ["TS-Be"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "La Trobe University, Bendigo Campus, Edwards Rd" + ], + "field_suburb": ["Flora Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21487], + "status": [true], + "title": ["Bendigo Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d3915039-4756-48a1-ba86-131843b6c972"] + }, + "sort": ["Bendigo Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21411:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/bendigo-and-district-aboriginal-cooperative-kindergarten-djimbaya" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Bendigo and District Aboriginal Corporation (BDAC) developed a property in Prouses Rd, Bendigo to cater for the future growth of BDAC and the community it serves.\u00a0 The Health and Community Centre precinct houses all of the services provided by BDAC in one location to ensure that the local Aboriginal community receives comprehensive and holistic services. Previously, services were located in three sites in and around Bendigo. The precinct includes a new kindergarten, djimbaya, which offers sessional 3 and 4-year-old kindergarten for local children. This centre was previously known as\u00a0Prouses Road Development." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bendigo and District Aboriginal Cooperative Kindergarten" + ], + "field_latitude": ["-36.72869"], + "field_latitude_longitude_value": ["-36.72869,144.27856"], + "field_latitude_value": ["-36.72869"], + "field_longitude": ["144.27856"], + "field_longitude_value": ["144.27856"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["ELC-25"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["119 Prouses Rd"], + "field_suburb": ["Bendigo North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21411], + "status": [true], + "title": [ + "Bendigo and District Aboriginal Cooperative Kindergarten (djimbaya)" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4dc3fa12-47fa-476b-a49c-89c8747981c2"] + }, + "sort": [ + "Bendigo and District Aboriginal Cooperative Kindergarten (djimbaya)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21427:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bentleigh-early-child-education-cooperative"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the building and outdoor play areas at this kindergarten. It will gain a larger verandah to create spaces for indoor/outdoor play and new flooring in the teaching and learning areas, the laundry and staff room. We will also install a new fence and carry out minor roof repairs.", + "\u200bThe cooperative\u00a0is upgrading its facilities. The upgrade will increase capacity to deliver 3 and 4-year-old kindergarten. The project will also include redesigning the outdoor spaces to allow more accessibility and an increase in nature-based play areas for children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $500,00.00 was allocated to the project.", + "As part of the 2019\u201320 Children's Facilities Capital Program $663,252 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bentleigh Early Child Education Cooperative." + ], + "field_latitude": ["-37.922534"], + "field_latitude_longitude_value": ["-37.922534,145.039269"], + "field_latitude_value": ["-37.922534"], + "field_longitude": ["145.039269"], + "field_longitude_value": ["145.039269"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["d1-ELC-BECEC", "ELC-BECEC"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q2 2024", "Q4 2023"], + "field_start_date": ["Q4 2022", "Q4 2019"], + "field_status_name": ["Planning", "Construction"], + "field_street_address": ["134 Brewer Rd"], + "field_suburb": ["Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21427], + "status": [true], + "title": ["Bentleigh Early Child Education Cooperative"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0a94f5de-03ee-4600-8be6-0f61875102fb"] + }, + "sort": ["Bentleigh Early Child Education Cooperative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21338:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bentleigh-east-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The kindergarten\u00a0expanded\u00a0the size of its\u00a0playroom to increase the number of kindergarten places on offer. They also expanded\u00a0their office space to accommodate additional staff and\u00a0built\u00a0an additional children's toilet and a disabled toilet." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bentleigh East Kindergarten." + ], + "field_latitude": ["-37.91811"], + "field_latitude_longitude_value": ["-37.91811,145.06009"], + "field_latitude_value": ["-37.91811"], + "field_longitude": ["145.06009"], + "field_longitude_value": ["145.06009"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["15-882"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["202 East Boundary Rd"], + "field_suburb": ["Bentleigh South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21338], + "status": [true], + "title": ["Bentleigh East Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0f26cb28-42ef-4852-9c1e-e6d8fa783517"] + }, + "sort": ["Bentleigh East Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20747:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bentleigh-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build a new performing arts centre.", + "We built a new Da Vinci Centre at the school. The new centre\u00a0houses science, technology, engineering, arts, and mathematics (STEAM) facilities. We provided additional basketball facilities, with a new competition-grade,\u00a0two-court stadium. Other improvements completed\u00a0included moving relocatable buildings,\u00a0demolishing others no longer fit for purpose, constructing a new car park and landscaping.\u200b This project, designed by Haskell was a finalist in the 2019\u00a0Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $50,000 for planning. In the 2022\u201323 State Budget, this school received $12.716 million. A further $551,820 was allocated in 2022.", + "In the 2015\u201316 State Budget, $9.6 million was allocated to the school. Through the School Pride and Sports Fund the school was allocated $3.968 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bentleigh Secondary College" + ], + "field_latitude": ["-37.927357", "-37.927212"], + "field_latitude_longitude_value": ["-37.927357,145.059798"], + "field_latitude_value": ["-37.927357"], + "field_longitude": ["145.059798", "145.059433"], + "field_longitude_value": ["145.059798"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["D1-01-7255", "01-7255"], + "field_project_title": [ + "Upgrade and Modernisation \u2013 performing arts centre", + "Upgrade and Modernisation \u2013 Da Vinci Centre" + ], + "field_q_complete": ["Q1 2024", "Q3 2019"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Vivien St"], + "field_suburb": ["Bentleigh East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20747], + "status": [true], + "title": ["Bentleigh Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["48f07d55-b44c-44e8-a258-6a447fa000b7"] + }, + "sort": ["Bentleigh Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21342:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bentleigh-west-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bGlen Eira City Council upgraded both Brady Road Kindergarten and Bentleigh West Kindergarten.\u00a0Bentleigh West Kindergarten: 21 Patterson Road, Bentleigh 3204 Brady Road Kindergarten: 84 Brady Road, East Bentleigh 3165." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2014\u201315, $225,000 was allocated to the kindergartens through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bentleigh West Kindergarten" + ], + "field_latitude": ["-37.92419"], + "field_latitude_longitude_value": ["-37.92419,145.03113"], + "field_latitude_value": ["-37.92419"], + "field_longitude": ["145.03113"], + "field_longitude_value": ["145.03113"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["15-896"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["21 Patterson Rd"], + "field_suburb": ["Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21342], + "status": [true], + "title": ["Bentleigh West Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["788c6051-35c6-48b6-a86c-5de06d3bf03f"] + }, + "sort": ["Bentleigh West Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20290:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bentleigh-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at Bentleigh West Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $450,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bentleigh West Primary School" + ], + "field_latitude": ["-37.919700"], + "field_latitude_longitude_value": ["-37.919700,145.026700"], + "field_latitude_value": ["-37.919700"], + "field_longitude": ["145.026700"], + "field_longitude_value": ["145.026700"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["01-4318"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["23 Brewer Rd"], + "field_suburb": ["Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20290], + "status": [true], + "title": ["Bentleigh West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b30b09f3-e98a-4c73-ad4b-141802c25eb2"] + }, + "sort": ["Bentleigh West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20570:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/berwick-fields-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe built an ECO-cubby formed from two shipping containers,\u00a0the\u00a0centrepiece of the school's sustainability and environmental education programs.\u200b The learning and play space was designed by the school's students with the help of professional architects.", + "We\u00a0built a science play area that\u00a0enables students to engage in sensory activities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $251,000 was allocated to the school. In the 2015\u201316 State Budget, $100,000 was allocated to the school.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "School Improvement Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Berwick Fields Primary School" + ], + "field_latitude": ["-38.04927", "-38.04927"], + "field_latitude_longitude_value": ["-38.04927,145.3338"], + "field_latitude_value": ["-38.04927"], + "field_longitude": ["145.3338", "145.3338"], + "field_longitude_value": ["145.3338"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["01-5305", "D1-01-5305"], + "field_project_title": [ + "School Improvement Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2018", "Q2 2021"], + "field_start_date": ["Q1 2018", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["35 Gwendoline Dr"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20570], + "status": [true], + "title": ["Berwick Fields Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6a318f3c-41c5-4643-b437-50bf0ae295d0"] + }, + "sort": ["Berwick Fields Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20766:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/berwick-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's Block B toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We\u00a0upgraded\u00a0and modernised\u00a0Berwick Secondary College, including constructing\u00a0a new health and\u00a0wellbeing hub at the school. The building includes spaces for\u00a0consultation, multi-purpose uses and quiet reflection, as well as\u00a0communal cooking facilities\u00a0\u2013 all\u00a0focused on re-engaging students with education. It also\u00a0has\u00a0a new sick bay, nurses office, GP consulting room, store and accessible amenities. The new facilities\u00a0can\u00a0be used by various community partners, creating a hub of support for wellbeing, mental health and domestic violence education in the Casey area.", + "We funded the Wominjeka 'Welcome' Centre. It is a centrally-located life skills precinct that it is accessible for the whole school community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $498,347 from the Minor Capital Works Fund.", + "In the 2018\u201319 State Budget $1.3 million was allocated to the school.", + "In Round 2 of the Inclusive Schools Fund, $195,100 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Berwick Secondary College" + ], + "field_latitude": ["-38.031398", "-38.031170", "-38.031178"], + "field_latitude_longitude_value": ["-38.031398,145.365438"], + "field_latitude_value": ["-38.031398"], + "field_longitude": ["145.365438", "145.364578", "145.363403"], + "field_longitude_value": ["145.365438"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Berwick Secondary College | Health and Wellbeing Centre \u2013 construction update" + ], + "field_postcode": ["3806"], + "field_project_code": ["D2-01-7603", "D1-01-7603", "01-7603"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund, Planned Maintenance Program" + ], + "field_q_complete": ["Q4 2025", "Q1 2021", "Q1 2018"], + "field_start_date": ["Q4 2023", "Q2 2018"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["Manuka Rd"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20766], + "status": [true], + "title": ["Berwick Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["694e6605-9c52-484a-8da0-752296a2a661"] + }, + "sort": ["Berwick Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33030:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bethal-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We will be upgrading this school to give students better learning opportunities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $10.5 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bethal Primary School" + ], + "field_latitude": ["-37.659196"], + "field_latitude_longitude_value": ["-37.659196,144.917819"], + "field_latitude_value": ["-37.659196"], + "field_longitude": ["144.917819"], + "field_longitude_value": ["144.917819"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3048"], + "field_project_code": ["01-5186"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["26-52 Eldorado Crescent"], + "field_suburb": ["Meadow Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33030], + "status": [true], + "title": ["Bethal Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["297d3e1c-b81a-47d3-8818-2ad9c88d0953"] + }, + "sort": ["Bethal Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21302:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bethal-primary-school-kindergarten"], + "changed": ["2023-11-15T14:34:53+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Bethal Primary School Kindergarten. This project has improved the quality of the learning environment and created additional kindergarten places." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $1,022,917 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bethal Primary School Kindergarten" + ], + "field_latitude": ["-37.651020050048828"], + "field_latitude_longitude_value": [ + "-37.651020050048828,144.91876220703125" + ], + "field_latitude_value": ["-37.651020050048828"], + "field_longitude": ["144.91876220703125"], + "field_longitude_value": ["144.91876220703125"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3048"], + "field_project_code": ["15-5316"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["26-52 Eldorado Cr"], + "field_suburb": ["Meadow Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21302], + "status": [true], + "title": ["Bethal Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["33ff323d-c3d6-4f13-889e-7b79ae2b0fb0"] + }, + "sort": ["Bethal Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20600:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beverford-district-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the playground, including installing new shade sails and play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $222,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Beverford District Primary School." + ], + "field_latitude": ["-35.2326577"], + "field_latitude_longitude_value": ["-35.2326577,143.4790355"], + "field_latitude_value": ["-35.2326577"], + "field_longitude": ["143.4790355"], + "field_longitude_value": ["143.4790355"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3590"], + "field_project_code": ["01-5407"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["20 School Rd"], + "field_suburb": ["Beverford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20600], + "status": [true], + "title": ["Beverford District Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["265941c7-0407-4937-9471-55806f26b957"] + }, + "sort": ["Beverford District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20529:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/beveridge-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0built\u00a0a\u00a0new campus for Beveridge Primary School.\u00a0 The campus includes learning spaces, a performing arts and physical education building, and administration areas.\u00a0\u200b Mandalay Community Centre and Maternal Health Centre is located near this campus of Beveridge Primary School, helping local\u00a0children make\u00a0a smooth transition from pre-school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017-18 State Budget allocated funding to buy land in this area for a new school campus. The school received an additional $19.7 million in the 2018-19 State Budget for construction. In the 2019-20 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School Campus"], + "field_landing_page_summary": [ + "Learn more about the build of Beveridge Primary School" + ], + "field_latitude": ["-37.469355"], + "field_latitude_longitude_value": ["-37.469355,144.956593"], + "field_latitude_value": ["-37.469355"], + "field_longitude": ["144.956593"], + "field_longitude_value": ["144.956593"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3753"], + "field_project_code": ["01-5223"], + "field_project_title": ["New School Campus"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["30 Ambrosia Way"], + "field_suburb": ["Beveridge"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20529], + "status": [true], + "title": ["Beveridge Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6d360813-241d-41e8-99f9-b03b934fe3ca"] + }, + "sort": ["Beveridge Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21318:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bialik-college-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped upgrade Bialik College Early Learning Centre. We provided new seating and restored a mural to its original condition. We made environmental improvements and built a sensory and rain garden. The garden helps flood mitigation and supports environmental sustainability." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $300,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bialik College Early Learning Centre" + ], + "field_latitude": ["-37.831977844238281"], + "field_latitude_longitude_value": [ + "-37.831977844238281,145.04981994628906" + ], + "field_latitude_value": ["-37.831977844238281"], + "field_longitude": ["145.04981994628906"], + "field_longitude_value": ["145.04981994628906"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3123"], + "field_project_code": ["15-613"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["407 Tooronga Rd"], + "field_suburb": ["Hawthorn East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21318], + "status": [true], + "title": ["Bialik College Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["53cfd56b-fe91-4fb2-9334-4fd38c987d51"] + }, + "sort": ["Bialik College Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20010:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/big-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0and modernised\u00a0facilities at the school. We\u00a0built a multi-purpose hall and equipment room,\u00a02 adjoining\u00a0new classrooms, as well as\u00a0a new kitchenette, office and toilets.\u200b\u200b", + "We upgraded the student toilets to improve cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2 million was allocated to the school.", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Big Hill Primary School." + ], + "field_latitude": ["-36.830391", "-36.830721"], + "field_latitude_longitude_value": ["-36.830391,144.242126"], + "field_latitude_value": ["-36.830391"], + "field_longitude": ["144.242126", "144.2409597"], + "field_longitude_value": ["144.242126"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3555"], + "field_project_code": ["01-1551", "D1-01-1551"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2020", "Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["5644 Calder Hwy"], + "field_suburb": ["Big Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20010], + "status": [true], + "title": ["Big Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fd430a36-d78b-46ab-9688-347d780aa22f"] + }, + "sort": ["Big Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20515:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/billanook-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most.", + "\u200bWe redeveloped the front entry of the school. We created a covered area at the front entry to provide a sun safe area for play and a shelter for students as they wait for buses or to be picked up after school.\u00a0\u00a0 \u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $7.811 million.", + "In 2017\u201318 the school received $429,000 in Round 3 of the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Billanook Primary School" + ], + "field_latitude": ["-37.813739776611328", "-37.8256"], + "field_latitude_longitude_value": [ + "-37.813739776611328,145.34373474121094" + ], + "field_latitude_value": ["-37.813739776611328"], + "field_longitude": ["145.34373474121094", "145.33822"], + "field_longitude_value": ["145.34373474121094"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3765"], + "field_project_code": ["D1-01-5193", "01-5193"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q3 2024", "Q4 2018"], + "field_start_date": ["Q4 2020", "Q2 2017"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["270 Sheffield Rd"], + "field_suburb": ["Montrose"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20515], + "status": [true], + "title": ["Billanook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a4c75533-11c1-4763-872c-55ecf3531501"] + }, + "sort": ["Billanook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21471:en", + "_score": null, + "_ignored": [ + "field_paragraph_body.keyword", + "field_paragraph_accordion_body.keyword" + ], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/billy-button-childrens-centre"], + "changed": ["2023-08-03T13:57:20+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build the new Integrated Early Learning Centre (IELC)\u00a0on the previous Hyde Street Kindergarten site next to Footscray City Primary School.We partnered with the Maribyrnong City Council to provide a kindergarten for three and four-year-olds, long day care, and maternal and child health services.It will further support the growing demand for early years and education services in the area.You can find out more information on the centre\u2019s timetables, fees and other FAQs through their website." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2017\u201318 State Budget, the Government announced $10 million to build early childhood facilities at new government primary schools. This included Footscray Learning Precinct\u2019s new Integrated Early Learning Centre." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Billy Button Children\u2019s Centre." + ], + "field_latitude": ["-37.80531906"], + "field_latitude_longitude_value": ["-37.80531906,144.9004481"], + "field_latitude_value": ["-37.80531906"], + "field_longitude": ["144.9004481"], + "field_longitude_value": ["144.9004481"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Billy Button Children's Centre opened to families Term 2 2022 and was officially opened by the Minister for Early Childhood on 16 June 2022. There was a delay in opening the new kindergarten, in part related to\u00a0COVID-19\u00a0impacts.\u00a0However, service provider Sparkways were still able to offer\u00a0kindergarten for three\u00a0and four-year-olds from the beginning of Term 1 2022. Sessional kindergarten children commenced their kindergarten in rooms\u00a0within Footscray City Primary School, next\u00a0to the centre.\u00a0While at the school, the kindergarten children had their own dedicated classrooms and play area and access to other schoolyard areas during school class time. This was planned in advance and done under strict supervision.", + "\u200b\u200b\u200bSparkways\u00a0will manage the new three\u00a0and four-year-old kindergarten program and the centre's long day childcare.\u00a0They have been appointed through an expression of interest process, taking into account community feedback. Families who have secured a place in the kindergarten program will be contacted to find out their preferred sessions and complete the enrolment process. Sparkways\u00a0will host an online information session for families, where they will discuss the orientation process. They will contact enrolled families when further details are available. Visit the\u00a0 Sparkways website \u00a0to learn more about their collaborative and evidence-based approach to early learning.", + "Integrated early learning centres (IELCs) are key hubs for the community. They bring together a range of professional services to deliver education, care, health and support\u00a0to children and their families. IELCs can provide a focal point for new communities in growth areas, and improve access, quality\u00a0and integration of early childhood services in established metropolitan and regional areas.", + "Locating a kindergarten at,\u00a0or next to, a primary school\u00a0provides many benefits for Victorian families, including: easier access to\u00a0early years programs\u00a0 simpler and more convenient\u00a0drop-off times\u00a0 a smoother transition\u00a0to school for some children. Having an IELC adjacent to the school helps create a hub that benefits the whole community.\u00a0", + "The centre\u00a0will offer: kindergarten for three and four-year-olds\u00a0 long day childcare large outdoor play and education spaces qualified, experienced, supportive and friendly staff maternal child health services.", + "For information on registering your child at this Centre, please visit the\u00a0 Maribyrnong City Council\u00a0website . You can also directly contact them with queries at\u00a0 earlyyearscentralregister@maribyrnong.vic.gov.au .", + "From the 2017\u201318 State Budget, the Government announced $10 million to build early childhood facilities at new government primary schools. This included Footscray Learning Precinct\u2019s new Integrated Early Learning Centre (IELC). The new centre will be built next to Footscray City Primary School, on the previous Hyde Street Kindergarten site, and is set to open from Term 1 2022. The opening will coincide with the launch of a universally funded three-year-old kindergarten program in the Footscray area. The Victorian Government is investing almost $5 billion over 10 years to ensure three-year-old children have the facilities they need to attend kindergarten and meet the increasing place demand for four-year-olds. What is the Footscray Learning Precinct? The Victorian Government is transforming local education through the Footscray Learning Precinct. Planning for the Precinct commenced in 2015 and the vision is for it to become a world-class education precinct, providing excellence in teaching and learning in Melbourne\u2019s inner west, and opportunities across all stages of learning from early childhood to university The Footscray Learning Precinct includes Footscray City Primary, Footscray Primary and Footscray High School. Victoria University and Maribyrnong City Council are key partners in the project. What is an integrated early learning centre (IELC)? Integrated early learning centres (IELCs) are key hubs for the community and bring together a range of professional services to deliver education, care, health and support services to children and their families. IELCs can provide a focal point for new communities in growth areas and improve the accessibility, quality, and integration of early childhood services in established metropolitan and regional areas.", + "What is being built? The Victorian School Building Authority (VSBA), in partnership with Maribyrnong City Council, will build a new IELC to support the growing demand for early years education and care services in the area. Demolition and removal works throughout early 2021 have prepared the site for construction. \u00a0 What will the new IELC provide? The facility will offer: Three-year-old kindergarten Four-year-old kindergarten Long day childcare Large outdoor play and education spaces Qualified, experienced, supportive, and friendly staff Maternal Child Health (MCH) services Why was the site next to the primary school chosen? Building a co-located centre on or next to a primary school site provides many benefits for Victorian families, including making: early years programs easier to access drop-off times simpler and more convenient a smooth transition from early years\u2019 programs to school. Having an IELC adjacent to the school helps create a hub that benefits the whole community. Each new early year\u2019s facility will be built to ensure the best possible education outcomes for all children.", + "You can access the above information in a designed factsheet." + ], + "field_paragraph_accordion_name": [ + "Temporary location for Term 1 2022", + "Appointed service provider", + "What is an IELC?", + "Located next to the primary school", + "What will the centre provide?", + "Enrolments", + "Background to the centre", + "Site and features", + "Designed factsheet" + ], + "field_paragraph_body": [ + "This IELC is part of the Footscray Learning Precinct, which champions excellence in learning and teaching in Melbourne's inner west at all stages of education. The precinct builds on the richness and diversity of the community and provides opportunities for learning in new ways. Learn more about how\u00a0 the precinct \u00a0is transforming local education for Footscray. Learn how\u00a0 education plans \u00a0offer extra support for students to reach their full potential." + ], + "field_postcode": ["3011"], + "field_project_code": ["FLP-ELC"], + "field_project_title": ["Education Plan"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["10a Hyde Street"], + "field_suburb": ["Seddon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21471], + "status": [true], + "title": ["Billy Button Children\u2019s Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4a0e4b40-c754-46a3-93ff-af3c0d477cf2"] + }, + "sort": ["Billy Button Children’s Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20443:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bimbadeen-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built\u00a0a new learning hub and an arts and music building, as well as repositioning relocatables and undertaking landscaping works.\u200b \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $5.3 million was allocated to the school. In 2016\u201317, $188,000 was allocated to the school in Planned Maintenance Funding. In the 2015\u201316 State Budget, $500,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bimbadeen Heights Primary School" + ], + "field_latitude": ["-37.774349"], + "field_latitude_longitude_value": ["-37.774349,145.322174"], + "field_latitude_value": ["-37.774349"], + "field_longitude": ["145.322174"], + "field_longitude_value": ["145.322174"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3138"], + "field_project_code": ["01-5011"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["118 Hayrick Lane"], + "field_suburb": ["Mooroolbark"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20443], + "status": [true], + "title": ["Bimbadeen Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1d1ba7de-47da-4867-aed8-1d8645740e9d"] + }, + "sort": ["Bimbadeen Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24968:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Binap-Primary-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Brookfield. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 575 students, including approximately 50 places for young people with specialist needs, when the school is complete.Binap Primary School is a supported inclusion school, which is a mainstream school with additional professional capabilities and facilities designed to cater for a higher than usual proportion of students with disability. Students with disability will receive enhanced support and high-quality, evidence-based educational provision alongside mainstream students to the greatest extent possible in a safe, accessible and supportive environment.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school is open for enrolments for students in Prep to Grade 6.\u00a0The 2024 school zones are available at\u00a0findmyschool.vic.gov.au.\u00a0For enrolment queries, please email binap.ps@education.vic.gov.au.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Binap Primary School" + ], + "field_latitude": ["-37.70152"], + "field_latitude_longitude_value": ["-37.70152,144.545256"], + "field_latitude_value": ["-37.70152"], + "field_longitude": ["144.545256"], + "field_longitude_value": ["144.545256"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/BrookfieldPS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Binap Primary\u00a0School was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Binap\u00a0(pronounced\u00a0 bin-narp ) is a\u00a0Woi-wurrung word of the Wurundjeri people\u00a0meaning manna gum. We\u00a0used\u00a0Brookfield Primary School\u00a0as an\u00a0interim name while the school was being planned and designed.", + "Jean Bentley has been appointed as principal of the new school. Jean has worked in the government education system for over 25 years. Most recently she was the principal of Albion North Primary School. Jean feels privileged to be the foundation principal of Binap Primary\u00a0School and looks forward to building connections with the community. She's excited to create a safe and inclusive learning environment for all students.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 3 learning neighbourhoods a community hub with indoor multi-use court, canteen and arts/music spaces hard courts a sports field a carpark. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Supported inclusion schools are mainstream schools designed to support a higher number of students with a disability than typical mainstream schools. We equip the schools so all students can learn and play together in the same areas as much as possible. This gives students with a disability greater access to mainstream education and allows some to attend a school closer to home. Supported inclusion schools support and enhance learning with additional features such as: acoustics and lighting designed for the needs of students with particular disabilities wider corridors where wheelchairs can pass fitness rooms for physical education and therapy enhanced accessible toilets fitted with hoists smaller multipurpose spaces suitable for consultations, 1:1, or small group learning additional provisions for student pick-up/drop-off covered walkways kitchen facilities for students with special dietary or medication requirements.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the\u00a0Wurundjeri Woi-wurrung Cultural Heritage Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "How are supported inclusion schools different to other schools?", + "Design consultation" + ], + "field_paragraph_body": [ + "Brookfield Primary School (interim name) - Introducing Jean Bentley \u00a0", + "Brookfield Primary School (interim name) - construction update \u00a0" + ], + "field_postcode": ["3338"], + "field_project_code": ["01-5600"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["91 Grand Scenic Dr"], + "field_suburb": ["Brookfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24968], + "status": [true], + "title": ["Binap Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ef0db797-8fdb-4b82-9ebc-23d056aec5e1"] + }, + "sort": ["Binap Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21398:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/birchip-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Buloke Shire Council built a new\u00a0early learning centre within the Birchip P-12 School grounds.\u00a0 \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$460,500 was allocated to the project through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Birchip Children's Centre" + ], + "field_latitude": ["-35.98339"], + "field_latitude_longitude_value": ["-35.98339,142.90942"], + "field_latitude_value": ["-35.98339"], + "field_longitude": ["142.90942"], + "field_longitude_value": ["142.90942"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3483"], + "field_project_code": ["ELC-13"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["43 Campbell St"], + "field_suburb": ["Birchip"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21398], + "status": [true], + "title": ["Birchip Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d2774adc-2327-403a-9c66-f425ce329bb1"] + }, + "sort": ["Birchip Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27783:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/birchip-p-12-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Birchip P-12 School" + ], + "field_latitude": ["-35.98438249"], + "field_latitude_longitude_value": ["-35.98438249,142.9099365"], + "field_latitude_value": ["-35.98438249"], + "field_longitude": ["142.9099365"], + "field_longitude_value": ["142.9099365"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3483"], + "field_project_code": ["01-8832"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["43-47 Campbell St"], + "field_suburb": ["Birchip"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27783], + "status": [true], + "title": ["Birchip P-12 School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["cccfb7f7-2ec0-4d8c-a4aa-be409064efd5"] + }, + "sort": ["Birchip P-12 School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20461:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/birmingham-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space. It includes new paving, fixed seating and landscaping.", + "We transformed\u00a0an under-utilised grassy patch into an alternative play space with tree-tunnels, a forest, wetlands and boardwalks." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $178,000.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Birmingham Primary School" + ], + "field_latitude": ["-37.7788701", "-37.77958096"], + "field_latitude_longitude_value": ["-37.7788701,145.3686163"], + "field_latitude_value": ["-37.7788701"], + "field_longitude": ["145.3686163", "145.3685172"], + "field_longitude_value": ["145.3686163"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3796"], + "field_project_code": ["D1-01-5048", "01-5048"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Inclusive Schools Fund - Round 4" + ], + "field_q_complete": ["Q2 2023", "Q1 2020"], + "field_start_date": ["Q2 2021", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["43-49 Francis Cr"], + "field_suburb": ["Mount Evelyn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20461], + "status": [true], + "title": ["Birmingham Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7d43ef86-8738-4dcc-98ab-42edabfe676f"] + }, + "sort": ["Birmingham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21374:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/birnbial-family-centre"], + "changed": ["2023-12-06T15:29:54+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Wyndham City Council to build Birnbial Family Centre. The integrated children's centre offers:3 kindergarten roomsmaternal child health and allied health services.The community can access 99 kindergarten places at the kinder. It will help local children access two years of high-quality funded kindergarten.The centre was previously known as Manor Lakes North Integrated Family Centre.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Grants Capacity Building stream, the children's centre received $3,000,000" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Birnbial Family Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3024"], + "field_project_code": ["15-MLNI"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Integrated Children's Centre" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_suburb": ["Manor Lakes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21374], + "status": [true], + "title": ["Birnbial Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1789889d-3f92-4e25-aa4e-dfcafba10aa6"] + }, + "sort": ["Birnbial Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20433:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/birralee-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Birralee Primary School, replacing relocatable buildings with a new permanent building. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $4.163 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Birralee Primary School" + ], + "field_latitude": ["-37.7930289500149"], + "field_latitude_longitude_value": [ + "-37.7930289500149,145.11319205026" + ], + "field_latitude_value": ["-37.7930289500149"], + "field_longitude": ["145.11319205026"], + "field_longitude_value": ["145.11319205026"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3108"], + "field_project_code": ["01-4991"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Heyington Av"], + "field_suburb": ["Doncaster"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20433], + "status": [true], + "title": ["Birralee Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["81db7bea-a6df-45ca-92fc-9fe81e5eaac0"] + }, + "sort": ["Birralee Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20745:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/birregurra-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.212 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Birregurra Primary School" + ], + "field_latitude": ["-38.3405474"], + "field_latitude_longitude_value": ["-38.3405474,143.7866696"], + "field_latitude_value": ["-38.3405474"], + "field_longitude": ["143.7866696"], + "field_longitude_value": ["143.7866696"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3242"], + "field_project_code": ["01-723"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["58 Beal St"], + "field_suburb": ["Birregurra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20745], + "status": [true], + "title": ["Birregurra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["884cdd1b-1422-4952-b7ec-2a365d60cf2f"] + }, + "sort": ["Birregurra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25008:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bittern-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $3.02 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bittern Primary School" + ], + "field_latitude": ["-38.339857"], + "field_latitude_longitude_value": ["-38.339857,145.171678"], + "field_latitude_value": ["-38.339857"], + "field_longitude": ["145.171678"], + "field_longitude_value": ["145.171678"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3918"], + "field_project_code": ["01-3933"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Portsmouth Road"], + "field_suburb": ["Bittern"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25008], + "status": [true], + "title": ["Bittern Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c79329f2-c44a-45b9-b794-787d7599cbbe"] + }, + "sort": ["Bittern Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21356:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/black-forrest-road-south-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are partnering with Wyndham City Council to build an integrated children's centre which will offer three kindergarten rooms as well as maternal child health and allied health services. The kindergarten will provide 99 kindergarten places to the community and help local children access two years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Grants Capacity Building stream, the children's centre received $2,500,000" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Black Forest Road South Community Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["15-BFRS"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Integrated Children's Centre" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["86 Charlwood Prom"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21356], + "status": [true], + "title": ["Black Forest Road South Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["47020c18-24b6-4523-be24-f530bf30cacd"] + }, + "sort": ["Black Forest Road South Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20064:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/black-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded toilets across the school to improve condition, hygiene and privacy of existing facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Black Hill Primary School" + ], + "field_latitude": ["-37.5498593"], + "field_latitude_longitude_value": ["-37.5498593,143.8698182"], + "field_latitude_value": ["-37.5498593"], + "field_longitude": ["143.8698182"], + "field_longitude_value": ["143.8698182"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-2043"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["601 Chisholm St"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20064], + "status": [true], + "title": ["Black Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0578bcdc-3351-4d50-b53c-8bb6c0c4caf8"] + }, + "sort": ["Black Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25457:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/black-rock-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment and landscaping to make it more inclusive for children of all abilities and to better reflect the surrounding natural environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Inclusion Grants, $186,713 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Black Rock Preschool" + ], + "field_latitude": ["-37.97206908"], + "field_latitude_longitude_value": ["-37.97206908,145.016385"], + "field_latitude_value": ["-37.97206908"], + "field_longitude": ["145.016385"], + "field_longitude_value": ["145.016385"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["15-1123"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["55 Bluff Rd"], + "field_suburb": ["Black Rock"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25457], + "status": [true], + "title": ["Black Rock Preschool"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["475d8ba1-4691-4fbb-8b4f-3fd792ae0a8e"] + }, + "sort": ["Black Rock Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20208:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/black-rock-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space, including decking, paving and a seating area in a landscaped environment.", + "We are building new toilets and change rooms next to the school's existing gymnasium and oval. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In the 2022\u201323 State Budget the project received $498,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Black Rock Primary School." + ], + "field_latitude": ["-37.9699115", "-37.969869"], + "field_latitude_longitude_value": ["-37.9699115,145.0216897"], + "field_latitude_value": ["-37.9699115"], + "field_longitude": ["145.0216897", "145.021651"], + "field_longitude_value": ["145.0216897"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["01-3631", "D1-01-3631"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2022", "Q3 2024"], + "field_start_date": ["Q2 2021", "Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["71 Arkaringa Cr"], + "field_suburb": ["Black Rock"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20208], + "status": [true], + "title": ["Black Rock Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6cab7f88-811b-4520-97e3-c8bcad948da7"] + }, + "sort": ["Black Rock Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20767:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/blackburn-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded and modernised the school, including building a STEM (science, technology, engineering and maths) centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1 million in planning funding. In the 2020\u201321 State Budget, the school received $9 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Blackburn High School." + ], + "field_latitude": ["-37.811047"], + "field_latitude_longitude_value": ["-37.811047,145.150284"], + "field_latitude_value": ["-37.811047"], + "field_longitude": ["145.150284"], + "field_longitude_value": ["145.150284"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["01-7610"], + "field_project_title": ["Upgrade and modernisation"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Springfield Rd"], + "field_suburb": ["Blackburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20767], + "status": [true], + "title": ["Blackburn High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2afed32f-921c-476f-8d73-7a2d50ac18cf"] + }, + "sort": ["Blackburn High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20381:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/blackburn-lake-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor nature play space to encourage play within a natural environment.", + "We built a multi-sensory playground with accessible equipment, such as swinging steps, a balance beam, chimes and a shade structure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $321,125.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Blackburn Lake Primary School" + ], + "field_latitude": ["-37.8300153500247", "-37.827601"], + "field_latitude_longitude_value": [ + "-37.8300153500247,145.165794250395" + ], + "field_latitude_value": ["-37.8300153500247"], + "field_longitude": ["145.165794250395", "145.166097"], + "field_longitude_value": ["145.165794250395"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["D1-01-4860", "01-4860"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q2 2020"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["12-14 Florence St"], + "field_suburb": ["Blackburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20381], + "status": [true], + "title": ["Blackburn Lake Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c9579d7b-5ded-4210-91e9-2ce1448cee9f"] + }, + "sort": ["Blackburn Lake Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20146:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/blackburn-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0replaced\u00a0the toilets with new toilet blocks.\u00a0", + "We supported the school with minor upgrades, including drainage." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $283,912.", + "From the 2019\u201320 School Pride and Sports Fund the school received $220,557." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Blackburn Primary School." + ], + "field_latitude": ["-37.8175908"], + "field_latitude_longitude_value": ["-37.8175908,145.157214"], + "field_latitude_value": ["-37.8175908"], + "field_longitude": ["145.157214"], + "field_longitude_value": ["145.157214"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["D1-01-2923", "01-2923"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2021", "Q3 2020"], + "field_start_date": ["Q4 2020", "Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["185 Surrey Road"], + "field_suburb": ["Blackburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20146], + "status": [true], + "title": ["Blackburn Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f6c242e3-37fb-44a2-b070-1666a5aa44c9"] + }, + "sort": ["Blackburn Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28658:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/blossom-park-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play and learning areas. The space is now more accessible for children of all abilities. The works included a garden zone and natural spaces. The upgrade will help inspire creativity and encourage nature-based play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $121,505.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Blossom Park Kindergarten." + ], + "field_latitude": ["-37.67046414"], + "field_latitude_longitude_value": ["-37.67046414,145.0763412"], + "field_latitude_value": ["-37.67046414"], + "field_longitude": ["145.0763412"], + "field_longitude_value": ["145.0763412"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3082"], + "field_project_code": ["15-1397"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["57 Azalea Av"], + "field_suburb": ["Mill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28658], + "status": [true], + "title": ["Blossom Park Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["44c529cd-93f3-4b84-817a-e398cf8f4859"] + }, + "sort": ["Blossom Park Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20705:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/boisdale-consolidated-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground. It includes new play equipment and soft fall surfacing.", + "We upgraded and modernised facilities, including refurbishing\u00a0classrooms and facilities that were\u00a0in poor condition. These works targeted facilities that need it most, ensuring that students can\u00a0learn in facilities that are ready for the delivery of modern education.\u00a0", + "We\u00a0built\u00a0a\u00a0junior school building which\u00a0includes\u00a0general purpose classrooms and an art room.\u00a0 \u00a0\u00a0", + "We delivered new architect-designed modular buildings that give the school new classrooms, library, staff room and toilets. Boisdale Consolidated School benefited from the Permanent Modular School Buildings Program. Our modular buildings require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and mortar structures." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In the 2018\u201319 State Budget $400,000 was allocated to the school.", + "In the 2019\u201320 State Budget, the school received $1.36 million through the Permanent Modular School Buildings Program.", + "In Round 3 of the program, the school was allocated $1,567,000." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Boisdale Consolidated School" + ], + "field_latitude": [ + "-37.8795298", + "-37.879532", + "-37.883708953857422", + "-37.881591796875" + ], + "field_latitude_longitude_value": ["-37.8795298,146.9794782"], + "field_latitude_value": ["-37.8795298"], + "field_longitude": [ + "146.9794782", + "146.979477", + "146.98823547363281", + "146.963821411133" + ], + "field_longitude_value": ["146.9794782"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3860"], + "field_project_code": [ + "D3-01-6207", + "01-6207", + "D2-01-6207", + "D1-01-6207" + ], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program - Round 4", + "Permanent Modular School Buildings Program - Round 3" + ], + "field_q_complete": ["Q3 2023", "Q1 2020", "Q2 2020", "Q2 2019"], + "field_start_date": ["Q2 2021", "Q2 2018", "Q2 2019", "Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["69 Newry Rd"], + "field_suburb": ["Boisdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20705], + "status": [true], + "title": ["Boisdale Consolidated School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["33417943-11a3-427f-b75e-302dc5e091bf"] + }, + "sort": ["Boisdale Consolidated School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19940:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bolinda-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We have upgraded and modernised facilities in poor condition.\u00a0This included maintaining and refurbishing classrooms, commn\u00a0areas, roofing and key services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $498,351 from the Minor Capital Works Fund.", + "In the 2016\u201317 State Budget, $15,000 was allocated to the school through the Planned Maintenance Funding Program. A further $90,000 was allocated in the 2017-18 State Budget for capital works." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Planned Maintenance Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bolinda Primary School." + ], + "field_latitude": ["-37.43373498", "-37.43354"], + "field_latitude_longitude_value": ["-37.43373498,144.7454039"], + "field_latitude_value": ["-37.43373498"], + "field_longitude": ["144.7454039", "144.74555"], + "field_longitude_value": ["144.7454039"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3432"], + "field_project_code": ["D1-01-1070", "01-1070"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation, Planned Maintenance Program" + ], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["1 Mullalys Rd"], + "field_suburb": ["Bolinda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19940], + "status": [true], + "title": ["Bolinda Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["396267f6-487a-480a-9d81-0522652b14fa"] + }, + "sort": ["Bolinda Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19980:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bolwarra-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to upgrade the playground and install new equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $65,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bolwarra Primary School" + ], + "field_latitude": ["-38.2814426"], + "field_latitude_longitude_value": ["-38.2814426,141.6144317"], + "field_latitude_value": ["-38.2814426"], + "field_longitude": ["141.6144317"], + "field_longitude_value": ["141.6144317"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3305"], + "field_project_code": ["01-1324"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["249 Princes Hwy"], + "field_suburb": ["Bolwarra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19980], + "status": [true], + "title": ["Bolwarra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["64481b6e-c406-4a7d-991f-7312300ab34f"] + }, + "sort": ["Bolwarra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20206:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bona-vista-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the basketball courts, including building a new roof, resurfacing and multisport line marking." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $406,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bona Vista Primary School." + ], + "field_latitude": ["-38.2102967"], + "field_latitude_longitude_value": ["-38.2102967,145.9595777"], + "field_latitude_value": ["-38.2102967"], + "field_longitude": ["145.9595777"], + "field_longitude_value": ["145.9595777"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["01-3612"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["520 Bona Vista Rd"], + "field_suburb": ["Bona Vista"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20206], + "status": [true], + "title": ["Bona Vista Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b45d6988-4445-458d-9fe6-ef2d6190e14f"] + }, + "sort": ["Bona Vista Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21236:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bonbeach-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new early learning centre for Bonbeach Preschool\u00a0at Bonbeach Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $2,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bonbeach Preschool" + ], + "field_latitude": ["-38.06841"], + "field_latitude_longitude_value": ["-38.06841,145.12151"], + "field_latitude_value": ["-38.06841"], + "field_longitude": ["145.12151"], + "field_longitude_value": ["145.12151"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["15-297"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Breeze St"], + "field_suburb": ["Bonbeach"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21236], + "status": [true], + "title": ["Bonbeach Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a49b52df-d191-4ad1-bf9d-a6b61cac54ba"] + }, + "sort": ["Bonbeach Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20355:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bonbeach-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0and modernised\u00a0facilities at Bonbeach Primary School, including building a new learning centre, administration and STEM facilities and\u00a0rebuilding\u00a0pre-school facilities.", + "The school received\u00a0$70,000 from the\u00a0School Pride and Sports Fund to\u00a0roll\u00a0into an existing capital works project. This allowed\u00a0a\u00a0movable wall to be added to the\u00a0foyer of the multi-purpose hall, making the building more flexible for a variety of purposes.\u200b", + "We built\u00a0a sensory room and outdoor play area that is accessible for students of all abilities. This\u00a0includes a shade pergola, large climbing rocks, a balance beam and play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2018\u201319 State Budget allocated $6.3 million to the school.", + "$70,000 has been allocated to the school through the School Pride and Sports Fund.", + "In 2018, $183,400 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bonbeach Primary School" + ], + "field_latitude": ["-38.067638", "-38.067638"], + "field_latitude_longitude_value": ["-38.067638,145.124283"], + "field_latitude_value": ["-38.067638"], + "field_longitude": ["145.124283", "145.124283"], + "field_longitude_value": ["145.124283"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["01-4798", "D1-01-4798", "D2-01-4798"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2021", "Q3 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["29-63 Breeze St"], + "field_suburb": ["Bonbeach"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20355], + "status": [true], + "title": ["Bonbeach Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4811ff92-32c5-43db-aad2-c4323f0182ed"] + }, + "sort": ["Bonbeach Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23324:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bond-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We fixed the roof and replaced the outdoor storage space. The updated storage space is for educational equipment and materials, and can be safely accessed by staff and children. The space also includes an adult toilet." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $176,733 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bond Street Kindergarten" + ], + "field_latitude": ["-38.15624833"], + "field_latitude_longitude_value": ["-38.15624833,144.3483313"], + "field_latitude_value": ["-38.15624833"], + "field_longitude": ["144.3483313"], + "field_longitude_value": ["144.3483313"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["15-943"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["25-35 Bond St"], + "field_suburb": ["Newtown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23324], + "status": [true], + "title": ["Bond Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c2dc76ab-71e3-48d4-af66-f85a3cc938aa"] + }, + "sort": ["Bond Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19961:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/boneo-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an all-weather cover over the sports/basketball courts, providing the school with an undercover area for outdoor PE, sport and whole school assemblies." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $491,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Boneo Primary School." + ], + "field_latitude": ["-38.4110075"], + "field_latitude_longitude_value": ["-38.4110075,144.8847825"], + "field_latitude_value": ["-38.4110075"], + "field_longitude": ["144.8847825"], + "field_longitude_value": ["144.8847825"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3939"], + "field_project_code": ["01-1184"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["582 Boneo Rd"], + "field_suburb": ["Boneo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19961], + "status": [true], + "title": ["Boneo Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4a356603-4633-4aaf-8fd3-66587e033168"] + }, + "sort": ["Boneo Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21421:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bonshaw-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bThe City of Ballarat has built Bonshaw Early Learning Centre, a new integrated children's centre. The Bonshaw Early Learning Centre includes two kindergarten rooms, two maternal and child health consulting rooms, and a mulitpurpose room for playgroups\u00a0and general community use. The Sebastopol West Kindergarten, run by the Eureka Community Kindergarten Association, will also relocate to the new Bonshaw Early Learning Centre.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $1.6 million was allocated to the early learning centre through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bonshaw Early Learning Centre" + ], + "field_latitude": ["-37.60418"], + "field_latitude_longitude_value": ["-37.60418,143.82397"], + "field_latitude_value": ["-37.60418"], + "field_longitude": ["143.82397"], + "field_longitude_value": ["143.82397"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3356"], + "field_project_code": ["ELC-5"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q1 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["284 Morgan St"], + "field_suburb": ["Sebastopol"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21421], + "status": [true], + "title": ["Bonshaw Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c0c3d9eb-a46c-44ec-8311-273b586c32bb"] + }, + "sort": ["Bonshaw Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20115:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/boolarra-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have completed\u00a0maintenance works to the\u00a0BER building, main classroom wing and stormwater infrastructure.\u200b", + "We helped the\u00a0school install new shade sail structures to provide a shaded outdoor area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$235,000 was allocated to the school in the 2016-17 State Budget update.", + "In the 2020 Minor Capital Works Fund the school was allocated $73,120" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Boolarra Primary School" + ], + "field_latitude": ["-38.3788", "-38.3818230501185"], + "field_latitude_longitude_value": ["-38.3788,146.2746699"], + "field_latitude_value": ["-38.3788"], + "field_longitude": ["146.2746699", "146.269845800181"], + "field_longitude_value": ["146.2746699"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3870"], + "field_project_code": ["01-2617", "D1-01-2617"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2018", "Q4 2021"], + "field_start_date": ["Q4 2017", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Tarwin St"], + "field_suburb": ["Boolarra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20115], + "status": [true], + "title": ["Boolarra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e86293b0-fdef-484c-b373-51010ee5a1d4"] + }, + "sort": ["Boolarra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22663:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/boorai-centre-ocean-grove"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are installing an emergency messaging system to keep children, staff and families safe. In an emergency, the centre will be able to quickly communicate with the community and begin an automatic lockdown. This new technology will keep the centre community safe and informed of any unexpected concerns." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Boorai Centre Ocean Grove" + ], + "field_latitude": ["-38.25960515"], + "field_latitude_longitude_value": ["-38.25960515,144.5397576"], + "field_latitude_value": ["-38.25960515"], + "field_longitude": ["144.5397576"], + "field_longitude_value": ["144.5397576"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3226"], + "field_project_code": ["15-5270"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["4-50 Shell Rd"], + "field_suburb": ["Ocean Grove"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22663], + "status": [true], + "title": ["Boorai Centre Ocean Grove"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3aac0152-3362-4a00-8dae-823fb9f0c475"] + }, + "sort": ["Boorai Centre Ocean Grove"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21082:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/borinya-wangaratta-community-partnership"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct\u00a0new learning areas to meet the diverse needs of students in Years 7\u201310 and to refurbish administration and learning support spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Borinya Wangaratta Community Partnership." + ], + "field_latitude": ["-36.338201461113243"], + "field_latitude_longitude_value": [ + "-36.338201461113243,146.30984343140818" + ], + "field_latitude_value": ["-36.338201461113243"], + "field_longitude": ["146.30984343140818"], + "field_longitude_value": ["146.30984343140818"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["02-2063"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["30 College St"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21082], + "status": [true], + "title": ["Borinya Wangaratta Community Partnership"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["356d5090-5385-44f6-b14c-af3dae423dd3"] + }, + "sort": ["Borinya Wangaratta Community Partnership"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20420:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/boronia-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including new sensory equipment.", + "We upgraded\u00a0the two main\u00a0school buildings to create modern flexible learning environments, new student\u00a0toilets and\u00a0upgraded staff administration areas. The existing hall was\u00a0demolished and replaced with a new gymnasium\u200b with a\u00a0competition-sized netball court\u00a0and performing arts facilities. Please note, the image\u00a0on\u00a0this page does not include the gym.\u200b", + "We upgraded the two\u00a0ovals to\u00a0a synthetic surface that is\u00a0more resilient for year-round use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2017\u201318 State Budget, $1.5 million was allocated to the school. In the 2014\u201315 State Budget, the school received $849,000. In the 2015\u201316 State Budget, the school was allocated a further $5.7 million.", + "In the 2019\u201320 State Budget, the school received $1.321 million." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Boronia Heights Primary School" + ], + "field_latitude": ["-37.844571", "-37.84474", "-37.84473"], + "field_latitude_longitude_value": ["-37.844571,145.296485"], + "field_latitude_value": ["-37.844571"], + "field_longitude": ["145.296485", "145.29574", "145.29575"], + "field_longitude_value": ["145.296485"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3155"], + "field_project_code": ["D2-01-4967", "01-4967", "D1-01-4967"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation - Gym, Netball Courts, Performing Arts Facilities", + "Upgrade and Modernisation - School Oval" + ], + "field_q_complete": ["Q1 2024", "Q1 2019", "Q3 2021"], + "field_start_date": ["Q4 2021", "Q4 2017", "Q4 2020"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Landscape Dr"], + "field_suburb": ["Boronia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20420], + "status": [true], + "title": ["Boronia Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5d023482-a511-46bd-87ee-45eeb7a72802"] + }, + "sort": ["Boronia Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20974:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/boronia-k-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created\u00a0sensory areas and synthetic play spaces for use during physical education classes." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Boronia K-12 College" + ], + "field_latitude": ["-37.85862"], + "field_latitude_longitude_value": ["-37.85862,145.29187"], + "field_latitude_value": ["-37.85862"], + "field_longitude": ["145.29187"], + "field_longitude_value": ["145.29187"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3155"], + "field_project_code": ["01-8913"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["35-37 Albert Av"], + "field_suburb": ["Boronia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20974], + "status": [true], + "title": ["Boronia K-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["be47e3db-5e59-4515-80d0-577007d6efe2"] + }, + "sort": ["Boronia K-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20398:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/boronia-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school by constructing a\u00a0classroom building with\u00a0an art space, classrooms, staff work area and student and staff toilets. The new building will also\u00a0house a\u00a0multi-purpose communal student work space, which includes a library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $4.334 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Boronia West Primary School" + ], + "field_latitude": ["-37.858563"], + "field_latitude_longitude_value": ["-37.858563,145.278481"], + "field_latitude_value": ["-37.858563"], + "field_longitude": ["145.278481"], + "field_longitude_value": ["145.278481"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3155"], + "field_project_code": ["01-4908"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["25 Tormore Road"], + "field_suburb": ["Boronia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20398], + "status": [true], + "title": ["Boronia West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["533015ac-ac73-4430-8ab8-faa833688e00"] + }, + "sort": ["Boronia West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24610:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/boroondara-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-10-27T16:28:50+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Booroonda City Council plan to expand or upgrade kindergartens in Balwyn North, Kew and Ashburton. This would create more kindergarten places for local 3 and 4-year-olds. The planning gets the projects ready for construction, which depends on future funding.", + "We are helping Booroonda City Council employ someone to oversee planning and design for possible future kindergarten building projects at Auburn South Preschool, Rowen Street Kindergarten and Summerhill Park Kindergarten.This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Grant - Planning stream, $150,000 was allocated to this project.", + "In the 2021\u201322 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Planning Grant" + ], + "field_landing_page_summary": [ + "Learn more about the Boroondara City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["d2-15-BORCC", "15-BORCC"], + "field_project_title": [ + "Building Blocks Planning Grant \u2014 expand or upgrade kindergartens", + "Building Blocks Planning \u2014 future kindergarten building projects" + ], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24610], + "status": [true], + "title": [ + "Boroondara City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1235cc53-4317-4715-af41-8d81593e108d"] + }, + "sort": [ + "Boroondara City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20530:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/botanic-ridge-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a new primary school which\u00a0opened in term one, 2020. The new\u00a0school is\u00a0helping to ease\u00a0enrolment pressures for surrounding schools and\u00a0meet\u00a0the needs\u00a0of a growing population. To ensure all of our future students had the opportunity to meet their teachers and see what their new school is all about, we held orientation sessions on\u00a0Monday 2 December\u00a0and\u00a0Tuesday 10 December 2019 at the\u00a0Mayone-Bulluck Family and Community Centre. Further information on the school can be found on its official Facebook page. \u200b School name Botanic Ridge Primary School is named after the suburb where it is located. The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable. Kindergarten Botanic Ridge Primary School has an integrated family and community centre at the same site. The centre\u00a0provides room for kinder, maternal and child health services and hireable spaces.\u00a0 The kinder will be\u00a0run by the City of\u00a0Casey\u00a0Council. It\u00a0will help local\u00a0children make\u00a0a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017-18 State Budget allocated funding to buy land in this area for a new school. The school received an additional $16.5 million in funding for construction. In the 2018-19 State Budget $3 million was allocated for the early learning facility. In the 2019-20 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Botanic Ridge Primary School" + ], + "field_latitude": ["-38.150219"], + "field_latitude_longitude_value": ["-38.150219,145.2877"], + "field_latitude_value": ["-38.150219"], + "field_longitude": ["145.2877"], + "field_longitude_value": ["145.2877"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5224"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Echidna Parade"], + "field_suburb": ["Botanic Ridge"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20530], + "status": [true], + "title": ["Botanic Ridge Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d177681e-8e44-4af8-a347-52a212e4d1ff"] + }, + "sort": ["Botanic Ridge Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21473:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/botanic-ridge-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "A new kindergarten has been built at Botanic Ridge Primary School.\u00a0\u00a0 The kinder is run by the City of Casey Council. It may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 For more information visit the City of Casey website." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget $3 million was allocated for the early learning facility at Botanic Ridge Primary School." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Botanic Ridge Primary School Kindergarten" + ], + "field_latitude": ["-38.14943"], + "field_latitude_longitude_value": ["-38.14943,145.28742"], + "field_latitude_value": ["-38.14943"], + "field_longitude": ["145.28742"], + "field_longitude_value": ["145.28742"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["K-01-5224"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Echidna Parade"], + "field_suburb": ["Botanic Ridge"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21473], + "status": [true], + "title": ["Botanic Ridge Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e34b8d7d-fd87-4eb5-9365-c942e3566ce5"] + }, + "sort": ["Botanic Ridge Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20337:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bourchier-street-primary-school-shepparton"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have\u00a0built\u00a04 new general purpose learning areas with associated spaces. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.407 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bourchier Street Primary School Shepparton." + ], + "field_latitude": ["-36.365170"], + "field_latitude_longitude_value": ["-36.365170,145.412385"], + "field_latitude_value": ["-36.365170"], + "field_longitude": ["145.412385"], + "field_longitude_value": ["145.412385"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["01-4742"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Bourchier St & Balaclava Rd"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20337], + "status": [true], + "title": ["Bourchier Street Primary School Shepparton"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["36d33029-b9be-46e0-a363-dfe907eee1ad"] + }, + "sort": ["Bourchier Street Primary School Shepparton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20768:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/box-hill-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are undertaking a partial refurbishment of the existing accessible toilet and shower in the school's gymnasium to improve amenity, accessibility and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We upgraded the toilet blocks to improve amenity, cleanliness and hygiene.", + "We refurbished the Junior Science Classrooms at Box Hill High School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $115,627 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000.", + "In the 2018\u201319 State Budget $500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Box Hill High School" + ], + "field_latitude": ["-37.820003", "-37.8200708", "-37.820680"], + "field_latitude_longitude_value": ["-37.820003,145.137208"], + "field_latitude_value": ["-37.820003"], + "field_longitude": ["145.137208", "145.1375726", "145.137500"], + "field_longitude_value": ["145.137208"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3128"], + "field_project_code": ["D2-01-7635", "D1-01-7635", "01-7635"], + "field_project_title": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q3 2023", "Q4 2019"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["1180 Whitehorse Rd"], + "field_suburb": ["Box Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20768], + "status": [true], + "title": ["Box Hill High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["96326892-2ad7-48a7-b9ac-9d355d44c197"] + }, + "sort": ["Box Hill High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20330:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/box-hill-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We modernised and expanded this school. We constructed a classroom block that has eight new learning areas. We also relocated and refurbished the administration area. The project has created an extra 100 places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $422,000 in planning funding. In the 2020-21 State Budget, the school received at least $3.418 million from a pool of more than $85 million to expand seven schools in high-growth areas." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Box Hill North Primary School" + ], + "field_latitude": ["-37.805374145507812"], + "field_latitude_longitude_value": [ + "-37.805374145507812,145.12922668457031" + ], + "field_latitude_value": ["-37.805374145507812"], + "field_longitude": ["145.12922668457031"], + "field_longitude_value": ["145.12922668457031"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3129"], + "field_project_code": ["01-4717"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Elizabeth Street"], + "field_suburb": ["Box Hill North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20330], + "status": [true], + "title": ["Box Hill North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4df4ffd0-9539-4abc-a970-3f1474aaa0b9"] + }, + "sort": ["Box Hill North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23331:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brandon-park-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We have built a multi-sensory, natural discovery play space for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $194,897 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brandon Park Children's Centre" + ], + "field_latitude": ["-37.89807065"], + "field_latitude_longitude_value": ["-37.89807065,145.1651015"], + "field_latitude_value": ["-37.89807065"], + "field_longitude": ["145.1651015"], + "field_longitude_value": ["145.1651015"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["15-4110"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["659 Ferntree Gully Rd"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23331], + "status": [true], + "title": ["Brandon Park Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["18052857-c7d9-4533-a695-95cc8f41e897"] + }, + "sort": ["Brandon Park Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20453:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brandon-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school. The new facilities include a gymnasium, canteen, music room and staff rooms. The music room opens onto a gathering space to create an amphitheatre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $680,000. In 2020, the school received $6.12 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Brandon Park Primary School." + ], + "field_latitude": ["-37.91338"], + "field_latitude_longitude_value": ["-37.91338,145.17269"], + "field_latitude_value": ["-37.91338"], + "field_longitude": ["145.17269"], + "field_longitude_value": ["145.17269"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-5038"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1-5 Ninevah Cr"], + "field_suburb": ["Wheelers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20453], + "status": [true], + "title": ["Brandon Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["08aaa034-079e-4cc5-a24b-36fd7a3283e7"] + }, + "sort": ["Brandon Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20593:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/branxholme-wallacedale-community-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at the school. This\u00a0included\u00a0refurbishing\u00a0classrooms, the administration block and upgrading the toilets in the multi-purpose building. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $352,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Branxholme-Wallacedale Community School." + ], + "field_latitude": ["-37.867592"], + "field_latitude_longitude_value": ["-37.867592,141.797577"], + "field_latitude_value": ["-37.867592"], + "field_longitude": ["141.797577"], + "field_longitude_value": ["141.797577"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3302"], + "field_project_code": ["01-5377"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Monroe St"], + "field_suburb": ["Branxholme"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20593], + "status": [true], + "title": ["Branxholme-Wallacedale Community School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bb41660b-b511-4056-93a5-b280b17dbfe1"] + }, + "sort": ["Branxholme-Wallacedale Community School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20754:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brauer-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished\u00a0the administration\u00a0building (including a\u00a0new entry)\u00a0and\u00a0refurbished\u00a0E Wing and C Wing (West)." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $4.4 million has been allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Brauer Secondary College" + ], + "field_latitude": ["-38.359750"], + "field_latitude_longitude_value": ["-38.359750,142.460100"], + "field_latitude_value": ["-38.359750"], + "field_longitude": ["142.460100"], + "field_longitude_value": ["142.460100"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["01-7395"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Caramut Road"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20754], + "status": [true], + "title": ["Brauer Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["71ef7231-662b-4106-8613-7ca0cb9be93c"] + }, + "sort": ["Brauer Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22602:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brenbeal-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We expanded the room used for three-year-olds. This has created five extra kindergarten places, increasing the centre's capacity to 20. We also added an additional change table and refurbished the three-year-olds' bathroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brenbeal Children's Centre" + ], + "field_latitude": ["-37.79336831"], + "field_latitude_longitude_value": ["-37.79336831,144.8881054"], + "field_latitude_value": ["-37.79336831"], + "field_longitude": ["144.8881054"], + "field_longitude_value": ["144.8881054"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3011"], + "field_project_code": ["15-561"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["8 Rayner Street"], + "field_suburb": ["Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22602], + "status": [true], + "title": ["Brenbeal Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4739dc74-f29b-498a-a4ac-6fc2b1a2f342"] + }, + "sort": ["Brenbeal Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22627:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brentwood-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We modernised the kitchen and bathroom to provide a better work environment for staff. We also upgraded the playground to make it safer and more inclusive." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $69,098 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brentwood Kindergarten." + ], + "field_latitude": ["-37.74731786"], + "field_latitude_longitude_value": ["-37.74731786,144.9314725"], + "field_latitude_value": ["-37.74731786"], + "field_longitude": ["144.9314725"], + "field_longitude_value": ["144.9314725"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["15-307"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["36 Brentwood Av"], + "field_suburb": ["Pascoe Vale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22627], + "status": [true], + "title": ["Brentwood Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["442b23f1-bf79-4f93-a485-a736c2897e28"] + }, + "sort": ["Brentwood Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20571:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brentwood-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the\u00a0school, including replacing the Year 4 relocatable buildings with a new Year 4 learning centre and STEM (science, technology, engineering and mathematics) building.\u00a0", + "\u200b\u200b\u200b\u200bWe helped the school complete its performing arts facility.\u200b\u200b\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $3.464 million.", + "In the 2015\u201316 State Budget, $27,180 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Brentwood Park Primary School." + ], + "field_latitude": ["-38.0494792209813", "-38.04927"], + "field_latitude_longitude_value": [ + "-38.0494792209813,145.342548259598" + ], + "field_latitude_value": ["-38.0494792209813"], + "field_longitude": ["145.342548259598", "145.34225"], + "field_longitude_value": ["145.342548259598"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["D1-01-5308", "01-5308"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Bemersyde Dr"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20571], + "status": [true], + "title": ["Brentwood Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ddcfb9c1-7e1c-43ff-a942-34f036d9a52b"] + }, + "sort": ["Brentwood Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20769:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brentwood-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new VCE Centre to provide students with more modern facilities. The upgrade included: 2 classrooms, a conference room, seniors' library, staff work area, meeting room, toilets, senior kitchenette, and common areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $4.6 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Brentwood Secondary College." + ], + "field_latitude": ["-37.89751"], + "field_latitude_longitude_value": ["-37.89751,145.16866"], + "field_latitude_value": ["-37.89751"], + "field_longitude": ["145.16866"], + "field_longitude_value": ["145.16866"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-7647"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["65-71 Watsons Road"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20769], + "status": [true], + "title": ["Brentwood Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["36384e53-5154-429c-ae89-63f2e1297140"] + }, + "sort": ["Brentwood Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21330:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/briagolong-kindergarten-and-occasional-care"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded and upgraded the bathroom at Briagolong Kindergarten and Occasional Care to include a nappy change area. The bathroom is inclusive for children of all ages and abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $56,760 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Briagolong Kindergarten and Occasional Care" + ], + "field_latitude": ["-37.843559265136719"], + "field_latitude_longitude_value": [ + "-37.843559265136719,147.07267761230469" + ], + "field_latitude_value": ["-37.843559265136719"], + "field_longitude": ["147.07267761230469"], + "field_longitude_value": ["147.07267761230469"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3860"], + "field_project_code": ["15-801"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Cahill St"], + "field_suburb": ["Briagolong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21330], + "status": [true], + "title": ["Briagolong Kindergarten and Occasional Care"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["92f44b6b-da80-469a-9692-f597ee2ce831"] + }, + "sort": ["Briagolong Kindergarten and Occasional Care"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27768:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/briagolong-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Briagolong Primary School" + ], + "field_latitude": ["-37.842801"], + "field_latitude_longitude_value": ["-37.842801,147.067843"], + "field_latitude_value": ["-37.842801"], + "field_longitude": ["147.067843"], + "field_longitude_value": ["147.067843"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3860"], + "field_project_code": ["01-1117"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["2 Church St"], + "field_suburb": ["Briagolong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27768], + "status": [true], + "title": ["Briagolong Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["ebf85861-abd7-4129-b56a-db9f7c1d9f86"] + }, + "sort": ["Briagolong Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36767:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/briar-hill-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $200,700" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Briar Hill Primary School" + ], + "field_latitude": ["-37.708307"], + "field_latitude_longitude_value": ["-37.708307,145.116219"], + "field_latitude_value": ["-37.708307"], + "field_longitude": ["145.116219"], + "field_longitude_value": ["145.116219"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["01-4341"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["25 Gladstone Road"], + "field_suburb": ["Briar Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36767], + "status": [true], + "title": ["Briar Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["88960512-d96d-4464-b190-04ff143076bf"] + }, + "sort": ["Briar Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19943:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bridgewater-primary-school"], + "changed": ["2023-07-11T16:11:26+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the playground and smaller oval area on the main school grounds with synthetic turf." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $499,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bridgewater Primary School." + ], + "field_latitude": ["-36.6037348"], + "field_latitude_longitude_value": ["-36.6037348,143.9462497"], + "field_latitude_value": ["-36.6037348"], + "field_longitude": ["143.9462497"], + "field_longitude_value": ["143.9462497"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3516"], + "field_project_code": ["01-1097"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["34\u201344 Eldon St"], + "field_suburb": ["Bridgewater On Loddon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19943], + "status": [true], + "title": ["Bridgewater Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["67b0d331-c95d-4284-98b3-98a732d43430"] + }, + "sort": ["Bridgewater Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20669:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bridgewood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0Bridgewood Primary School as a new school with an integrated early learning centre. \u200b The school accommodates 475 students with a peak enrolment of up to 900 students. Bridgewood Integrated\u00a0Early Learning Centre, provides\u00a0for 109 pre-school children. We designed the school, children's centre and adjoining public reserve\u00a0to accommodate both\u00a0student and\u00a0wider school community access, and\u00a0to promote\u00a0well-being and community engagement. The school includes a full-size internal netball/basketball court and integrated sporting facilities. The early learning centre offers: kindergarten and community facilities a maternal health centre consulting rooms and wait area a community room an early childhood intervention services room an OSHC facility (after hours care) through funding from the Shared Facilities Fund\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, this project received funding to purchase land. In the 2016-17 State Budget, $13 million was allocated to this project. In 2017, the school received $530,000 in Shared Facilities Funding." + ], + "field_funding_type_name": ["New School", "Shared Facilities Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Bridgewood Primary School" + ], + "field_latitude": ["-38.07211"], + "field_latitude_longitude_value": ["-38.07211,145.42038"], + "field_latitude_value": ["-38.07211"], + "field_longitude": ["145.42038"], + "field_longitude_value": ["145.42038"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Bridgewood Primary School - Drone footage of building progress" + ], + "field_postcode": ["3809"], + "field_project_code": ["01-5563"], + "field_project_title": ["New School, Shared Facilities Fund"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["115 Bridge Road"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20669], + "status": [true], + "title": ["Bridgewood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ac66ddea-cf32-4da9-80d8-545cf2abfcfc"] + }, + "sort": ["Bridgewood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20782:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bright-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are providing a partial roof sheeting, gutter and downpipe replacement to Blocks E and H. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We built an indoor learning space, that has improved the school\u2019s library, as well as an outdoor area with a playground and sensory garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $498,361 from the Minor Capital Works Fund.", + "In 2018, $178,500 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bright P-12 College" + ], + "field_latitude": ["-36.733105", "-36.73252844"], + "field_latitude_longitude_value": ["-36.733105,146.960928"], + "field_latitude_value": ["-36.733105"], + "field_longitude": ["146.960928", "146.9618328"], + "field_longitude_value": ["146.960928"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3741"], + "field_project_code": ["D1-01-776", "01-776"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2019"], + "field_start_date": ["Q2 2022", "Q4 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["46 Bakers Gully Rd"], + "field_suburb": ["Bright"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20782], + "status": [true], + "title": ["Bright P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["691cf4c9-7365-4aa1-ba78-ae1bf63d2543"] + }, + "sort": ["Bright P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20065:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brighton-beach-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded multi-use areas, including netball/basketball courts, to provide upgraded safe, multi-functional spaces for assemblies, events and sports.", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $264,405", + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Brighton Beach Primary School" + ], + "field_latitude": ["-37.9222435", "-37.922105"], + "field_latitude_longitude_value": ["-37.9222435,144.9961975"], + "field_latitude_value": ["-37.9222435"], + "field_longitude": ["144.9961975", "144.996107"], + "field_longitude_value": ["144.9961975"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3186"], + "field_project_code": ["01-2048", "d1-2048"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q2 2022", "Q2 2024"], + "field_start_date": ["Q4 2020", "Q4 2022"], + "field_status_name": ["Complete", "Design"], + "field_street_address": ["19 Windermere Cr"], + "field_suburb": ["Brighton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20065], + "status": [true], + "title": ["Brighton Beach Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["830e6139-3772-42aa-9617-176d5a76ebd8"] + }, + "sort": ["Brighton Beach Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36772:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brighton-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $297,709" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Brighton Secondary College" + ], + "field_latitude": ["-37.920156"], + "field_latitude_longitude_value": ["-37.920156,145.019119"], + "field_latitude_value": ["-37.920156"], + "field_longitude": ["145.019119"], + "field_longitude_value": ["145.019119"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3187"], + "field_project_code": ["01-7650"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["120 Marriage Road"], + "field_suburb": ["Brighton East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36772], + "status": [true], + "title": ["Brighton Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["05a7cc07-97ec-48c9-b233-df041bed8e48"] + }, + "sort": ["Brighton Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26209:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/brimbank-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping Brimbank City Council plan a 66-place kindergarten and community centre in North Sunshine. As well as kindergarten, the new centre would offer 50 childcare places, maternal and child health offices as well as general consulting suites and a community hall. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Brimbank City Council Kindergarten Infrastructure Planning Project" + ], + "field_latitude": ["-37.78286508"], + "field_latitude_longitude_value": ["-37.78286508,144.8321649"], + "field_latitude_value": ["-37.78286508"], + "field_longitude": ["144.8321649"], + "field_longitude_value": ["144.8321649"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["15-BCC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["301 Hampshire Rd"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26209], + "status": [true], + "title": [ + "Brimbank City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["c483ff52-96f9-4227-8b2f-ddcf5f8b1e60"] + }, + "sort": [ + "Brimbank City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24974:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Brinbeal-Secondary-College"], + "changed": ["2023-09-18T14:21:13+10:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new secondary school in Tarneit. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 1,300 including approximately 100 places for young people with specialist needs, when the first stage of the school is complete.Brinbeal Secondary College is a supported inclusion school, which is a mainstream school with additional professional capabilities and facilities designed to cater for a higher than usual proportion of students with disability. Students with disability will receive enhanced support and high-quality, evidence-based educational provision alongside mainstream students to the greatest extent possible in a safe, accessible and supportive environment.Subscribe\u00a0to our mailing list for updates.Enrolments are openIn its first year of operation, Brinbeal Secondary College will open to Year 7 students only, and progress by year level thereafter. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au.\u00a0For all enrolment queries, please email brinbeal.sc@education.vic.gov.au or call 0467 630 278.Learn more about the Year 6-7 placement process." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Brinbeal Secondary College." + ], + "field_latitude": ["-37.853591"], + "field_longitude": ["\u00a0144.641979"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/RiverdaleSS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Brinbeal Secondary\u00a0College was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Brinbeal\u00a0(pronounced brin-bill ) is a Bunurong word meaning rainbow. We\u00a0used\u00a0Riverdale Secondary School\u00a0as\u00a0an interim name while the school was being planned and designed.", + "Simon Haber has been appointed as principal of the new school. Simon has been an educator in metro and regional schools for over 20 years. Most recently he was the principal at Tarneit Senior College. He is passionate about creating safe and inclusive schools that support all students to learn and achieve. As the foundation principal of Brinbeal Secondary College, \u00a0Simon will focus on student learning, wellbeing and agency.", + "When the school opens in Term 1, 2024, it will include: an administration and library building a learning neighbourhood a science and technology building hard courts a carpark. We are also building a performing arts building and community hub. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Supported inclusion schools are mainstream schools designed to support a higher number of students with a disability than typical mainstream schools. We equip the schools so all students can learn and play together in the same areas as much as possible. This gives students with a disability greater access to mainstream education and allows some to attend a school closer to home. Supported inclusion schools support and enhance learning with additional features such as: acoustics and lighting designed for the needs of students with particular disabilities wider corridors where wheelchairs can pass fitness rooms for physical education and therapy enhanced accessible toilets fitted with hoists smaller multipurpose spaces suitable for consultations, 1:1, or small group learning additional provisions for student pick-up/drop-off covered walkways kitchen facilities for students with special dietary or medication requirements.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Bunurong Land Council Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "How are supported inclusion schools different to other schools?", + "Design consultation" + ], + "field_paragraph_body": [ + "Riverdale Secondary School (interim name) - Introducing Simon Haber" + ], + "field_postcode": ["3029"], + "field_project_code": ["01-8292"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Connaught Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24974], + "status": [true], + "title": ["Brinbeal Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5a19dac3-3733-4f50-91f3-70533fde3de3"] + }, + "sort": ["Brinbeal Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33012:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/broadford-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Broadford Primary School" + ], + "field_latitude": ["-37.20257"], + "field_latitude_longitude_value": ["-37.20257,145.046301"], + "field_latitude_value": ["-37.20257"], + "field_longitude": ["145.046301"], + "field_longitude_value": ["145.046301"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3658"], + "field_project_code": ["01-1125"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["17-23 Powlett Street"], + "field_suburb": ["Broadford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33012], + "status": [true], + "title": ["Broadford Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["3dbc5485-05b9-48c8-9789-9e61021ef330"] + }, + "sort": ["Broadford Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20770:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/broadford-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the main school wing and undertook\u00a0maintenance of other\u00a0facilities.", + "We replaced\u00a0and upgraded the lighting on the\u00a0oval to enhance the existing leisure precinct. Upgrades\u00a0included a baseball facility, full sized soccer/football pitch, a junior sized oval and sports pavilion." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $4.46 million has been allocated to the school.", + "This school was allocated $121,275 from the Shared Facilities Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Broadford Secondary College." + ], + "field_latitude": ["-37.20473"], + "field_latitude_longitude_value": ["-37.20473,145.03976"], + "field_latitude_value": ["-37.20473"], + "field_longitude": ["145.03976"], + "field_longitude_value": ["145.03976"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3658"], + "field_project_code": ["01-7655", "D1-01-7655"], + "field_project_title": [ + "Upgrade and Modernisation", + "Shared Facilities Fund" + ], + "field_q_complete": ["Q1 2019", "Q1 2021"], + "field_start_date": ["Q1 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2-12 Pinniger St"], + "field_suburb": ["Broadford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20770], + "status": [true], + "title": ["Broadford Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b2ca367c-6b5d-409f-978f-ca0e67f64282"] + }, + "sort": ["Broadford Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21253:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/broadmeadows-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the appearance and functionality of Broadmeadows Preschool. We refreshed the wall and floor finishes, and upgraded\u00a0the reception area with a meeting space for families and visiting allied health and family service providers.", + "We transformed\u00a0the outdoor play space at Broadmeadows Preschool. This will improve the overall quality of the outdoor area and help address the issue of loud street noise. These works enable the Preschool to better support children with additional needs to fully participate and engage in learning through outdoor play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $244,500 was allocated to this project.", + "In the 2020\u201321 Building Blocks Improvement Grant $234,795 was allocated to the project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Broadmeadows Preschool" + ], + "field_latitude": ["-37.67961233", "-37.681850433349609"], + "field_latitude_longitude_value": ["-37.67961233,144.9286548"], + "field_latitude_value": ["-37.67961233"], + "field_longitude": ["144.9286548", "144.92840576171875"], + "field_longitude_value": ["144.9286548"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["D1-15-3486", "15-3486"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q2 2022", "Q2 2022"], + "field_start_date": ["Q3 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["62-70 Blair St"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21253], + "status": [true], + "title": ["Broadmeadows Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["803e295e-9309-4f54-9cb3-5454a04b92cb"] + }, + "sort": ["Broadmeadows Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20549:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/broadmeadows-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities.", + "We built an accessible, interactive sand and water play area that includes a range of moving and lifting elements to help students develop their motor skills." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $17.107 million.", + "In 2018, $194,200 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Broadmeadows Special Developmental School" + ], + "field_latitude": ["-37.68164744", "-37.68164744"], + "field_latitude_longitude_value": ["-37.68164744,144.914104"], + "field_latitude_value": ["-37.68164744"], + "field_longitude": ["144.914104", "144.914104"], + "field_longitude_value": ["144.914104"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["D1-01-5262", "01-5262"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2025", "Q1 2020"], + "field_start_date": ["Q2 2022", "Q4 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["29-35 Dimboola Rd"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20549], + "status": [true], + "title": ["Broadmeadows Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c7152d7b-6f75-4769-a6a2-664f409aa3ea"] + }, + "sort": ["Broadmeadows Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25365:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/broken-creek-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are relocating and constructing a new toilet block connected to the school's existing BER building. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $297,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Broken Creek Primary School" + ], + "field_latitude": ["-36.423279"], + "field_latitude_longitude_value": ["-36.423279,145.889232"], + "field_latitude_value": ["-36.423279"], + "field_longitude": ["145.889232"], + "field_longitude_value": ["145.889232"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3673"], + "field_project_code": ["01-862"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["413 Quinn Road"], + "field_suburb": ["Broken Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25365], + "status": [true], + "title": ["Broken Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["898ee44d-0139-46bb-a72d-84204a641cfa"] + }, + "sort": ["Broken Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23316:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brookfield-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play space, including new pathways, surfaces and natural materials. This gives children aged 3 to 5 a more engaging and flexible play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brookfield Children\u2019s Centre." + ], + "field_latitude": ["-37.68866026"], + "field_latitude_longitude_value": ["-37.68866026,144.564518"], + "field_latitude_value": ["-37.68866026"], + "field_longitude": ["144.564518"], + "field_longitude_value": ["144.564518"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["15-4789"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["14-16 Black Dog Dr"], + "field_suburb": ["Brookfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23316], + "status": [true], + "title": ["Brookfield Children\u2019s Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9efc1efb-89af-4bb0-9170-bdfeee56f2b4"] + }, + "sort": ["Brookfield Children’s Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21186:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brookville-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Brookville Kindergarten are upgrading one of their rooms to create a more natural and accessible learning environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $100,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brookville Kindergarten" + ], + "field_latitude": ["-37.84583"], + "field_latitude_longitude_value": ["-37.84583,145.00966"], + "field_latitude_value": ["-37.84583"], + "field_longitude": ["145.00966"], + "field_longitude_value": ["145.00966"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3142"], + "field_project_code": ["15-1037"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["53 Canterbury Rd"], + "field_suburb": ["Toorak"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21186], + "status": [true], + "title": ["Brookville Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5ce41a6f-08b8-4d55-982d-aa64810a8e5b"] + }, + "sort": ["Brookville Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23319:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brunswick-creche-and-day-nursery"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We are upgrading the Children\u2019s Room to create two separate rooms for the 3 and 4-year-olds. We will also upgrade the bathroom and toilets, the kitchen area and the staff and office area. We will also improve the shade sails in the outdoor play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $500,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brunswick Creche and Day Nursery" + ], + "field_latitude": ["-37.77200668"], + "field_latitude_longitude_value": ["-37.77200668,144.9661244"], + "field_latitude_value": ["-37.77200668"], + "field_longitude": ["144.9661244"], + "field_longitude_value": ["144.9661244"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3056"], + "field_project_code": ["15-5149"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["82 Glenlyon Rd"], + "field_suburb": ["Brunswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23319], + "status": [true], + "title": ["Brunswick Creche and Day Nursery"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7f0358c5-0473-4d88-a00e-2b1f67ccd8f0"] + }, + "sort": ["Brunswick Creche and Day Nursery"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20172:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brunswick-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the student toilet block to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $381,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Brunswick East Primary School." + ], + "field_latitude": ["-37.7652164"], + "field_latitude_longitude_value": ["-37.7652164,144.979668"], + "field_latitude_value": ["-37.7652164"], + "field_longitude": ["144.979668"], + "field_longitude_value": ["144.979668"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3057"], + "field_project_code": ["01-3179"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["195a Stewart St"], + "field_suburb": ["Brunswick East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20172], + "status": [true], + "title": ["Brunswick East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4dbb2a5a-8689-4f80-9aba-bbde149062dc"] + }, + "sort": ["Brunswick East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21282:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brunswick-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Brunswick Kindergarten upgraded\u00a0their main entrance and children's toilets,\u00a0applied\u00a0acoustic treatments to classroom spaces and flooring, and\u00a0created sensory gardens and outdoor areas for play-based learning. The upgrades have taken the kindergarten's heritage overlays into consideration." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $165,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brunswick Kindergarten" + ], + "field_latitude": ["-37.77185"], + "field_latitude_longitude_value": ["-37.77185,144.9654"], + "field_latitude_value": ["-37.77185"], + "field_longitude": ["144.9654"], + "field_longitude_value": ["144.9654"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3056"], + "field_project_code": ["15-4793"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["61 Glenyon Rd"], + "field_suburb": ["Brunswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21282], + "status": [true], + "title": ["Brunswick Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0026e25e-e7cc-4034-b791-1f17aa65ce3e"] + }, + "sort": ["Brunswick Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20203:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brunswick-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school redevelop the playground entrance. We upgraded fencing to create a more secure play space for students and the community.", + "We\u00a0re-roofed\u00a0and refurbished\u00a0classrooms, toilets and other facilities at the school.", + "This funding was\u00a0used to redevelop the sports field and outdoor area. The Victorian government allocated $10 million to the School Improvement Fund in the 2015\u201316 State Budget to support minor works projects. The School Improvement Fund supports small school projects that contribute to the community's pride in the school, and that help to foster a great relationship between the school and its local community. As the project is school-led, milestones are reliant on the needs and schedule of the school.\u200b", + "An inclusive learning space was built using funding from Round 1 of the Inclusive Schools Fund\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $130,125.", + "In the 2017\u201318 State Budget, $3.3 million was allocated to the school.", + "In the 2015\u201316 State Budget, $50,000 was allocated to the school.", + "In 2015, the school received $60,000 in Round 1 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "School Improvement Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Brunswick North Primary School." + ], + "field_latitude": [ + "-37.7666772500027", + "-37.759538", + "-37.76937", + "-37.76937" + ], + "field_latitude_longitude_value": [ + "-37.7666772500027,144.949110350059" + ], + "field_latitude_value": ["-37.7666772500027"], + "field_longitude": [ + "144.949110350059", + "144.950503", + "144.94832", + "144.94832" + ], + "field_longitude_value": ["144.949110350059"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3055"], + "field_project_code": [ + "D3-01-3585", + "01-3585", + "D1-01-3585", + "D2-01-3585" + ], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "School Improvement Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2023", "Q2 2019", "Q2 2017", "Q3 2018"], + "field_start_date": ["Q4 2020", "Q3 2018"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["Pearson St"], + "field_suburb": ["Brunswick West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20203], + "status": [true], + "title": ["Brunswick North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9f376e1f-37a7-4a6a-9d21-fc3e42dbbae8"] + }, + "sort": ["Brunswick North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20295:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brunswick-north-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new science, technology, environment, language and arts building. It includes a roof garden terrace to give students more outdoor educational space.", + "We built a sensory playground\u00a0with engaging and\u00a0challenging outdoor play spaces for students.\u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $623,400. In 2020, the school received $5.61 million.", + "In 2017, the school received $200,000 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Brunswick North West Primary School" + ], + "field_latitude": ["-37.75713", "-37.7571299"], + "field_latitude_longitude_value": ["-37.75713,144.94454"], + "field_latitude_value": ["-37.75713"], + "field_longitude": ["144.94454", "144.94454"], + "field_longitude_value": ["144.94454"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3055"], + "field_project_code": ["D1-01-4399", "01-4399"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2022", "Q4 2018"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Culloden St"], + "field_suburb": ["Brunswick West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20295], + "status": [true], + "title": ["Brunswick North West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["548804d4-39ad-4b0c-9558-f8d924b9a676"] + }, + "sort": ["Brunswick North West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20921:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brunswick-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed\u00a0major upgrades to Brunswick Secondary College. This\u00a0included: constructing \u200b\u200b\u200ba new food technology/canteen/caf\u00e9 building in the heart of the campus converting a gym to include new performing arts theatre and facilities and general purpose classrooms adding a\u00a0covered outdoor learning area, two science labs, and galleries and S.T.E.A.M project space completing maintenance and upgrades of existing general purpose classrooms and science labs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $10 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Brunswick Secondary College" + ], + "field_latitude": ["-37.77155"], + "field_latitude_longitude_value": ["-37.77155,144.95517"], + "field_latitude_value": ["-37.77155"], + "field_longitude": ["144.95517"], + "field_longitude_value": ["144.95517"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Major Upgrade for Brunswick Secondary College" + ], + "field_postcode": ["3056"], + "field_project_code": ["01-8807"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["47 Dawson St"], + "field_suburb": ["Brunswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20921], + "status": [true], + "title": ["Brunswick Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["324f0203-7254-4e3d-9917-e450225c1c55"] + }, + "sort": ["Brunswick Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20285:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/brunswick-south-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor sports areas. We resurfaced the existing court area and courtyard with synthetic grass.\u00a0", + "We upgraded and refurbished classrooms and facilities at the school. This project included major upgrades to critical facilities and services,\u00a0including fire services, power, water supply, sewage and\u00a0telecommunications systems. We also completed upgrades and maintenance to\u00a0main buildings (including\u00a0addressing accessibility by installing\u00a0a lift), the\u00a0library and Grey Block buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $299,125.", + "In the 2018\u201319 State Budget $4.1 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Brunswick South West Primary School." + ], + "field_latitude": ["-37.770357047892", "-37.771030"], + "field_latitude_longitude_value": [ + "-37.770357047892,144.943725183446" + ], + "field_latitude_value": ["-37.770357047892"], + "field_longitude": ["144.943725183446", "144.943604"], + "field_longitude_value": ["144.943725183446"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3055"], + "field_project_code": ["D1-01-4304", "01-4304"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q4 2020"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["South Daly St"], + "field_suburb": ["Brunswick West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20285], + "status": [true], + "title": ["Brunswick South West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b9f43d65-0661-4af2-bdd9-2e678b3c314a"] + }, + "sort": ["Brunswick South West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22632:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bubup-wilam-aboriginal-child-and-family-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are extending Bubup Wilam Aboriginal Child and Family Centre to create three new consulting rooms, while also refurbishing the offices. We\u2019ll also make the entrance accessible for children and adults of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $499,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bubup Wilam Aboriginal Child and Family Centre" + ], + "field_latitude": ["-37.67874538"], + "field_latitude_longitude_value": ["-37.67874538,145.0046714"], + "field_latitude_value": ["-37.67874538"], + "field_longitude": ["145.0046714"], + "field_longitude_value": ["145.0046714"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3074"], + "field_project_code": ["15-4786"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["76 Main St"], + "field_suburb": ["Thomastown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22632], + "status": [true], + "title": ["Bubup Wilam Aboriginal Child and Family Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a7f95b98-49ae-4891-aac8-2581c26a023b"] + }, + "sort": ["Bubup Wilam Aboriginal Child and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20051:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/buchan-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0completed\u00a0minor maintenance works at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 School Pride and Sports Fund, the school was allocated $84,000." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Buchan Primary School." + ], + "field_latitude": ["-37.496878"], + "field_latitude_longitude_value": ["-37.496878,148.180929"], + "field_latitude_value": ["-37.496878"], + "field_longitude": ["148.180929"], + "field_longitude_value": ["148.180929"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3885"], + "field_project_code": ["01-1905"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Dalley St"], + "field_suburb": ["Buchan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20051], + "status": [true], + "title": ["Buchan Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["37671893-ef3e-4bcf-9275-b637b23ca3c0"] + }, + "sort": ["Buchan Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20771:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/buckley-park-college"], + "changed": ["2023-09-21T14:44:09+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an outdoor classroom and sensory zone, as well as replaced\u00a0the basketball court's asphalt with a softer surface.", + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $137,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Inclusive Schools Fund", "Planning"], + "field_landing_page_summary": [ + "Learn more about the improvements at Buckley Park College" + ], + "field_latitude": ["-37.75405", "-37.747117"], + "field_latitude_longitude_value": ["-37.75405,144.89632"], + "field_latitude_value": ["-37.75405"], + "field_longitude": ["144.89632", "144.897755"], + "field_longitude_value": ["144.89632"], + "field_mappintype_name": ["School upgrade", "Planning"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3040"], + "field_project_code": ["01-7670", "D1-01-7670"], + "field_project_title": [ + "Inclusive Schools Fund", + "Planning for an Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2021", "Subject to future funding"], + "field_start_date": ["Q4 2019", "Q3 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["59-99 Cooper St"], + "field_suburb": ["Essendon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20771], + "status": [true], + "title": ["Buckley Park College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4e601b80-2185-46c8-86dd-cfcc4e2ea52a"] + }, + "sort": ["Buckley Park College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20479:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bulleen-heights-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school as part of the next stage of the school's master plan.\u00a0This school benefited from Victoria's largest-ever single investment in upgrading specialist schools, with 39 specialist schools sharing $388.8 million.\u00a0", + "\u200b\u200bWe made a range of improvements, including\u00a0\u200bcreating new outdoor learning spaces, undertaking maintenance to\u00a0the courtyard playground, making sewer pipe repairs, and setting up enclosed and accessible courtyards to classroom wings. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $9.15 million.", + "In the 2016\u201317 State Budget, $900,000 was allocated to the school. In the 2017-18 State Budget a further $116,000 was allocated." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bulleen Heights School." + ], + "field_latitude": ["-37.766990661621094", "-37.76308"], + "field_latitude_longitude_value": [ + "-37.766990661621094,145.08570861816406" + ], + "field_latitude_value": ["-37.766990661621094"], + "field_longitude": ["145.08570861816406", "145.0941599"], + "field_longitude_value": ["145.08570861816406"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3105"], + "field_project_code": ["D1-01-5099", "01-5099"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q2 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["49-61 Pleasant Rd"], + "field_suburb": ["Bulleen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20479], + "status": [true], + "title": ["Bulleen Heights School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["964c7d14-04d2-468a-a994-05ef7d4f46c7"] + }, + "sort": ["Bulleen Heights School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20061:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/buln-buln-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an inclusive outdoor learning space with active and passive zones. The passive area includes sensory elements, seating and musical equipment. The active area has a fitness station and equipment to support growth and development in balance, climbing, strength and social interaction. The two zones\u00a0are\u00a0connected by a tunnel and a path." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Buln Buln Primary School" + ], + "field_latitude": ["-38.099354"], + "field_latitude_longitude_value": ["-38.099354,145.938174"], + "field_latitude_value": ["-38.099354"], + "field_longitude": ["145.938174"], + "field_longitude_value": ["145.938174"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3821"], + "field_project_code": ["01-2017"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Old Sale Rd"], + "field_suburb": ["Buln Buln"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20061], + "status": [true], + "title": ["Buln Buln Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e4b22443-07ab-4d18-9ad8-ea9414316e46"] + }, + "sort": ["Buln Buln Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21332:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bunbunarik-heathcote-childrens-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bHeathcote Community Childrens Services Association built the children's hub. The hub is\u00a0a long day care and early learning centre built to service a community that previously\u00a0had no local access to occasional or long day care.\u00a0 The project links with the local kindergarten, playgroup, primary schools and a raft of family health and wellbeing services.\u00a0It has enhanced\u00a0access to an important range of services and works to\u00a0redress\u00a0community disadvantage.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bunbunarik Heathcote Children's Hub" + ], + "field_latitude": ["-36.92033"], + "field_latitude_longitude_value": ["-36.92033,144.70635"], + "field_latitude_value": ["-36.92033"], + "field_longitude": ["144.70635"], + "field_longitude_value": ["144.70635"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3523"], + "field_project_code": ["15-824"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["165 High St"], + "field_suburb": ["Heathcote"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21332], + "status": [true], + "title": ["Bunbunarik Heathcote Children's Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["54d8dcf8-abd6-41c1-ac43-544e56a103f6"] + }, + "sort": ["Bunbunarik Heathcote Children's Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27771:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bundalaguah-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are upgrading an indoor learning area to be more inclusive. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bundalaguah Primary School" + ], + "field_latitude": ["-38.023502"], + "field_latitude_longitude_value": ["-38.023502,147.012102"], + "field_latitude_value": ["-38.023502"], + "field_longitude": ["147.012102"], + "field_longitude_value": ["147.012102"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3851"], + "field_project_code": ["01-5392"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["627 Maffra-Sale Rd"], + "field_suburb": ["Bundalaguah"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27771], + "status": [true], + "title": ["Bundalaguah Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["4e41d1a5-937c-4f0f-9ac4-7602bdf1ab84"] + }, + "sort": ["Bundalaguah Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20532:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bundarra-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor learning space. It is an inclusive, landscaped environment and includes a yarning circle.", + "We built a sensory play space, with musical activities, sand and water play, an access spinner, roller table, rockin\u2019 robin (i.e. an egg chair) and visual stimuli that will continue to improve the curriculum for children with special needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In 2018, $164,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bundarra Primary School" + ], + "field_latitude": ["-38.3628397", "-38.362392"], + "field_latitude_longitude_value": ["-38.3628397,141.5930414"], + "field_latitude_value": ["-38.3628397"], + "field_longitude": ["141.5930414", "141.592438"], + "field_longitude_value": ["141.5930414"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Bundarra Primary School." + ], + "field_postcode": ["3305"], + "field_project_code": ["D1-01-5228", "01-5228"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Inclusive Schools Fund - Round 4" + ], + "field_q_complete": ["Q2 2023", "Q3 2019"], + "field_start_date": ["Q2 2021", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cnr Fawthrop & Edgar St"], + "field_suburb": ["Portland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20532], + "status": [true], + "title": ["Bundarra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["abc4449d-13c2-4ee2-b456-f6e531f6e757"] + }, + "sort": ["Bundarra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35151:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/bundarra-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-26T15:51:21+10:00"], + "field_about_project_processed": [ + "We are building a 2-room modular kindergarten. It will provide 66 kindergarten places for the local community. The kindergarten will include an outdoor play space.EnrolmentUniting (Victoria and Tasmania) has been appointed as the provider for Bundarra Primary School Kindergarten (interim name).To enrol, please contact Uniting (Victoria and Tasmania) by email earlylearning@unitingvictas.org.au or on 1800 183 103." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years and was approved in Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Bundarra Primary School Kindergarten (interim name)." + ], + "field_latitude": ["-38.36254592"], + "field_latitude_longitude_value": ["-38.36254592,141.592871"], + "field_latitude_value": ["-38.36254592"], + "field_longitude": ["141.592871"], + "field_longitude_value": ["141.592871"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3305"], + "field_project_code": ["15-BUPSK"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["124 Fawthrop Street"], + "field_suburb": ["Portland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35151], + "status": [true], + "title": ["Bundarra Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["fa0a27ac-668a-48d8-93c6-becb04cd996e"] + }, + "sort": ["Bundarra Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20414:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bundoora-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We modernised the school. We continued the work we completed in 2019 and built new classrooms and a food technology centre.", + "We delivered\u00a0a new administration and multipurpose hall building.", + "Stage 2 works at the school\u00a0delivered a\u00a0new STEAM (\u200bScience, Technology, Engineering, Art, and Mathematics)\u00a0and\u00a0Library Centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.019 million in planning funding. In the 2020\u201321 State Budget, the school received $9.175 million.", + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This includes funding for Bundoora Primary School. In the 2017\u201318 State Budget, $3.5 million was allocated to the school.", + "In the 2018\u201319 State Budget $2.707 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bundoora Primary School" + ], + "field_latitude": ["-37.683357238769531", "-37.70708"], + "field_latitude_longitude_value": [ + "-37.683357238769531,145.06651306152344" + ], + "field_latitude_value": ["-37.683357238769531"], + "field_longitude": ["145.06651306152344", "145.06391"], + "field_longitude_value": ["145.06651306152344"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3083"], + "field_project_code": ["D2-01-4944", "01-4944", "D1-01-4944"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation - Stage 1", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": ["Q4 2023", "Q1 2019", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q2 2016", "Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Balmoral Av"], + "field_suburb": ["Bundoora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20414], + "status": [true], + "title": ["Bundoora Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c0c06a18-9475-44b9-9efc-d4735572da4e"] + }, + "sort": ["Bundoora Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20800:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bundoora-secondary-college"], + "changed": ["2023-10-17T15:36:24+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities.", + "We built an inclusive outdoor learning space. We landscaped and built a timber deck.", + "We helped\u00a0refurbish the school's STEM Centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $10 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "The school received $216,600 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Bundoora Secondary College" + ], + "field_latitude": ["-37.707501", "-37.7070912", "-37.707501"], + "field_latitude_longitude_value": ["-37.707501,145.061977"], + "field_latitude_value": ["-37.707501"], + "field_longitude": ["145.061977", "145.0622614", "145.061977"], + "field_longitude_value": ["145.061977"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3083"], + "field_project_code": ["D2-01-7874", "D1-01-7874", "01-7874"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2025", "Q3 2023", "Q4 2019"], + "field_start_date": ["Q2 2022", "Q2 2021", "Q4 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["53 Balmoral Av"], + "field_suburb": ["Bundoora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20800], + "status": [true], + "title": ["Bundoora Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2b21e146-e153-4701-a1c7-3f2fcdbf2e2d"] + }, + "sort": ["Bundoora Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22336:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/buninyong-primary-school"], + "changed": ["2023-09-06T11:16:31+10:00"], + "created": ["2022-01-14T14:23:42+11:00"], + "field_about_project_processed": [ + "We refurbished the student bathroom to improve amenity, cleanliness, and hygiene.", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $295,897", + "In Round 8 of the Inclusive Schools Fund, the project received $183,185." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Buninyong Primary School" + ], + "field_latitude": ["-37.654229", "-37.654229"], + "field_latitude_longitude_value": ["-37.654229,143.886252"], + "field_latitude_value": ["-37.654229"], + "field_longitude": ["143.886252", "143.886252"], + "field_longitude_value": ["143.886252"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3357"], + "field_project_code": ["01-1270", "d1-1270"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q2 2023", "Q2 2024"], + "field_start_date": ["Q4 2021", "Q4 2022"], + "field_status_name": ["Complete", "Design"], + "field_street_address": ["202 Simpson St"], + "field_suburb": ["Buninyong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22336], + "status": [true], + "title": ["Buninyong Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["9a71e8da-98e2-4bdb-b19a-5217db052564"] + }, + "sort": ["Buninyong Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20087:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/bunyip-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to upgrade fencing, install new gates and improve security." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $52,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Bunyip Primary School." + ], + "field_latitude": ["-38.0991127"], + "field_latitude_longitude_value": ["-38.0991127,145.715997"], + "field_latitude_value": ["-38.0991127"], + "field_longitude": ["145.715997"], + "field_longitude_value": ["145.715997"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3815"], + "field_project_code": ["01-2229"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1290 Nar Nar Goon - Longwarry Rd"], + "field_suburb": ["Bunyip"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20087], + "status": [true], + "title": ["Bunyip Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2fb9391d-aec9-439f-af4c-f27785c7e722"] + }, + "sort": ["Bunyip Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25459:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/burch-family-memorial-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "This grant helped update the outdoor environment. The space is now more inclusive for children of all abilities. The landscaping better reflects the surrounding natural area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $138,110 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Burch Family Memorial Preschool" + ], + "field_latitude": ["-37.73954421"], + "field_latitude_longitude_value": ["-37.73954421,145.2687766"], + "field_latitude_value": ["-37.73954421"], + "field_longitude": ["145.2687766"], + "field_longitude_value": ["145.2687766"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3115"], + "field_project_code": ["15-786"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["Old Yarra Rd"], + "field_suburb": ["Wonga Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25459], + "status": [true], + "title": ["Burch Family Memorial Preschool"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["90358405-de63-4543-9449-1ac9b4688249"] + }, + "sort": ["Burch Family Memorial Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20638:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/burnside-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Burnside Primary School will accommodate up to 475 students from Prep to Year 6. We've finished the first stage of\u00a0the\u00a0school, and it opened for the first\u00a0students in\u00a0Term 1, 2019.\u200b The school received an additional $5.6 million in the 2018\u201319 State Budget for the second stage\u00a0of the project \u2013\u00a0a performing arts and physical education facility that will be ready in Term 1, 2019.\u00a0 This school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards. Burnside Children's and Community Centre is located next to Burnside Primary School, helping local\u00a0children make\u00a0a smooth transition from pre-school and reducing the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Burnside Primary School has an official Facebook page.\u200b Follow it for all the latest updates.\u00a0 \u200b \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017-18 State Budget allocated $13.806 million towards the school. The school received an additional $5.6 million in the 2018-19 State Budget for construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Burnside Primary School" + ], + "field_latitude": ["-37.746002"], + "field_latitude_longitude_value": ["-37.746002,144.753356"], + "field_latitude_value": ["-37.746002"], + "field_longitude": ["144.753356"], + "field_longitude_value": ["144.753356"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Burnside Primary School - Prep students' first day!" + ], + "field_postcode": ["3023"], + "field_project_code": ["01-5502"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["35 Lexington Drive"], + "field_suburb": ["Burnside"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20638], + "status": [true], + "title": ["Burnside Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4fde0bc6-e7a1-4e8d-a962-b88361f4a078"] + }, + "sort": ["Burnside Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20300:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/burwood-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a senior learning community, including STEM (science, technology, engineering and maths) learning spaces and staff areas. We are also building new toilets and landscaping school grounds. The school is also funding a new covered outdoor space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $8.031 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Burwood East Primary School" + ], + "field_latitude": ["-37.853725433349609"], + "field_latitude_longitude_value": [ + "-37.853725433349609,145.15032958984375" + ], + "field_latitude_value": ["-37.853725433349609"], + "field_longitude": ["145.15032958984375"], + "field_longitude_value": ["145.15032958984375"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3151"], + "field_project_code": ["01-454"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Cnr Blackburn Rd and Highbury Rd"], + "field_suburb": ["Burwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20300], + "status": [true], + "title": ["Burwood East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cdc31745-32c4-45f1-a886-b2dec7bc0384"] + }, + "sort": ["Burwood East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24980:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/burwood-east-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. These will replace relocatable buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $8.697 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Burwood East Special Developmental School" + ], + "field_latitude": ["-37.857201"], + "field_latitude_longitude_value": ["-37.857201,145.142122"], + "field_latitude_value": ["-37.857201"], + "field_longitude": ["145.142122"], + "field_longitude_value": ["145.142122"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3151"], + "field_project_code": ["01-5225"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["18 Manooka Street"], + "field_suburb": ["Burwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24980], + "status": [true], + "title": ["Burwood East Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ed36d183-568c-4fb3-8f64-682f5e8d3e38"] + }, + "sort": ["Burwood East Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36769:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/burwood-heights-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,529" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Burwood Heights Primary School" + ], + "field_latitude": ["-37.846754"], + "field_latitude_longitude_value": ["-37.846754,145.163275"], + "field_latitude_value": ["-37.846754"], + "field_longitude": ["145.163275"], + "field_longitude_value": ["145.163275"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3151"], + "field_project_code": ["01-4932"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Cnr Hawthorn & Mahoneys Rds"], + "field_suburb": ["Burwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36769], + "status": [true], + "title": ["Burwood Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["82429288-e3e6-4382-8d83-4f235b236474"] + }, + "sort": ["Burwood Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21314:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/butterfield-house-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200b\u200bChristian College Geelong built Butterfield House, a new early learning centre in the Torquay area\u200b. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015\u201316 Children's Facilities Capital Program $650,000 was allocated to the early learning facility." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Butterfield House Kindergarten" + ], + "field_latitude": ["-38.3387699"], + "field_latitude_longitude_value": ["-38.3387699,144.29195"], + "field_latitude_value": ["-38.3387699"], + "field_longitude": ["144.29195"], + "field_longitude_value": ["144.29195"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3228"], + "field_project_code": ["15-5638"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["240 Great Ocean Rd"], + "field_suburb": ["Jan Juc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21314], + "status": [true], + "title": ["Butterfield House Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5474615e-d32e-41de-a100-2767582bdc85"] + }, + "sort": ["Butterfield House Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20027:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/buxton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0the school\u00a0upgrade the shed into an indoor learning space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $58,265." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Buxton Primary School." + ], + "field_latitude": ["-37.4214036"], + "field_latitude_longitude_value": ["-37.4214036,145.7090588"], + "field_latitude_value": ["-37.4214036"], + "field_longitude": ["145.7090588"], + "field_longitude_value": ["145.7090588"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3711"], + "field_project_code": ["01-1669"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2208 Maroondah Hwy"], + "field_suburb": ["Buxton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20027], + "status": [true], + "title": ["Buxton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0162eb45-8767-4bed-ab45-1a21ab7251ff"] + }, + "sort": ["Buxton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/37145:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/c1-school"], + "changed": ["2023-12-22T14:38:53+11:00"], + "created": ["2023-12-22T14:38:48+11:00"], + "field_about_project_processed": ["a new project"], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Sed ut perspiciatis unde omnis iste natus error sit voluptatem" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["Lav4-1"], + "field_project_title": ["Seondary College"], + "field_q_complete": ["Q4, 2026"], + "field_start_date": ["Q2, 2025"], + "field_status_name": ["Design"], + "field_street_address": ["801 Springvale Road"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [37145], + "status": [true], + "title": ["C1 school"], + "type": ["project_infrastructure"], + "uid": [11547], + "uuid": ["3a21f2a0-09d6-4265-ac08-024872b15c0b"] + }, + "sort": ["C1 school"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19969:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/california-gully-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including Block A. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We upgraded the school grounds, including installing a shaded outdoor area and redeveloping the vegetable garden.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.48 million.", + "In the 2015\u201316 State Budget, $30,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at California Gully Primary School." + ], + "field_latitude": ["-36.7334648", "-36.73301"], + "field_latitude_longitude_value": ["-36.7334648,144.2498715"], + "field_latitude_value": ["-36.7334648"], + "field_longitude": ["144.2498715", "144.24962"], + "field_longitude_value": ["144.2498715"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3556"], + "field_project_code": ["D1-01-123", "01-123"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["4-14 Staley St"], + "field_suburb": ["California Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19969], + "status": [true], + "title": ["California Gully Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["097dd77c-a1dd-4a5f-a0d8-872c47127268"] + }, + "sort": ["California Gully Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20772:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/camberwell-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised\u00a0the Camberwell High School campus to transform the school. In particular, we refurbished\u00a0the Year 7 and 8 home bases in Building D and the Year 11 home base in Building C. This means brand new learning environments including studio spaces, seminar rooms, communal learning areas, integrated staff areas, presentation spaces, meeting rooms and circular/locker areas. The external learning areas of Building D were also\u00a0refurbished to provide varied types of learning spaces for students.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $3.55 million has been allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Camberwell High School" + ], + "field_latitude": ["-37.829260"], + "field_latitude_longitude_value": ["-37.829260,145.066770"], + "field_latitude_value": ["-37.829260"], + "field_longitude": ["145.066770"], + "field_longitude_value": ["145.066770"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3126"], + "field_project_code": ["01-7680"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Prospect Hill Rd"], + "field_suburb": ["Canterbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20772], + "status": [true], + "title": ["Camberwell High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1bcdf2ed-2424-43f0-891b-e4fb16e665bb"] + }, + "sort": ["Camberwell High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20955:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/camberwell-primary-school"], + "changed": ["2023-12-05T10:21:42+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We are refurbishing the student toilets in the school's main administration building to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We upgraded and modernised the school, converting the car park to more open space.", + "We built an outdoor sensory learning space that is used for\u00a0lessons and free play. This was part of a wider development that included\u00a0upgrading\u00a0the school\u2019s library and a\u00a0new building that we\u00a0completed in 2018." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2022\u201323 State Budget the project received $367,127 from the Minor Capital Works Fund.", + "In the 2020\u201321 State Budget, the school received $709,000.\u00a0A further $1,056,137 was allocated to the school in 2021.", + "In 2018, $180,500 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Camberwell Primary School" + ], + "field_latitude": ["-37.832684", "-37.839069366455078", "-37.832684"], + "field_latitude_longitude_value": ["-37.832684,145.058048"], + "field_latitude_value": ["-37.832684"], + "field_longitude": ["145.058048", "145.07295227050781", "145.058048"], + "field_longitude_value": ["145.058048"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3124"], + "field_project_code": [ + "D3-01-888", + "D2-01-888", + "D1-01-888", + "01-888" + ], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q1 2024", + "Q4 2023", + "Q1 2020" + ], + "field_start_date": ["Q2 2023", "Q2 2022", "Q4 2020", "Q4 2018"], + "field_status_name": [ + "Planning", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["290 Camberwell Rd"], + "field_suburb": ["Camberwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20955], + "status": [true], + "title": ["Camberwell Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8c3928aa-3202-4726-a6a6-0f6201e0a1e7"] + }, + "sort": ["Camberwell Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20266:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/camberwell-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space, including paving, decking and seating in a landscaped environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $199,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Camberwell South Primary School" + ], + "field_latitude": ["-37.8495638500008"], + "field_latitude_longitude_value": [ + "-37.8495638500008,145.062641550014" + ], + "field_latitude_value": ["-37.8495638500008"], + "field_longitude": ["145.062641550014"], + "field_longitude_value": ["145.062641550014"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3146"], + "field_project_code": ["01-4170"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Peate Av"], + "field_suburb": ["Glen Iris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20266], + "status": [true], + "title": ["Camberwell South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c4fbb9b8-a867-41da-bf11-85d008286822"] + }, + "sort": ["Camberwell South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20575:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cambridge-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a multipurpose playground to promote physical activity." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $369,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cambridge Primary School." + ], + "field_latitude": ["-37.869259713463"], + "field_latitude_longitude_value": [ + "-37.869259713463,144.675159276438" + ], + "field_latitude_value": ["-37.869259713463"], + "field_longitude": ["144.675159276438"], + "field_longitude_value": ["144.675159276438"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-5312"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Carruthers Dr"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20575], + "status": [true], + "title": ["Cambridge Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cc9619e7-929d-44d7-bb23-fdedcfd0c428"] + }, + "sort": ["Cambridge Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20483:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/camelot-rise-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a fellowship garden with three elements: an inclusive playground,\u00a0a sensory garden and\u00a0a raised garden bed. Each part caters\u00a0for varying students needs. The new areas will include a sandpit, a dragon's nest, a timber bridge, and a teepee with wheelchair access." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Camelot Rise Primary School" + ], + "field_latitude": ["-37.865278"], + "field_latitude_longitude_value": ["-37.865278,145.187775"], + "field_latitude_value": ["-37.865278"], + "field_longitude": ["145.187775"], + "field_longitude_value": ["145.187775"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-5111"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Galahad Cr"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20483], + "status": [true], + "title": ["Camelot Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7d095890-ea64-49bb-bafd-28f18c23e34a"] + }, + "sort": ["Camelot Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20059:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/camp-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We built a sensory garden with distinct learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2020 Minor Capital Works Fund the school was allocated $172,165." + ], + "field_funding_type_name": ["Planning", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Camp Hill Primary School." + ], + "field_latitude": ["-36.7553736"], + "field_latitude_longitude_value": ["-36.7553736,144.2779818"], + "field_latitude_value": ["-36.7553736"], + "field_longitude": ["144.2779818"], + "field_longitude_value": ["144.2779818"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["D1-01-1976", "01-1976"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Subject to future funding", "Q4 2022"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["50 Gaol Rd"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20059], + "status": [true], + "title": ["Camp Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8850ab6a-b142-4b88-aaf6-34445656aab1"] + }, + "sort": ["Camp Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20449:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/campbellfield-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0and modernised\u00a0facilities at the\u00a0school. The project work included\u00a0refurbishing and repurposing internal and external spaces, plus construction of a new outdoor learning space with a\u00a0pergola and decking\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $402,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Campbellfield Heights Primary School." + ], + "field_latitude": ["-37.6741"], + "field_latitude_longitude_value": ["-37.6741,144.96406"], + "field_latitude_value": ["-37.6741"], + "field_longitude": ["144.96406"], + "field_longitude_value": ["144.96406"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3061"], + "field_project_code": ["01-5034"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1-13 Laurel Cr"], + "field_suburb": ["Campbellfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20449], + "status": [true], + "title": ["Campbellfield Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["54eb4e71-2201-4e2e-96cd-0b07f0c1bdaf"] + }, + "sort": ["Campbellfield Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19964:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/campbells-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the playground and climbing wall. Works included installing sensory play panels and replacing shade sails and frames which promotes inclusive play for all students.", + "We built a new outdoor sensory learning zone for students at Campbells Creek and Guilford Primary schools.\u00a0 \u200b\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $454,125.", + "In Round 2 of the Inclusive Schools Fund, $173,400 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Campbells Creek Primary School." + ], + "field_latitude": ["-37.0949071878037", "-37.07887"], + "field_latitude_longitude_value": [ + "-37.0949071878037,144.203310457639" + ], + "field_latitude_value": ["-37.0949071878037"], + "field_longitude": ["144.203310457639", "144.20426"], + "field_longitude_value": ["144.203310457639"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3451"], + "field_project_code": ["D1-01-120", "01-120"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2022", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Main Rd"], + "field_suburb": ["Campbells Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19964], + "status": [true], + "title": ["Campbells Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["04adc5a6-c1bb-4f95-aa4d-d6f19810cda5"] + }, + "sort": ["Campbells Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25366:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/camperdown-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We refurbished the staff toilets at the Senior Campus. This has improved amenity, cleanliness and hygiene. This work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $336,397 from the Minor Capital Works Fund.", + "In the 2022-23 State Budget the project received $145,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at the Camperdown College campuses" + ], + "field_latitude": ["-38.239731", "-38.239731"], + "field_latitude_longitude_value": ["-38.239731,143.145435"], + "field_latitude_value": ["-38.239731"], + "field_longitude": ["143.145435", "143.145435"], + "field_longitude_value": ["143.145435"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3260"], + "field_project_code": ["01-6259", "D1-01-6259"], + "field_project_title": [ + "Minor Capital Works Fund - Brooke Street Campus", + "Minor Capital Works Fund - Wilson Street Campus" + ], + "field_q_complete": ["Q1 2024", "Q4 2023"], + "field_start_date": ["Q2 2022", "Q2 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["30 Brooke St"], + "field_suburb": ["Camperdown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25366], + "status": [true], + "title": ["Camperdown College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2419abcf-0e8a-498c-ba04-619fc03b753f"] + }, + "sort": ["Camperdown College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28126:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cana-catholic-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish and extend an existing general learning building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cana Catholic Primary School." + ], + "field_latitude": ["-37.68892183552718"], + "field_latitude_longitude_value": [ + "-37.68892183552718,144.7480691819185" + ], + "field_latitude_value": ["-37.68892183552718"], + "field_longitude": ["144.7480691819185"], + "field_longitude_value": ["144.7480691819185"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3037"], + "field_project_code": ["01-2021"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["45 Banchory Av"], + "field_suburb": ["Hillside"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28126], + "status": [true], + "title": ["Cana Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["a08b1cae-50eb-4ffe-9aed-9bc613dfb5b2"] + }, + "sort": ["Cana Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20595:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/canadian-lead-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an inclusive outdoor playspace including a multi-play unit, accessible roundabout and musical instruments." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $193,700 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Canadian Lead Primary School" + ], + "field_latitude": ["-37.572968"], + "field_latitude_longitude_value": ["-37.572968,143.875909"], + "field_latitude_value": ["-37.572968"], + "field_longitude": ["143.875909"], + "field_longitude_value": ["143.875909"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-5383"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["301 Otway St South"], + "field_suburb": ["Ballarat East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20595], + "status": [true], + "title": ["Canadian Lead Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["37113922-137a-428c-8c9d-39d6350838f1"] + }, + "sort": ["Canadian Lead Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20235:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cann-river-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. The new building\u00a0features general purpose classrooms, an accessible toilet and perimeter decking." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $2.057 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cann River P-12 College." + ], + "field_latitude": ["-37.5697"], + "field_latitude_longitude_value": ["-37.5697,149.153022"], + "field_latitude_value": ["-37.5697"], + "field_longitude": ["149.153022"], + "field_longitude_value": ["149.153022"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3890"], + "field_project_code": ["01-3920"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["20-24 Tamboon Rd"], + "field_suburb": ["Cann River"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20235], + "status": [true], + "title": ["Cann River P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["67c4ef30-3055-4510-9c8a-9a801bec5616"] + }, + "sort": ["Cann River P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21428:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/canterbury-hub-integrated-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build a new integrated children's centre. It provides high quality learning environments and a 3- and 4-year-old kindergarten. The centre has long day care, a toy library and maternal and child health support services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018-2019 Children's Facilities Capital Program Major Grants, $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Canterbury Hub Integrated Childrens Centre" + ], + "field_latitude": ["-37.8251"], + "field_latitude_longitude_value": ["-37.8251,145.07833"], + "field_latitude_value": ["-37.8251"], + "field_longitude": ["145.07833"], + "field_longitude_value": ["145.07833"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3126"], + "field_project_code": ["ELC-CHICC"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q1 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["2A Kendall St"], + "field_suburb": ["Canterbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21428], + "status": [true], + "title": ["Canterbury Hub Integrated Childrens Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9b2f9277-649e-4443-9c6c-f25240200784"] + }, + "sort": ["Canterbury Hub Integrated Childrens Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25367:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/canterbury-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the Junior School student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $499,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Canterbury Primary School" + ], + "field_latitude": ["-37.830963"], + "field_latitude_longitude_value": ["-37.830963,145.083144"], + "field_latitude_value": ["-37.830963"], + "field_longitude": ["145.083144"], + "field_longitude_value": ["145.083144"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3126"], + "field_project_code": ["01-3572"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["Molesworth Street"], + "field_suburb": ["Canterbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25367], + "status": [true], + "title": ["Canterbury Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9e32a323-5da9-4196-843b-0726d7297a4b"] + }, + "sort": ["Canterbury Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19999:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cape-clear-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We renovated the existing structures and added a covered walkway to the school.The walkway offers weather protection and strengthens the connection with the outdoor environment. It gives the school a modern appearance with simple and durable materials.We used fiberglass cladding in various shapes along an elevated walkway. It provides a range of spaces for learning and play. These included an outdoor gathering deck, an informal stage, and seating.Inside the administration building, we made several upgrades:a reception areaa small group meeting roomchaplain's officestaff work and meeting spaces.We also improved the interior of the multipurpose building. We added movable walls for flexible use and upgraded the kitchen and floor finishes. These upgrades support the school's STEAM program. Additionally, it helps the school provide community programs such as the breakfast club.", + "We built\u00a0an outdoor learning space to support Cape Clear's education program that addresses the diverse learning needs of all children.", + "We\u00a0helped the school to install fencing along school boundaries to improve security and road safety." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $828,000.", + "In 2019, $194,968 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $78,939" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cape Clear Primary School" + ], + "field_latitude": ["-37.779026031494141", "-37.792", "-37.7919983"], + "field_latitude_longitude_value": [ + "-37.779026031494141,143.60641479492188" + ], + "field_latitude_value": ["-37.779026031494141"], + "field_longitude": ["143.60641479492188", "143.60792", "143.6079207"], + "field_longitude_value": ["143.60641479492188"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3351"], + "field_project_code": ["D1-01-1484", "01-1484", "D2-01-1484"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2023", "Q2 2021", "Q2 2021"], + "field_start_date": ["Q4 2020", "Q4 2019", "Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["1539 Pitfield-Scarsdale Rd"], + "field_suburb": ["Cape Clear"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19999], + "status": [true], + "title": ["Cape Clear Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fe921239-8aeb-420b-8a31-501617e88245"] + }, + "sort": ["Cape Clear Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20217:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cardinia-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the building of an accessible playground with balance beams, stepping stones, twisters, hurdles, monkey bars and ladders. A two-lane, artificial turf running track\u00a0encloses the playground. We also helped install a variety of fitness machines and and outdoor musical instruments for sensory play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cardinia Primary School" + ], + "field_latitude": ["-38.145785"], + "field_latitude_longitude_value": ["-38.145785,145.423332"], + "field_latitude_value": ["-38.145785"], + "field_longitude": ["145.423332"], + "field_longitude_value": ["145.423332"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-3689"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["2405 Ballarto Rd"], + "field_suburb": ["Cardinia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20217], + "status": [true], + "title": ["Cardinia Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1143fe51-5e6d-4d7d-8265-5439647807b1"] + }, + "sort": ["Cardinia Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24578:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/cardinia-shire-council-early-years-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Cardinia Shire employ someone to oversee planning and design for future kindergarten building projects." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Cardinia Shire Council Early Years Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-CARD"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24578], + "status": [true], + "title": [ + "Cardinia Shire Council Early Years Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["dcc5ce26-2ce9-44dd-956a-9062a8f493b0"] + }, + "sort": [ + "Cardinia Shire Council Early Years Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20280:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cardross-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised\u00a0facilities at the school by refurbishing classrooms and facilities that were in poor condition. These works targeted facilities that needed it most, ensuring that students learn in facilities that are ready for the delivery of modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $800,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cardross Primary School." + ], + "field_latitude": ["-34.294685"], + "field_latitude_longitude_value": ["-34.294685,142.145981"], + "field_latitude_value": ["-34.294685"], + "field_longitude": ["142.145981"], + "field_longitude_value": ["142.145981"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3496"], + "field_project_code": ["01-4263"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["415 Dairtnunk Av"], + "field_suburb": ["Cardross"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20280], + "status": [true], + "title": ["Cardross Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["07c55256-16ea-4ab9-9304-d980a09e4fe0"] + }, + "sort": ["Cardross Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19936:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carisbrook-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new Learning Centre building at the school. This\u00a0includes general purpose classrooms, withdrawal areas, breakout space, amenities and outdoor learning spaces.\u00a0 An outdoor deck area and undercover travel link the new building with the existing McCallum building.\u00a0 We also refurbished the Tullaroop, McCallum and Block A buildings, including the library, classrooms, science and art learning spaces and provided new amenities for student and staff. Landscaping and external works were also undertaken.", + "We replaced roof sheeting, guttering, and spouting. We also undertook ceiling repairs to the school's Tullaroop wing.", + "As part of the Education State vision, the Victorian Government allocated money to the school to improve facilities and increase community pride in the school.\u00a0 The school used this funding to upgrade their gymnasium. Works included\u00a0refurbishing the existing centre, and replacing undersized pipes." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2.4 million was allocated to the school.", + "In the 2022\u201323 State Budget the project received $138,977 from the Minor Capital Works Fund.", + "In the 2016\u201317 State Budget the school received $230,749 from the\u00a0 School Pride & Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Carisbrook Primary School." + ], + "field_latitude": ["-37.052200", "-37.052061", "-37.05348"], + "field_latitude_longitude_value": ["-37.052200,143.813385"], + "field_latitude_value": ["-37.052200"], + "field_longitude": ["143.813385", "143.812657", "143.81423"], + "field_longitude_value": ["143.813385"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3464"], + "field_project_code": ["01-1030", "D2-01-1030", "D1-01-1030"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2019", "Q2 2023", "Q4 2018"], + "field_start_date": ["Q3 2018", "Q2 2022"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["2 Camp St"], + "field_suburb": ["Carisbrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19936], + "status": [true], + "title": ["Carisbrook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["08b664ab-5adb-4fd9-93f5-194969b9966e"] + }, + "sort": ["Carisbrook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20113:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carlton-gardens-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded and modernised Carlton Gardens Primary School. We improved classrooms and created places for an extra 150 local students. The students gained: a sustainable, state-of-the-art building flexible teaching and learning spaces accessible bridge links connecting the new building to existing ones a covered play area, external seating and landscaping renovations to the heritage building and first floor of the BER building. Heritage Victoria approved the project. We designed the building to be compatible with the heritage and BER buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $10.59 million, which is a share in $130.1 million from the Established Areas Program." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Carlton Gardens Primary School." + ], + "field_latitude": ["-37.802021"], + "field_latitude_longitude_value": ["-37.802021,144.969360"], + "field_latitude_value": ["-37.802021"], + "field_longitude": ["144.969360"], + "field_longitude_value": ["144.969360"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3053"], + "field_project_code": ["01-2605"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["215 Rathdowne Street"], + "field_suburb": ["Carlton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20113], + "status": [true], + "title": ["Carlton Gardens Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1b5360df-0295-4ed8-8da4-87433f3343f6"] + }, + "sort": ["Carlton Gardens Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28678:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carlton-learning-precinct"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We improved this education and health hub for local children and families. We built a new bathroom for babies and toddlers, along with new nappy changing facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $109,336.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Carlton Learning Precinct." + ], + "field_latitude": ["-37.79555966"], + "field_latitude_longitude_value": ["-37.79555966,144.970068"], + "field_latitude_value": ["-37.79555966"], + "field_longitude": ["144.970068"], + "field_longitude_value": ["144.970068"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3053"], + "field_project_code": ["elc-clp"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["150 Palmerston St"], + "field_suburb": ["Carlton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28678], + "status": [true], + "title": ["Carlton Learning Precinct"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0d9f0358-cd8d-4329-b94b-1f1ec0801333"] + }, + "sort": ["Carlton Learning Precinct"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22297:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carlton-north-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:15+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are building an inclusive indoor learning space, including acoustic treatments.", + "We refurbished the student toilet block to improve amenities, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 7 of the Inclusive Schools Fund, the project received $165,150.", + "In Round 2 of the Minor Capital Works Fund, the project received $171,000." + ], + "field_funding_type_name": [ + "Planning", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Carlton North Primary School." + ], + "field_latitude": ["-37.791064", "-37.791064"], + "field_latitude_longitude_value": ["-37.791064,144.973028"], + "field_latitude_value": ["-37.791064"], + "field_longitude": ["144.973028", "144.973028"], + "field_longitude_value": ["144.973028"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3054"], + "field_project_code": ["D2-01-1252", "01-1252", "D1-01-1252"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Inclusive Schools Fund - Round 7", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": [ + "Subject to future funding", + "Q4 2023", + "Q4 2022" + ], + "field_start_date": ["Q2 2023", "Q4 2021", "Q4 2021"], + "field_status_name": ["Planning", "Construction", "Complete"], + "field_street_address": ["60 Lee St"], + "field_suburb": ["Carlton North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22297], + "status": [true], + "title": ["Carlton North Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["210c9511-273e-4364-b9c5-68d63f8031e8"] + }, + "sort": ["Carlton North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20428:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carlton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0have\u00a0delivered\u00a0a $10 million transformation that has enhanced this school with 21st century flexible learning spaces. City of Melbourne also worked\u00a0in partnership with the Victorian Government to provide the Carlton Early Years and Family Services Centre within the school.\u00a0 This project brings education and care, maternal and child health, parenting services and playgroups under one roof.\u00a0 \u200b \u200b This project, designed by Law Architects, was the winner of \u2018Best School Project Above $10 million\u2019 in the\u00a02020 Victorian School Design Awards. Facilities We\u2019ve redesigned each floor to improve functionality, and provided a variety of spaces to support modern education practices such as team teaching and collaborative learning. The entrance for the school and new early learning centre off Palmerston St include\u00a0landscaping and an informal gathering area for parents. We\u00a0also created\u00a0outdoor covered learning spaces. They\u00a0include a green wall, which provides\u00a0an\u00a0attractive shaded area for students and staff. The ground floor\u00a0includes specialist facilities for subjects such as art and music, and\u00a0also accommodates a new canteen. The new\u00a0Carlton Early Years and Family Services Centre offers an early learning centre with playgroup, childcare and kindergarten facilities and other community spaces provided in partnership with the\u00a0City of Melbourne. Contact For enquiries about the school or enrolments: Phone: 03\u00a09347 6022 Email:\u00a0carlton.ps@edumail.vic.gov.au Website:\u00a0Carlton Primary School website.\u200b For enquiries about Carlton Early Years and Family Services Centre\u00a0registrations, contact City of Melbourne: Phone: 03\u00a09658 9658\u00a0 Email:\u00a0CarltonELC@melbourne.vic.gov.au\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2016-17 State Budget allocated $9 million to the school.\u00a0 This was in addition to $1 million from the 2015-16 State Budget." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Carlton Primary School." + ], + "field_latitude": ["-37.801960"], + "field_latitude_longitude_value": ["-37.801960,144.969284"], + "field_latitude_value": ["-37.801960"], + "field_longitude": ["144.969284"], + "field_longitude_value": ["144.969284"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["An upgrade for Carlton Primary School"], + "field_postcode": ["3053"], + "field_project_code": ["01-4980"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Palmerston & Drummond Sts"], + "field_suburb": ["Carlton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20428], + "status": [true], + "title": ["Carlton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ffa7097-81df-4279-8def-07d1a4123477"] + }, + "sort": ["Carlton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20141:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carnegie-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built a\u00a0new games hall building, and undertook\u00a0refurbishment works to existing general learning and administration areas. Associated landscaping works\u00a0have also\u00a0provided new\u00a0opportunities for outdoor learning and nature play. \u200b The games hall provides the school with a centralised hub for sports, music, drama, and art; incorporating a competition-sized stadium, spectator seating, and specialist learning spaces, as well as additional student and staff amenities and a new canteen.\u00a0 The built form of the new Games Hall responds to the architectural language of the existing heritage buildings on the school grounds; through referencing key elements and incorporating them into the design in a contemporary way, creating a cohesive and integrated design.\u200b\u200b\u200b\u00a0 \u200bThe refurbishment works to the existing General Learning areas have\u00a0provided students with collaborative, flexible and nurturing learning environments\u200b.\u200b This project, designed by ClarkeHopkinsClarke,\u00a0was a finalist in the\u00a02019 Victorian School Design Awards.", + "We refurbished the student bathroom to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.5 million was allocated to the school. In the 2016\u201317 State Budget, $4 million has been allocated to the school.", + "In Round 2 of the Minor Capital Works Fund, the project received $330,127." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Carnegie Primary School." + ], + "field_latitude": ["-37.89018", "-37.890739"], + "field_latitude_longitude_value": ["-37.89018,145.05501"], + "field_latitude_value": ["-37.89018"], + "field_longitude": ["145.05501", "145.054505"], + "field_longitude_value": ["145.05501"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3163"], + "field_project_code": ["01-2897", "D1-01-2897"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q1 2019", "Q1 2023"], + "field_start_date": ["Q1 2018", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["51 Truganini Rd"], + "field_suburb": ["Carnegie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20141], + "status": [true], + "title": ["Carnegie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ebbae7f3-af1c-44b1-a85f-0ede079fb5b7"] + }, + "sort": ["Carnegie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20630:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carranballac-p-9-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bScouts Victoria built a multipurpose Scouts and Community Centre on the site of the Boardwalk campus.\u00a0 \u00a0 \u00a0", + "We created\u00a0a sensory garden with associated learning spaces to facilitate a sensory diet program.\u200b\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016\u201317, the school was allocated $1.375 million through the Shared Facilities Fund.", + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Shared Facilities Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Carranballac P-9 College" + ], + "field_latitude": ["-37.8875699", "-37.8875699"], + "field_latitude_longitude_value": ["-37.8875699,144.75557"], + "field_latitude_value": ["-37.8875699"], + "field_longitude": ["144.75557", "144.75557"], + "field_longitude_value": ["144.75557"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-5486", "D1-01-5486"], + "field_project_title": [ + "Shared Facilities Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2019", "Q4 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cnr Foxwood Dr & Dunnings Rd"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20630], + "status": [true], + "title": ["Carranballac P-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c683d24-d482-48d5-8965-199858fcf8f2"] + }, + "sort": ["Carranballac P-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20029:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carraragarmungee-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded the playground and installed\u00a0new play and climbing equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $95,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Carraragarmungee Primary School." + ], + "field_latitude": ["-36.3289504"], + "field_latitude_longitude_value": ["-36.3289504,146.4612711"], + "field_latitude_value": ["-36.3289504"], + "field_longitude": ["146.4612711"], + "field_longitude_value": ["146.4612711"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3678"], + "field_project_code": ["01-1704"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1005 Wangaratta-Eldorado Rd"], + "field_suburb": ["Londrigan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20029], + "status": [true], + "title": ["Carraragarmungee Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["664b54b0-8717-4b7a-bd40-2789f07413e1"] + }, + "sort": ["Carraragarmungee Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33013:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carrington-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Carrington Primary School" + ], + "field_latitude": ["-37.891476"], + "field_latitude_longitude_value": ["-37.891476,145.246491"], + "field_latitude_value": ["-37.891476"], + "field_longitude": ["145.246491"], + "field_longitude_value": ["145.246491"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3180"], + "field_project_code": ["01-5426"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Laura Road"], + "field_suburb": ["Knoxfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33013], + "status": [true], + "title": ["Carrington Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a1a8b5e9-697c-4086-ba56-d8a12b336820"] + }, + "sort": ["Carrington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20869:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carrum-downs-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new STEAM (science, technology, engineering, art and maths) centre.\u00a0", + "We completed building\u00a0a competition-grade gymnasium for the school\u00a0in 2019. The school\u00a0previously received funding\u00a0through the 2016\u201317 School Pride Fund, which it put\u00a0towards a caf\u00e9 precinct." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.75 million. In 2021, an additional $600,000 was allocated to the project.\u00a0", + "In the 2017\u201318 State Budget, $3.01 million was allocated to the school. In the 2016-17 State Budget, $75,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Carrum Downs Secondary College" + ], + "field_latitude": ["-38.097084045410156", "-38.094540"], + "field_latitude_longitude_value": [ + "-38.097084045410156,145.17597961425781" + ], + "field_latitude_value": ["-38.097084045410156"], + "field_longitude": ["145.17597961425781", "145.198500"], + "field_longitude_value": ["145.17597961425781"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3201"], + "field_project_code": ["D1-01-8423", "01-8423"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q3 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["263 McCormicks Rd"], + "field_suburb": ["Carrum Downs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20869], + "status": [true], + "title": ["Carrum Downs Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e1b4b759-9ebc-4a5b-ae90-b3a70cffb187"] + }, + "sort": ["Carrum Downs Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22655:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carrum-family-childrens-service"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are refurbishing the outdoor play area to provide holistic, child-centred spaces that provide access to nature-based learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project. In the 2022\u201323 Building Blocks \u2013\u00a0Improvement grant stream, this project received a further $154,040." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Carrum Family & Children's Service" + ], + "field_latitude": ["-38.07615914"], + "field_latitude_longitude_value": ["-38.07615914,145.1315299"], + "field_latitude_value": ["-38.07615914"], + "field_longitude": ["145.1315299"], + "field_longitude_value": ["145.1315299"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3197"], + "field_project_code": ["15-CARRFAM"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["24A Graham Rd"], + "field_suburb": ["Carrum"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22655], + "status": [true], + "title": ["Carrum Family & Children's Service"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["cae7b625-b1e3-4b1c-aa45-390e92581974"] + }, + "sort": ["Carrum Family & Children's Service"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20189:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carrum-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at the school. Our work included upgrading classrooms, constructing a covered outdoor learning area and refurbishing building to create new changeroom facilities for outdoor learning and physical education classes." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $1 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Carrum Primary School." + ], + "field_latitude": ["-38.077690"], + "field_latitude_longitude_value": ["-38.077690,145.126938"], + "field_latitude_value": ["-38.077690"], + "field_longitude": ["145.126938"], + "field_longitude_value": ["145.126938"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3197"], + "field_project_code": ["01-3385"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Walkers Rd"], + "field_suburb": ["Carrum"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20189], + "status": [true], + "title": ["Carrum Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["31624395-22e0-4d90-b5c9-039b08602a7d"] + }, + "sort": ["Carrum Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20616:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/carwatha-college-p-12"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including the VCE Centre and the soccer field.", + "We built an outdoor inclusive learning space, including new play equipment and landscaping.", + "We built an outdoor fitness playground and a sensory area with toys to encourage imagination and sensory input. We\u00a0also created an indoor sensory space for small group interaction." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $4.214 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $154,000.", + "In 2018, $198,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Carwatha College P-12." + ], + "field_latitude": ["-37.965988159179688", "-37.942186", "-37.942845"], + "field_latitude_longitude_value": [ + "-37.965988159179688,145.17778015136719" + ], + "field_latitude_value": ["-37.965988159179688"], + "field_longitude": [ + "145.17778015136719", + "145.1887991", + "145.188726" + ], + "field_longitude_value": ["145.17778015136719"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["D1-01-5435", "D2-01-5435", "01-5435"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6", + "Inclusive Schools Fund - Round 4" + ], + "field_q_complete": ["Q4 2023", "Q4 2022", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q2 2021", "Q4 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["43-81 Browns Rd"], + "field_suburb": ["Noble Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20616], + "status": [true], + "title": ["Carwatha College P-12"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7d773e8e-f99b-453f-937d-94f2ba15e0bb"] + }, + "sort": ["Carwatha College P-12"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33000:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/casey-central-primary-school-interim-name"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We're planning and completing early work for a new primary school in Cranbourne North. It will open with places for up to 650 students. This will help the growing local population get a great education close to home." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Casey Central Primary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5617"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33000], + "status": [true], + "title": ["Casey Central Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["346700a2-1de8-4a81-a3a4-814c7e37efcb"] + }, + "sort": ["Casey Central Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24588:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/casey-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-10-27T15:38:38+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Casey City Council employ two people to oversee planning and design for future kindergarten building projects. The council is developing a series of plans and intends to build the first of these projects by 2024. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Grant - Planning stream, $150,000 was allocated to this project. In Round 2 of the 2022\u201323 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Casey City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-CCCK"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24588], + "status": [true], + "title": [ + "Casey City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["bbb21bde-b799-4c6b-bbd0-6c32a3cb4bb4"] + }, + "sort": [ + "Casey City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20676:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/casey-fields-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a\u00a0new primary school.\u00a0The school will\u00a0help ease\u00a0enrolment pressures for surrounding schools and\u00a0meet\u00a0the needs\u00a0of a growing population. To ensure all of our future students had\u00a0the opportunity to meet their teachers and see what their new school is all about, we held a transition/orientation day on\u00a0Wednesday 27 November 2019,\u00a0Monday 20 January, and\u00a0Wednesday 22 January 2020. The school\u200b\u200b\u00a0includes a\u00a0performing arts and physical education building,\u00a0learning spaces and administration areas.\u00a0\u00a0 Livingston Family and Community Centre\u00a0is located next to Casey Fields Primary School, helping local\u00a0children make\u00a0a smooth transition from pre-school and reducing the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Further information on the school can be found on its official Facebook page. School name Casey Fields Primary School was originally known by the interim name of Casey Fields (Five Ways) Primary School while it was being planned and built. Casey Fields is a 76 hectare site, near the school in Cranbourne East, being developed as the premier outdoor sports facility in Melbourne's south east. The new name makes the school easily locatable, acknowledges the sporting facilities and keeps the identity of the area. The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable.", + "We developed a new playground area for students, as well as the local community out of school hours." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was provided in the 2016\u201317 State Budget to buy land in this area for a new school.In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for Casey Fields Primary School. The school received an additional $20.1 million in the 2018-19 State Budget for construction.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools.", + "In the 2020 Minor Capital Works Fund, the school was allocated $346,165." + ], + "field_funding_type_name": ["New School", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Casey Fields Primary School." + ], + "field_latitude": ["-38.120624", "-38.1200747501533"], + "field_latitude_longitude_value": ["-38.120624,145.297808"], + "field_latitude_value": ["-38.120624"], + "field_longitude": ["145.297808", "145.298546199938"], + "field_longitude_value": ["145.297808"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5570", "D1-01-5570"], + "field_project_title": ["New School", "Minor Capital Works Fund"], + "field_q_complete": ["Q1 2020", "Q4 2022"], + "field_start_date": ["Q2 2016", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Chapelton Rd"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20676], + "status": [true], + "title": ["Casey Fields Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d7239342-4675-49f1-b173-0249e102f383"] + }, + "sort": ["Casey Fields Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21167:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/casey-grammar-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe supported the school to\u00a0extend and refurbish the gymnasium. The project provided a new foyer area, staff office, student change room facilities, two PE storerooms, an outdoor education storeroom, and a multi-purpose classroom including an outdoor learning area.\u200b\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,330,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Casey Grammar School." + ], + "field_latitude": ["-38.10899"], + "field_latitude_longitude_value": ["-38.10899,145.29396"], + "field_latitude_value": ["-38.10899"], + "field_longitude": ["145.29396"], + "field_longitude_value": ["145.29396"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["03-1942"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2017"], + "field_start_date": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["3 New Holland Dr"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21167], + "status": [true], + "title": ["Casey Grammar School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bed9b177-c6ae-484e-a5a2-c8fd1b1b921a"] + }, + "sort": ["Casey Grammar School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21489:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/casey-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Secondary school students from the Casey area\u00a0have access to cutting-edge learning at the Casey Tech School, hosted by Chisholm Institute at its Berwick Campus.\u200b The Tech School is a high-tech learning environment. Its innovative education programs links with local industry to deliver real world learning. Students from 21 partner schools in Casey can access the Tech School throughout the year for specialised programs. Casey Tech School emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It\u00a0enhances the programs schools provide, and helps to\u00a0prepare students for the jobs of the future. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Casey Tech School" + ], + "field_latitude": ["-38.0320243835449"], + "field_latitude_longitude_value": [ + "-38.0320243835449,145.350021362305" + ], + "field_latitude_value": ["-38.0320243835449"], + "field_longitude": ["145.350021362305"], + "field_longitude_value": ["145.350021362305"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["TS-Ca"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Chisholm Institute, Berwick Campus, Kangan Dr" + ], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21489], + "status": [true], + "title": ["Casey Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["262ec1a6-eaed-40ce-a95e-795bf90cae30"] + }, + "sort": ["Casey Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20067:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/casterton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade the school. Our latest project will modernise the arts and craft block. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We updated classrooms and facilities at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.176 million.", + "In the 2018\u201319 State Budget $300,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Casterton Primary School." + ], + "field_latitude": ["-37.584888458251953", "-37.584328"], + "field_latitude_longitude_value": [ + "-37.584888458251953,141.40296936035156" + ], + "field_latitude_value": ["-37.584888458251953"], + "field_longitude": ["141.40296936035156", "141.402847"], + "field_longitude_value": ["141.40296936035156"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3311"], + "field_project_code": ["D1-01-2058", "01-2058"], + "field_project_title": [ + "Upgrade and Modernisation - Arts and Craft Block", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q3 2019"], + "field_start_date": ["Q2 2021", "Q2 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["14\u201324 McPherson St"], + "field_suburb": ["Casterton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20067], + "status": [true], + "title": ["Casterton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ef7b1d3a-bda3-40d4-bfbb-851c5e181e95"] + }, + "sort": ["Casterton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20774:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/casterton-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0Casterton Secondary College by demolishing older buildings that were no longer needed,\u00a0replacing them with new\u00a0student toilets,\u00a0locker areas, covered walkways between buildings, and undertaking\u00a0general classroom upgrades." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $759,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Casterton Secondary College" + ], + "field_latitude": ["-37.5889499"], + "field_latitude_longitude_value": ["-37.5889499,141.38692"], + "field_latitude_value": ["-37.5889499"], + "field_longitude": ["141.38692"], + "field_longitude_value": ["141.38692"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3311"], + "field_project_code": ["01-7695"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Mt Gambier Road"], + "field_suburb": ["Casterton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20774], + "status": [true], + "title": ["Casterton Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["47951e5a-ee08-4350-91af-b64c212b253e"] + }, + "sort": ["Casterton Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22659:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/castlemaine-child-care-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We replaced the flooring and repainted rooms to help Castlemaine Child Care Centre roll out kindergarten for three-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Castlemaine Child Care Centre" + ], + "field_latitude": ["-37.06293509"], + "field_latitude_longitude_value": ["-37.06293509,144.2156233"], + "field_latitude_value": ["-37.06293509"], + "field_longitude": ["144.2156233"], + "field_longitude_value": ["144.2156233"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3450"], + "field_project_code": ["15-270"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Templeton St"], + "field_suburb": ["Castlemaine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22659], + "status": [true], + "title": ["Castlemaine Child Care Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["98a2d92d-448b-4dcb-9151-0f4576452111"] + }, + "sort": ["Castlemaine Child Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20066:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/castlemaine-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built new general purpose classrooms and a centralised learning hub with a withdrawal area and a staff office. We also refurbished the building used for specialist studies including art and science, technology, engineering and mathematics (STEM), as well as upgrading student amenities and undertaking works to the outside decks.", + "We redeveloped the southwest corner of the school grounds into a safe play area for Prep\u2013Year 2 students, including a high boundary fence. A new shade sail over the play area was installed." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.206 million was allocated to the school.", + "In the 2020 Minor Capital Works Fund, the school was allocated $461,125." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Castlemaine North Primary School." + ], + "field_latitude": ["-37.0488", "-37.0578941"], + "field_latitude_longitude_value": ["-37.0488,144.22164"], + "field_latitude_value": ["-37.0488"], + "field_longitude": ["144.22164", "144.2184041"], + "field_longitude_value": ["144.22164"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3450"], + "field_project_code": ["01-2051", "D1-01-2051"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2019", "Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["270 Barker St"], + "field_suburb": ["Castlemaine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20066], + "status": [true], + "title": ["Castlemaine North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0141282c-1c56-4f40-98b8-2dc5541aad87"] + }, + "sort": ["Castlemaine North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19962:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/castlemaine-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We updated and refurbished classrooms and facilities in poor condition to improve standards across the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, the school was allocated $502,000." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Castlemaine Primary School." + ], + "field_latitude": ["-37.05995"], + "field_latitude_longitude_value": ["-37.05995,144.22302"], + "field_latitude_value": ["-37.05995"], + "field_longitude": ["144.22302"], + "field_longitude_value": ["144.22302"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3450"], + "field_project_code": ["01-119"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Mostyn & Urquhart St"], + "field_suburb": ["Castlemaine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19962], + "status": [true], + "title": ["Castlemaine Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a4a5a573-940b-40f4-97c5-4bc25916fbf9"] + }, + "sort": ["Castlemaine Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20931:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/castlemaine-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space, including new play equipment and landscaping.", + "We completed Stage 3 of the upgrade and modernisation at the school. This completes the second phase\u00a0of the Performers Precinct, as well as the administration area and\u00a0library and\u00a0artisans precincts\u200b.\u200b", + "W\u200b\u200be are consolidating Castlemaine Secondary College onto one site on Blakely Road, replacing existing buildings in four stages to develop four distinct learning precincts.\u200b\u00a0 \u200b Stages 1 and 2 involved: Stage 1 - The Wellbeing Centre\u00a0 Stage 2 - The Engineers' Precinct\u00a0 Stage 2B - Phase 1 of the Performers' Precinct." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $72,253.", + "The school has received an additional $12.256 million in the 2018\u201319 State Budget and through the Planned Maintenance Program.", + "In the 2013\u201314 State Budget, $7 million was allocated to the school. In the 2014\u201315 State Budget, $5.5 million was allocated to the school. In the 2015\u201316 State Budget, a further $2.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Castlemaine Secondary College" + ], + "field_latitude": ["-37.050833950001", "-37.048889"], + "field_latitude_longitude_value": [ + "-37.050833950001,144.224645300004" + ], + "field_latitude_value": ["-37.050833950001"], + "field_longitude": ["144.224645300004", "144.224609"], + "field_longitude_value": ["144.224645300004"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3450"], + "field_project_code": ["D2-01-8824", "D1-01-8824", "01-8824"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 1 and 2" + ], + "field_q_complete": ["Q4 2023", "Q1 2021", "Q4 2017"], + "field_start_date": ["Q2 2021", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Blakeley Rd"], + "field_suburb": ["Castlemaine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20931], + "status": [true], + "title": ["Castlemaine Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["33de6db7-68be-4769-91da-7e07666500f2"] + }, + "sort": ["Castlemaine Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28644:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/castlemaine-steiner-school-and-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded and expanded this kindergarten. We built a veranda and deck. This provides more flexible outdoor learning spaces that can be used in all weather. We also built an office space and improved the kitchen and bathrooms to make the kinder more inclusive." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $368,729.30 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Castlemaine Steiner School and Kindergarten." + ], + "field_latitude": ["-37.0817494"], + "field_latitude_longitude_value": ["-37.0817494,144.1572463"], + "field_latitude_value": ["-37.0817494"], + "field_longitude": ["144.1572463"], + "field_longitude_value": ["144.1572463"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3451"], + "field_project_code": ["elc-cssk"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["11 Rilens Rd"], + "field_suburb": ["Muckleford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28644], + "status": [true], + "title": ["Castlemaine Steiner School and Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["bc4e9636-f6c7-41ac-b0fc-5589601fcdc0"] + }, + "sort": ["Castlemaine Steiner School and Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20998:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/catherine-mcauley-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0upgrade the Coolock campus in Junortoun (St Vincents Road\u200b). The project involved\u00a0demolishing existing buildings and constructing 14 general learning areas and associated amenities.\u00a0\u200b The school contributed funds to the project, which cost a total\u00a0of $9 million.\u200b\u200b\u200b\u200b\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1 million has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Catherine McAuley College." + ], + "field_latitude": ["-36.75146"], + "field_latitude_longitude_value": ["-36.75146,144.27891"], + "field_latitude_value": ["-36.75146"], + "field_longitude": ["144.27891"], + "field_longitude_value": ["144.27891"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["02-130"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Barkly St"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20998], + "status": [true], + "title": ["Catherine McAuley College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c1f97024-928f-4ac5-9bd5-a94473dc9030"] + }, + "sort": ["Catherine McAuley College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21054:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/catholic-college-wodonga"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0refurbish\u00a0the science classrooms, preparation rooms, staff office and associated areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $500,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Catholic College Wodonga." + ], + "field_latitude": ["-36.12899"], + "field_latitude_longitude_value": ["-36.12899,146.86156"], + "field_latitude_value": ["-36.12899"], + "field_longitude": ["146.86156"], + "field_longitude_value": ["146.86156"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["02-1800"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Bowman Ct"], + "field_suburb": ["Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21054], + "status": [true], + "title": ["Catholic College Wodonga"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6c710410-303f-4619-9436-c1db3441258d"] + }, + "sort": ["Catholic College Wodonga"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21079:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/catholic-regional-college-caroline-springs"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We assisted the school to\u00a0build\u00a0a performing arts facility and associated areas.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools $500,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Catholic Regional College Caroline Springs." + ], + "field_latitude": ["-37.72892"], + "field_latitude_longitude_value": ["-37.72892,144.73958"], + "field_latitude_value": ["-37.72892"], + "field_longitude": ["144.73958"], + "field_longitude_value": ["144.73958"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3023"], + "field_project_code": ["02-2044"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["10 College Dr"], + "field_suburb": ["Caroline Springs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21079], + "status": [true], + "title": ["Catholic Regional College Caroline Springs"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dbd81183-3686-4c04-a692-186b9006cc60"] + }, + "sort": ["Catholic Regional College Caroline Springs"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21055:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/catholic-regional-college-melton"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the\u00a0refurbishing of\u00a0the gymnasium,\u00a0providing\u00a0students with a\u00a0resource centre, library and associated areas. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$2,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Catholic Regional College Melton." + ], + "field_latitude": ["-37.677303"], + "field_latitude_longitude_value": ["-37.677303,144.550507"], + "field_latitude_value": ["-37.677303"], + "field_longitude": ["144.550507"], + "field_longitude_value": ["144.550507"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["02-1811"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["109-141 Bulman's Road"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21055], + "status": [true], + "title": ["Catholic Regional College Melton"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8475d5f1-c9d8-46c8-9dbb-4ae05dc007d7"] + }, + "sort": ["Catholic Regional College Melton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21058:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/catholic-regional-college-north-keilor"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Catholic Regional College North Keilor to refurbish\u00a0the multi-purpose hall and associated spaces.\u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$2,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Catholic Regional College North Keilor" + ], + "field_latitude": ["-37.700642"], + "field_latitude_longitude_value": ["-37.700642,144.805527"], + "field_latitude_value": ["-37.700642"], + "field_longitude": ["144.805527"], + "field_longitude_value": ["144.805527"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3036"], + "field_project_code": ["02-1835"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Santa Monica Drive"], + "field_suburb": ["KEILOR NORTH"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21058], + "status": [true], + "title": ["Catholic Regional College North Keilor"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["48a1ab19-b670-4161-9494-677d1db92ba5"] + }, + "sort": ["Catholic Regional College North Keilor"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21254:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/caulfield-grammar-early-childhood-centre-malvern-campus" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0remodelled Caulfield Grammar Early Childhood Centre\u00a0\u2013 Malvern Campus\u00a0to allow children and staff to make better use of the space. The upgrade includes a new kitchen in the piazza, refurbished bathrooms, an upgraded office area and additional storage space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 Building Blocks Improvement Grant $200,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Caulfield Grammar Early Childhood Centre \u2013 Malvern Campus" + ], + "field_latitude": ["-37.857818603515625"], + "field_latitude_longitude_value": [ + "-37.857818603515625,145.05046081542969" + ], + "field_latitude_value": ["-37.857818603515625"], + "field_longitude": ["145.05046081542969"], + "field_longitude_value": ["145.05046081542969"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3146"], + "field_project_code": ["15-3496"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["5 Willoby Av"], + "field_suburb": ["Glen Iris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21254], + "status": [true], + "title": [ + "Caulfield Grammar Early Childhood Centre \u2013 Malvern Campus" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5acff04e-3274-4d94-862e-03025a0bf2e5"] + }, + "sort": ["Caulfield Grammar Early Childhood Centre – Malvern Campus"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20631:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/caulfield-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to redevelop the playground, install new furniture and repurpose outdoor features." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $66,603." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Caulfield Primary School" + ], + "field_latitude": ["-37.8868669"], + "field_latitude_longitude_value": ["-37.8868669,145.0203401"], + "field_latitude_value": ["-37.8868669"], + "field_longitude": ["145.0203401"], + "field_longitude_value": ["145.0203401"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3162"], + "field_project_code": ["01-5489"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["724 Glen Huntly Rd"], + "field_suburb": ["Caulfield South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20631], + "status": [true], + "title": ["Caulfield Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a2e9f152-8572-4a0d-abf4-bd5160faccf9"] + }, + "sort": ["Caulfield Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20288:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/caulfield-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We built an outdoor inclusive learning space. It includes decking and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 6 of the Inclusive Schools Fund, this project received $57,947" + ], + "field_funding_type_name": ["Planning", "Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Caulfield South Primary School" + ], + "field_latitude": ["-37.895199"], + "field_latitude_longitude_value": ["-37.895199,145.030499"], + "field_latitude_value": ["-37.895199"], + "field_longitude": ["145.030499"], + "field_longitude_value": ["145.030499"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3162"], + "field_project_code": ["D1-01-4315", "01-4315"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Subject to future funding", "Q1 2023"], + "field_start_date": ["Q2 2023", "Q2 2021"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["24 Bundeera Road"], + "field_suburb": ["Caulfield South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20288], + "status": [true], + "title": ["Caulfield South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68df1427-ef5d-41d2-95e6-87a11fb6dfb8"] + }, + "sort": ["Caulfield South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19956:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cavendish-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the undercover sports area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $446,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cavendish Primary School." + ], + "field_latitude": ["-37.5308438"], + "field_latitude_longitude_value": ["-37.5308438,142.0396285"], + "field_latitude_value": ["-37.5308438"], + "field_longitude": ["142.0396285"], + "field_longitude_value": ["142.0396285"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3314"], + "field_project_code": ["01-116"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["8\u201310 Barker St"], + "field_suburb": ["Cavendish"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19956], + "status": [true], + "title": ["Cavendish Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5514d482-aa3e-4638-a76b-9362c8f7b9ee"] + }, + "sort": ["Cavendish Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24584:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/central-goldfields-shire-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Central Goldfields Shire Council plan to meet the future kindergarten needs of their local community. They will create a master plan that considers future sites and designs for an integrated early centre that may include a kindergarten as well as community and family services. They will work with the community, early years experts, planners, and designers to establish this master plan. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of Central Goldfields Shire Kindergarten" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-CGSK"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24584], + "status": [true], + "title": ["Central Goldfields Shire Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f26c2624-315a-4cbc-a6d1-b20190ea4238"] + }, + "sort": ["Central Goldfields Shire Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20977:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/centre-higher-education-studies"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built the Centre for Higher Education Studies (CHES)\u00a0to further improve educational outcomes for high-achieving and high-ability senior\u00a0secondary school students across Victoria. CHES\u00a0students\u00a0can study first-year university\u00a0courses and select VCE subjects, accompanied by an enhancement and enrichment program. This 'head start' on tertiary courses allows our most capable students to undertake study aligned to their skills and interests that may contribute\u00a0to their ATAR, while\u00a0also being considered for\u00a0university credits. The multistorey centre, constructed on land purchased from the Melbourne High School Foundation, includes an auditorium, technology-rich learning spaces and tertiary-standard science and design labs. Students remain enrolled at their chosen secondary school and are able to undertake a course at CHES as part of their VCE program. To support rural and regional students, all CHES programs are accessible\u00a0through virtual platforms as well as\u00a0on-site. For more information regarding CHES programs and student intake, please visit the CHES website. Principal appointment Stewart Milner was appointed as the principal for CHES in South Yarra. Stewart is a passionate educator who has worked as a teacher and principal for over 20 years, most recently as principal of Coburg High School and before that as assistant principal at Suzanne Cory High School in Werribee. Throughout his career, Stewart has driven innovation in education as the driving force behind the establishment of several university partnerships that have provided extra opportunities to staff and students \u2013 and will cement CHES as an inclusive centre of excellence for all Victorian students. Stewart considers it an enormous privilege to lead CHES is excited to be establishing the school as an inclusive centre of excellence for all Victorian students. Information events We hosted online information events for students and parents across July and August 2022." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $27.5 million was allocated to the centre.\u00a0 In the 2016\u201317 State Budget, $12 million\u00a0was\u00a0allocated to schools across the State for planning. This included funding for Melbourne High School Gifted Academy\u00a0which was renamed the Centre for Higher Education Studies." + ], + "field_funding_type_name": ["New Centre"], + "field_landing_page_summary": [ + "Learn more about the Centre for Higher Education Studies." + ], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Welcome to the Centre for Higher Education Studies" + ], + "field_postcode": ["3141"], + "field_project_code": ["01-8917"], + "field_project_title": ["New Centre"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["669 Chapel St"], + "field_suburb": ["South Yarra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20977], + "status": [true], + "title": ["Centre for Higher Education Studies"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["978c6437-66b4-404b-a452-09aa62a6dc26"] + }, + "sort": ["Centre for Higher Education Studies"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20021:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ceres-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive outdoor learning space, including seating and sensory equipment.", + "We upgraded\u00a0and modernised\u00a0facilities at the school including: the library a general purpose classroom block the administration area.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2017\u201318 State Budget, $653,000 was allocated to the school. Further funding of $600,000 was allocated to the school in the 2018\u201319 State Budget." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ceres Primary School" + ], + "field_latitude": ["-38.173549", "-38.173920"], + "field_latitude_longitude_value": ["-38.173549,144.266732"], + "field_latitude_value": ["-38.173549"], + "field_longitude": ["144.266732", "144.266785"], + "field_longitude_value": ["144.266732"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3221"], + "field_project_code": ["D1-01-1602", "01-1602"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2024", "Q3 2019"], + "field_start_date": ["Q4 2021", "Q2 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["605 Barrabool Rd"], + "field_suburb": ["Ceres"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20021], + "status": [true], + "title": ["Ceres Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["77342bae-50af-41a9-9bff-f73a607ad648"] + }, + "sort": ["Ceres Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22662:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chabad-institutions-australia-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We funded Project Renew, which updated and upgraded equipment that encourages play and meaningful friendships." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $60,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Chabad Institutions of Australia Inc" + ], + "field_latitude": ["-37.86799821"], + "field_latitude_longitude_value": ["-37.86799821,145.0000424"], + "field_latitude_value": ["-37.86799821"], + "field_longitude": ["145.0000424"], + "field_longitude_value": ["145.0000424"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3183"], + "field_project_code": ["15-CHABAD"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["88 Hotham St"], + "field_suburb": ["St Kilda East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22662], + "status": [true], + "title": ["Chabad Institutions of Australia Inc"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a0ce2dfc-b644-445f-9e51-8e90bb459e27"] + }, + "sort": ["Chabad Institutions of Australia Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21158:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chairo-christian-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0upgrade\u00a0the library/resource centre and junior school.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $840,428 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Chairo Christian School." + ], + "field_latitude": ["-38.1428299"], + "field_latitude_longitude_value": ["-38.1428299,145.87846"], + "field_latitude_value": ["-38.1428299"], + "field_longitude": ["145.87846"], + "field_longitude_value": ["145.87846"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["03-1872"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["76 Balfour Rd"], + "field_suburb": ["Drouin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21158], + "status": [true], + "title": ["Chairo Christian School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["21dc1b37-17a0-42e6-8b3d-4fd11c81d7d2"] + }, + "sort": ["Chairo Christian School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20533:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chalcot-lodge-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a series of covered walkways to provide protection against the weather.", + "We created an indoor inclusive space with\u00a0materials to stimulate the senses, such as colours, textures and vegetation. It also has suspended play nets, a grassy hill, a tunnel and a covered teaching space with a performance area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $351,665.", + "In 2018, $175,500 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Chalcot Lodge Primary School." + ], + "field_latitude": ["-37.9700605935576", "-37.969551"], + "field_latitude_longitude_value": [ + "-37.9700605935576,145.244937728111" + ], + "field_latitude_value": ["-37.9700605935576"], + "field_longitude": ["145.244937728111", "145.247559"], + "field_longitude_value": ["145.244937728111"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["D1-01-5231", "01-5231"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2022", "Q2 2020"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Primrose Hill Close"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20533], + "status": [true], + "title": ["Chalcot Lodge Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e5eba4cc-b594-4779-9299-e353620ec9c4"] + }, + "sort": ["Chalcot Lodge Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20649:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chandler-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We\u00a0built\u00a0a Learning Community building, with flexible learning spaces for group and collaborative learning. We\u00a0also built a new library, administration areas and a Da Vinci Studio for innovative cross-curriculum art and science projects. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,106", + "In the 2016-17 State Budget, $3 million has been allocated to the school. In the 2015-16 State Budget, $500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Chandler Park Primary School" + ], + "field_latitude": ["-37.992396", "-37.9926"], + "field_latitude_longitude_value": ["-37.992396,145.180477"], + "field_latitude_value": ["-37.992396"], + "field_longitude": ["145.180477", "145.18163"], + "field_longitude_value": ["145.180477"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["D1-01-5533", "01-5533"], + "field_project_title": [ + "Inclusive Schools Fund - Round 9", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2025", "Q2 2018"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Cochrane Avenue"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20649], + "status": [true], + "title": ["Chandler Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c1d6d0d7-50d1-4534-a518-9593e6611f4f"] + }, + "sort": ["Chandler Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20960:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/charles-la-trobe-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We demolished\u00a0old facilities and constructed\u00a0a new school. The facilities are built around a central village green, creating a heart for the\u00a0school.\u00a0\u200b \u00a0", + "We built a community kitchen garden that promotes inclusivity, sustainability, and the health and wellbeing of students and parents.", + "\u200bWe built\u00a0a creative play and outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, the school shared in $7 million of planning funding. The school has received an additional $6 million in funding.", + "In 2018, $126,241 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "in 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Charles La Trobe P-12 College" + ], + "field_latitude": ["-37.728081"], + "field_latitude_value": ["-37.728081"], + "field_longitude": ["145.058334"], + "field_longitude_value": ["145.058334"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3085"], + "field_project_code": ["01-8890", "D1-01-8890", "D2-01-8890"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 4", + "Inclusive Schools Fund - Round 5" + ], + "field_q_complete": ["Q4 2019", "Q1 2020", "Q3 2021"], + "field_start_date": ["Q4 2018", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["235 Kingsbury Dr"], + "field_suburb": ["Macleod West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20960], + "status": [true], + "title": ["Charles La Trobe P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["329b27af-26dd-48fa-9b98-866b8ed009a1"] + }, + "sort": ["Charles La Trobe P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21235:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/charlton-district-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the kindergarten\u00a0\u200bin partnership with Buloke Shire Council.\u00a0 This included increasing capacity for 3 and 4-year-olds and building facilities for maternal and child health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was allocated $825,746 through the Children's Facilities Capital Program. In addition, in 2018\u201319 this project was allocated $350,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Charlton & District Kindergarten." + ], + "field_latitude": ["-36.269477"], + "field_latitude_longitude_value": ["-36.269477,143.349691"], + "field_latitude_value": ["-36.269477"], + "field_longitude": ["143.349691"], + "field_longitude_value": ["143.349691"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3525"], + "field_project_code": ["15-289"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Armstrong St"], + "field_suburb": ["Charlton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21235], + "status": [true], + "title": ["Charlton & District Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ab42dec-bb95-47b4-b707-8b95e45f5487"] + }, + "sort": ["Charlton & District Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20287:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chatham-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. The works included:refurbishing Block Aminor re-purpose of rooms within the Building the Education Revolution (BER)landscaping upgradesdemolishing the music building and Block D.", + "We built an outdoor sensory area and accessible kitchen garden precinct at Chatham Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $5.39 million.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Chatham Primary School" + ], + "field_latitude": ["-37.830394744873047", "-37.818"], + "field_latitude_longitude_value": [ + "-37.830394744873047,145.10574340820312" + ], + "field_latitude_value": ["-37.830394744873047"], + "field_longitude": ["145.10574340820312", "145.09324"], + "field_longitude_value": ["145.10574340820312"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3127"], + "field_project_code": ["D1-01-4314", "01-4314"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q2 2022"], + "field_start_date": ["Q4 2020", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Weybridge St"], + "field_suburb": ["Surrey Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20287], + "status": [true], + "title": ["Chatham Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["620d822c-dec6-4d7e-adff-6c12797d7dc3"] + }, + "sort": ["Chatham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21422:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cheder-menachem-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Cheder Incorporated\u00a0upgraded\u00a0and extended\u00a0Cheder Menachem Early Learning Centre to provide an additional kindergarten room.\u00a0 \u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016-2017 Children's Facilities Capital Program Major Grants, $350,000 has been allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cheder Menachem Early Learning Centre" + ], + "field_latitude": ["-37.865921"], + "field_latitude_longitude_value": ["-37.865921,144.999878"], + "field_latitude_value": ["-37.865921"], + "field_longitude": ["144.999878"], + "field_longitude_value": ["144.999878"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3183"], + "field_project_code": ["ELC-6"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["67 Hotham Street"], + "field_suburb": ["East St Kilda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21422], + "status": [true], + "title": ["Cheder Menachem Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["92810444-daa3-428f-b12e-8a4c67f635d6"] + }, + "sort": ["Cheder Menachem Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21198:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chelsea-heights-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bKingston City Council have\u00a0renovated\u00a0and extended the kindergarten.\u00a0 \u200b The upgrade\u00a0included an additional indoor learning space, a multipurpose meeting room, enhanced staff amenities and planning spaces, and additional covered outdoor spaces.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2014\u201315, $350,000 was allocated to the kindergarten." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Chelsea Heights Kindergarten" + ], + "field_latitude": ["-38.04323"], + "field_latitude_longitude_value": ["-38.04323,145.13376"], + "field_latitude_value": ["-38.04323"], + "field_longitude": ["145.13376"], + "field_longitude_value": ["145.13376"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["15-1194"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["29 Third Av"], + "field_suburb": ["Chelsea Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21198], + "status": [true], + "title": ["Chelsea Heights Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bd374ce5-392d-4613-b66d-adb31490a3e4"] + }, + "sort": ["Chelsea Heights Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20186:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chelsea-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0created a new inclusive learning space for the students at Chelsea Heights Primary School.\u00a0 It includes an\u00a0indoor/outdoor learning environment, accessible toilets for all students\u00a0and an\u00a0outdoor sensory garden.\u200b", + "\u200bWe upgraded\u00a0and modernised the school's facilities.\u00a0We expanded\u00a0the library and repurposed space to create additional classrooms and\u00a0a\u00a0state-of-the-art administration area. The school\u00a0now has\u00a0better connections between indoor and\u00a0outdoor learning environments, new\u00a0play areas and landscaping.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the Inclusive Schools Fund, $200,000 was allocated to the school. In Round 2 of the Inclusive Schools Fund, a further $200,000 was allocated to the school.", + "In the 2018\u201319 State Budget $4.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Chelsea Heights Primary School" + ], + "field_latitude": ["-38.04612"], + "field_latitude_longitude_value": ["-38.04612,145.13833"], + "field_latitude_value": ["-38.04612"], + "field_longitude": ["145.13833"], + "field_longitude_value": ["145.13833"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["01-3341", "D1-01-3341"], + "field_project_title": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2018", "Q1 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["194 Thames Promenade"], + "field_suburb": ["Chelsea Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20186], + "status": [true], + "title": ["Chelsea Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c3b56521-a68a-49ac-a0f6-4f9b70b32b68"] + }, + "sort": ["Chelsea Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20221:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chelsea-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We're upgrading and modernising the school. We're building new multipurpose, art and music spaces and toilets. This ensures students are learning in an environment designed for delivering modern education.", + "We\u00a0built an all-inclusive oasis space that\u00a0supports the development of students of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $3.889 million.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Chelsea Primary School." + ], + "field_latitude": ["-38.054848", "-38.05518"], + "field_latitude_longitude_value": ["-38.054848,145.122358"], + "field_latitude_value": ["-38.054848"], + "field_longitude": ["145.122358", "145.1225"], + "field_longitude_value": ["145.122358"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["D1-01-3729", "01-3729"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2024", "Q3 2021"], + "field_start_date": ["Q2 2021", "Q4 2019"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["34-44 Argyle Av"], + "field_suburb": ["Chelsea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20221], + "status": [true], + "title": ["Chelsea Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5845acfa-1077-445e-a7e1-a5c9013e21c0"] + }, + "sort": ["Chelsea Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21423:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chelsea-primary-school-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Kingston City Council built a new early learning centre on the Chelsea Primary School site.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2014\u201315, $2 million was allocated to the early learning centre through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Chelsea Primary School Early Learning Centre" + ], + "field_latitude": ["-38.05518"], + "field_latitude_longitude_value": ["-38.05518,145.1225"], + "field_latitude_value": ["-38.05518"], + "field_longitude": ["145.1225"], + "field_longitude_value": ["145.1225"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["ELC-7"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["34-44 Argyle Av"], + "field_suburb": ["Chelsea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21423], + "status": [true], + "title": ["Chelsea Primary School Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c0bd93f9-12f6-48f3-af7c-8db90aef6c22"] + }, + "sort": ["Chelsea Primary School Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20343:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cheltenham-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the student toilet block to improve amenity, cleanliness and hygiene.", + "We helped the school construct a sensory garden, creating a new play and learning space for students of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $499,127.", + "In the 2020 Minor Capital Works Fund the school was allocated $104,165." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cheltenham East Primary School" + ], + "field_latitude": ["-37.965256", "-37.9640715494103"], + "field_latitude_longitude_value": ["-37.965256,145.068353"], + "field_latitude_value": ["-37.965256"], + "field_longitude": ["145.068353", "145.061582403993"], + "field_longitude_value": ["145.068353"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["D1-01-4754", "01-4754"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2023", "Q4 2021"], + "field_start_date": ["Q4 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Silver St"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20343], + "status": [true], + "title": ["Cheltenham East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["53691b9f-8e47-47bb-b847-e7cc172717fb"] + }, + "sort": ["Cheltenham East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27784:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cheltenham-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cheltenham Primary School" + ], + "field_latitude": ["-37.968608"], + "field_latitude_longitude_value": ["-37.968608,145.054635"], + "field_latitude_value": ["-37.968608"], + "field_longitude": ["145.054635"], + "field_longitude_value": ["145.054635"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["01-84"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["231 Charman Rd"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27784], + "status": [true], + "title": ["Cheltenham Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["7e2e0c65-7fa6-4e76-a499-85c87fdb3ebd"] + }, + "sort": ["Cheltenham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20776:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cheltenham-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to modernise the college and give students better learning opportunities. We will replace the Year 7 relocatable classrooms with permanent buildings. We will also work with the school to develop a master plan for future improvements.", + "We are replacing the portable toilet block in the Year 7 village to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We built new junior and senior building hubs and redeveloped the library to form part of the new Year\u2019s 10\u201312 Senior Hub. We also undertook\u00a0landscaping works.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $7.3 million", + "In the 2022\u201323 State Budget the project received $413,353 from the Minor Capital Works Fund.", + "In the 2016\u201317 State Budget, $6.3 million has been allocated to the school. In the 2015\u201316 State Budget, $700,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cheltenham Secondary College" + ], + "field_latitude": ["-37.953762", "-37.95304"], + "field_latitude_longitude_value": ["-37.953762,145.068676"], + "field_latitude_value": ["-37.953762"], + "field_longitude": ["145.068676", "145.06852"], + "field_longitude_value": ["145.068676"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["D2-01-7720", "D1-01-7720", "01-7720"], + "field_project_title": [ + "Upgrade and Modernisation - Year 7 Classrooms and Masterplan", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2026", "Q1 2025", "Q1 2019"], + "field_start_date": ["Q2 2023", "Q2 2022", "Q3 2017"], + "field_status_name": ["Design", "Design", "Complete"], + "field_street_address": ["73-75 Bernard St"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20776], + "status": [true], + "title": ["Cheltenham Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["82cce262-0df7-44b8-9bde-175a769aec44"] + }, + "sort": ["Cheltenham Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19939:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chewton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised this school, including refurbishing the historic main building.", + "We built a music garden for students. We provided a combination of instruments made commercially and those made by the school community from recycled materials.", + "\u200bWe upgraded the multi purpose room, library and associated areas at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.423 million.", + "In 2018, $92,200 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2016\u201317 State Budget, $90,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Chewton Primary School" + ], + "field_latitude": ["-37.0820526", "-37.08205"], + "field_latitude_longitude_value": ["-37.0820526,144.2610478"], + "field_latitude_value": ["-37.0820526"], + "field_longitude": ["144.2610478", "144.26105"], + "field_longitude_value": ["144.2610478"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3451"], + "field_project_code": ["D2-01-1054", "D1-01-1054", "01-1054"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q1 2023", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["1 Hunter St"], + "field_suburb": ["Chewton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19939], + "status": [true], + "title": ["Chewton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a5ddc43e-2d4e-4fe1-986e-48b4651206f9"] + }, + "sort": ["Chewton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21424:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chiltern-early-years-education-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bIndigo Shire Council has upgraded the Chiltern Community Centre building, located opposite the Chiltern Kindergarten, to create the Chiltern Early Years Hub. \u00a0\u200b\u200b\u200b\u200b This project renovated the\u00a0community building to include two children rooms,\u00a0a sleeping room and\u00a0amenities. The project will provide long day care to children aged six\u00a0weeks to four\u00a0years of age, and will\u00a0allow the\u00a0kindergarten program to increase its\u00a0hours and days of operation. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016-2017 Children's Facilities Capital Program Major Grants, $238,897 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Chiltern Early Years Education Hub" + ], + "field_latitude": ["-36.14935"], + "field_latitude_longitude_value": ["-36.14935,146.61026"], + "field_latitude_value": ["-36.14935"], + "field_longitude": ["146.61026"], + "field_longitude_value": ["146.61026"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["ELC-8"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["52 Main Street"], + "field_suburb": ["Chiltern"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21424], + "status": [true], + "title": ["Chiltern Early Years Education Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ced0d7ac-a8e1-4b43-a593-16dd2c13f5c8"] + }, + "sort": ["Chiltern Early Years Education Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20069:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chilwell-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We\u00a0upgraded\u00a0and\u00a0modernised facilities\u00a0to improve standards across the school.", + "We helped the school upgrade 2 playground areas. This included 'soft-fall' surfacing and new play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $298,574", + "In the 2017\u201318 State Budget, $2.4 million was allocated to the school", + "In the 2020 Minor Capital Works Fund the school was allocated $150,125." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Chilwell Primary School." + ], + "field_latitude": ["-38.155114", "-38.155010", "-38.1552026"], + "field_latitude_longitude_value": ["-38.155114,144.345381"], + "field_latitude_value": ["-38.155114"], + "field_longitude": ["144.345381", "144.345080", "144.3448156"], + "field_longitude_value": ["144.345381"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["D2-01-2061", "01-2061", "D1-01-2061"], + "field_project_title": [ + "Inclusive Schools Fund - Round 9", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2019", "Q4 2021"], + "field_start_date": ["Q4 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["313a Pakington St"], + "field_suburb": ["Newtown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20069], + "status": [true], + "title": ["Chilwell Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c87f5f5-a40e-4e9a-b58a-a5ffb46deadf"] + }, + "sort": ["Chilwell Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20516:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/chirnside-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We're upgrading the oval with new natural turf and improving irrigation and drainage. This will ensure it is more usable and safe for physical education, interschool sport and community use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $158,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Chirnside Park Primary School." + ], + "field_latitude": ["-37.7501875"], + "field_latitude_longitude_value": ["-37.7501875,145.3113259"], + "field_latitude_value": ["-37.7501875"], + "field_longitude": ["145.3113259"], + "field_longitude_value": ["145.3113259"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3116"], + "field_project_code": ["01-5194"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["66 Kimberley Dr"], + "field_suburb": ["Chirnside Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20516], + "status": [true], + "title": ["Chirnside Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dd7cef65-d02b-4d32-b5b9-9dfdc122ceb2"] + }, + "sort": ["Chirnside Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21334:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/christ-church-grammar-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The kindergarten has been modernised to make it more comfortable, more functional, with increased available play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $500,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Christ Church Grammar Kindergarten." + ], + "field_latitude": ["-37.840570"], + "field_latitude_longitude_value": ["-37.840570,144.985490"], + "field_latitude_value": ["-37.840570"], + "field_longitude": ["144.985490"], + "field_longitude_value": ["144.985490"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3141"], + "field_project_code": ["15-836"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["621 Punt Rd"], + "field_suburb": ["South Yarra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21334], + "status": [true], + "title": ["Christ Church Grammar Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7191a238-9c20-4f4e-877c-7d7389dc2979"] + }, + "sort": ["Christ Church Grammar Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21019:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/christ-our-holy-redeemer-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported\u00a0Christ Our Holy Redeemer School to\u00a0refurbish general learning areas, the library space, and complete\u00a0associated works to provide contemporary learning spaces. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2017-18, $1,450,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Christ Our Holy Redeemer School" + ], + "field_latitude": ["-37.89614"], + "field_latitude_longitude_value": ["-37.89614,145.10583"], + "field_latitude_value": ["-37.89614"], + "field_longitude": ["145.10583"], + "field_longitude_value": ["145.10583"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["02-1584"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["43 Ferntree Gully Road"], + "field_suburb": ["OAKLEIGH EAST"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21019], + "status": [true], + "title": ["Christ Our Holy Redeemer School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["584ec22d-8001-47d5-83c6-cce5cdd0b0bc"] + }, + "sort": ["Christ Our Holy Redeemer School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21040:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/christ-king-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school replace 2 relocatable classrooms with a permanent building offering: 2 prep classrooms a flexible breakout space a teachers' office toilets. This project also refurbished other classrooms. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020-21 capital funding program for non-government schools, the school received $1.062 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Christ the King School" + ], + "field_latitude": ["-38.1664686"], + "field_latitude_longitude_value": ["-38.1664686,144.3924544"], + "field_latitude_value": ["-38.1664686"], + "field_longitude": ["144.3924544"], + "field_longitude_value": ["144.3924544"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["02-1659"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["79 Wilsons Road"], + "field_suburb": ["NEWCOMB"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21040], + "status": [true], + "title": ["Christ the King School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a0b66efe-6f70-474c-9508-483b2e570791"] + }, + "sort": ["Christ the King School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28152:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/christian-college-geelong"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T14:15:37+11:00"], + "field_about_project_processed": [ + "We are helping the school build stage 2A. Works include building 2 general learning areas with outdoor learning space, a multi-purpose gymnasium, staff offices, kitchenette, change rooms and amenities and refurbishing the admin building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Christian College Geelong." + ], + "field_latitude": ["-38.33860701383191"], + "field_latitude_longitude_value": [ + "-38.33860701383191,144.29110091262734" + ], + "field_latitude_value": ["-38.33860701383191"], + "field_longitude": ["144.29110091262734"], + "field_longitude_value": ["144.29110091262734"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3228"], + "field_project_code": ["02-1814"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["248 Great Ocean Rd"], + "field_suburb": ["Jan Juc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28152], + "status": [true], + "title": ["Christian College Geelong"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d0482d75-b61c-420f-a844-a392b0712fb0"] + }, + "sort": ["Christian College Geelong"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21151:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/christian-college-highton"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Christian College Highton to\u00a0build\u00a0a modular classroom complex for the junior school\u00a0and undertake\u00a0associated site works, including landscaping.\u00a0As part of the project, access and carparking works were also completed at the Surf Coast campus.\u00a0 \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-18 Capital Funding Program for Non-Government Schools, $1,576,076 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Christian College Highton" + ], + "field_latitude": ["-38.18515"], + "field_latitude_longitude_value": ["-38.18515,144.31308"], + "field_latitude_value": ["-38.18515"], + "field_longitude": ["144.31308"], + "field_longitude_value": ["144.31308"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["03-1814"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["18 Burdekin Road"], + "field_suburb": ["HIGHTON"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21151], + "status": [true], + "title": ["Christian College Highton"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["999e464b-9099-46b9-8481-4d6decde9891"] + }, + "sort": ["Christian College Highton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27772:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/christmas-hills-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $96,940." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Christmas Hills Primary School" + ], + "field_latitude": ["-37.653515"], + "field_latitude_longitude_value": ["-37.653515,145.304199"], + "field_latitude_value": ["-37.653515"], + "field_longitude": ["145.304199"], + "field_longitude_value": ["145.304199"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3775"], + "field_project_code": ["01-1362"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["1409 Eltham-yarra Glen Rd"], + "field_suburb": ["Christmas Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27772], + "status": [true], + "title": ["Christmas Hills Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d80cea23-bedf-430d-b4f6-b34cd59af1de"] + }, + "sort": ["Christmas Hills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21311:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/church-street-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Maribyrnong City Council have built Church Street Children\u2019s Centre, a new early learning facility providing kindergarten and long day care services. The state-of-the-art building is\u00a0accessible for people of all abilities and provides high quality programs for the diverse local community, with a planning room, a central and flexible learning area and a large outdoor play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $300,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Church Street Children's Centre" + ], + "field_latitude": ["-37.793133"], + "field_latitude_longitude_value": ["-37.793133,144.878006"], + "field_latitude_value": ["-37.793133"], + "field_longitude": ["144.878006"], + "field_longitude_value": ["144.878006"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3012"], + "field_project_code": ["15-560"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["47 Church St"], + "field_suburb": ["West Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21311], + "status": [true], + "title": ["Church Street Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["723c37c1-6359-44e0-a46a-45eda4ad32bd"] + }, + "sort": ["Church Street Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20484:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/churchill-north-primary-school"], + "changed": ["2023-11-02T12:22:26+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school, including Block C and Block D.We worked with school leaders to ensure our work aligned with their educational goals. This also allowed us to target improvements where they were needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $3.448 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Churchill North Primary School" + ], + "field_latitude": ["-38.315387725830078"], + "field_latitude_longitude_value": [ + "-38.315387725830078,146.42181396484375" + ], + "field_latitude_value": ["-38.315387725830078"], + "field_longitude": ["146.42181396484375"], + "field_longitude_value": ["146.42181396484375"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3842"], + "field_project_code": ["01-5117"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Coolabah Drive"], + "field_suburb": ["Churchill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20484], + "status": [true], + "title": ["Churchill North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fbac2d30-2edf-49a8-9ca2-43aab0de0a1a"] + }, + "sort": ["Churchill North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20422:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/churchill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school\u00a0was allocated funding to upgrade facilities. The school used funds to maintain the stormwater infrastructure and the Block A and Block B facilities, as well as constructing new synthetic outdoor courts and fences. \u200b", + "We demolished and replaced\u00a0Block A, the school\u2019s main teaching and administration block, with a new permanent modular building that\u00a0includes state-of-the-art classrooms and facilities. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school\u00a0is benefiting from the\u00a0Permanent Modular School Buildings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$299,000 was allocated to the school in the 2016-17 State Budget update.", + "In the 2019\u201320 State Budget, the school received $2.634 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Churchill Primary School." + ], + "field_latitude": ["-38.31051"], + "field_latitude_longitude_value": ["-38.31051,146.41572"], + "field_latitude_value": ["-38.31051"], + "field_longitude": ["146.41572"], + "field_longitude_value": ["146.41572"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3842"], + "field_project_code": ["01-4970", "D1-01-4970"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q1 2018", "Q4 2020"], + "field_start_date": ["Q4 2017", "Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Coleman Pde"], + "field_suburb": ["Churchill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20422], + "status": [true], + "title": ["Churchill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["65025188-270d-4e6d-b19f-8eb31017b041"] + }, + "sort": ["Churchill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23328:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cire-childrens-services-mount-evelyn"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We are refurbishing Cire Services to improve its functionality and to make it more accessible to staff and students of all abilities. We're upgrading the flooring and widening the deck to create an inclusive indoor/outdoor learning area. We\u2019ll also widen the entry gate and main entrance door to provide better access for wheelchairs and prams." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childood Refurbishment and Minor Works grant, $162,985 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cire Children's Services Mount Evelyn" + ], + "field_latitude": ["-37.76758237"], + "field_latitude_longitude_value": ["-37.76758237,145.382035"], + "field_latitude_value": ["-37.76758237"], + "field_longitude": ["145.382035"], + "field_longitude_value": ["145.382035"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3796"], + "field_project_code": ["15-4587"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Design"], + "field_street_address": ["20 Old Hereford Rd"], + "field_suburb": ["Mount Evelyn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23328], + "status": [true], + "title": ["Cire Children's Services Mount Evelyn"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6ed2f4bb-f47a-4d00-8632-1b98481c72d9"] + }, + "sort": ["Cire Children's Services Mount Evelyn"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28127:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cire-community-school-cire-training"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school upgrade existing buildings to create a Year 5 and 6 classroom building. It will include 4 general learning areas, outdoor learning spaces, a breakout area, a kitchen, sick bay, staff office, meeting room and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cire Community School, Cire Training." + ], + "field_latitude": ["-37.78625764655652"], + "field_latitude_longitude_value": [ + "-37.78625764655652,145.61736696842846" + ], + "field_latitude_value": ["-37.78625764655652"], + "field_longitude": ["145.61736696842846"], + "field_longitude_value": ["145.61736696842846"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3797"], + "field_project_code": ["01-2091"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["39\u201341 Little Yarra Rd"], + "field_suburb": ["Yarra Junction"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28127], + "status": [true], + "title": ["Cire Community School, Cire Training"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["16492cd5-8436-4900-9624-eff5c651f911"] + }, + "sort": ["Cire Community School, Cire Training"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21255:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cire-early-years-learning-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building the hub. The hub will be a dynamic learning space with an integrated kindergarten program and a broad range of family support services and facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants, $2 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cire Early Years Learning Hub" + ], + "field_latitude": ["-37.780097961425781"], + "field_latitude_longitude_value": [ + "-37.780097961425781,145.61306762695312" + ], + "field_latitude_value": ["-37.780097961425781"], + "field_longitude": ["145.61306762695312"], + "field_longitude_value": ["145.61306762695312"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3797"], + "field_project_code": ["15-3537"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centres" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["43 Little Yarra Rd"], + "field_suburb": ["Yarra Junction"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21255], + "status": [true], + "title": ["Cire Early Years Learning Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["40b628a9-9640-4dfb-8cec-c3edf4c6756d"] + }, + "sort": ["Cire Early Years Learning Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28652:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/city-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are adding a new room for maternal and child health. We will also upgrade the foyer, so the kindergarten has a separate entrance. These works will improve accessibility, allow more natural light and create more space in the kindergarten room for children to learn and play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $384,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at City Kindergarten." + ], + "field_latitude": ["-38.37935034"], + "field_latitude_longitude_value": ["-38.37935034,142.4843455"], + "field_latitude_value": ["-38.37935034"], + "field_longitude": ["142.4843455"], + "field_longitude_value": ["142.4843455"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["elc-ck"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["550-600 Raglan Pde"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28652], + "status": [true], + "title": ["City Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["ee205ebe-7420-4bd6-85bb-90914c6dedb8"] + }, + "sort": ["City Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22664:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/city-learning-care-ariston"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We installed a new emergency messaging system to keep children, staff and families safe. In an emergency, the centre will be able to quickly communicate with the community and begin an automatic lockdown. This new technology will keep the centre community safe and informed of any unexpected concerns." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at City Learning & Care \u2013 Ariston." + ], + "field_latitude": ["-38.14753325"], + "field_latitude_longitude_value": ["-38.14753325,144.3467752"], + "field_latitude_value": ["-38.14753325"], + "field_longitude": ["144.3467752"], + "field_longitude_value": ["144.3467752"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["15-948"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["245-249 Pakington St"], + "field_suburb": ["Newtown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22664], + "status": [true], + "title": ["City Learning & Care \u2013 Ariston"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["42e3c97e-9a36-487b-9278-6e278c42f1d1"] + }, + "sort": ["City Learning & Care – Ariston"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24586:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/city-darebin-kindergarten-expansion-project"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping the City of Darebin plan to expand several local kindergartens. Our grant will allow them to design and cost expansions across 3 or 4 sites. They plan to begin construction one of these projects in 2022/23 and another in 2023/24 with the remaining projects to be completed within the next 5 years. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project. In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of City Of Darebin Kindergarten Expansion Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-CODKEP"], + "field_project_title": ["Building Blocks Planning"], + "field_q_complete": ["Q3 2023"], + "field_status_name": ["Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24586], + "status": [true], + "title": ["City Of Darebin Kindergarten Expansion Project"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d1f441b7-7898-45e4-9c45-37c024acf162"] + }, + "sort": ["City Of Darebin Kindergarten Expansion Project"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24600:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/city-greater-dandenong-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping the City of Greater Dandenong employ someone to oversee kindergarten planning and design. They will look at 7 kindergartens to see if they can be expanded or relocated to help meet local demand for kindergarten. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the City Of Greater Dandenong Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-CIGD"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24600], + "status": [true], + "title": [ + "City Of Greater Dandenong Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4cc3201f-3a49-46a6-80aa-0fefba76ed33"] + }, + "sort": [ + "City Of Greater Dandenong Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24608:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/city-greater-geelong-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping City of Greater Geelong review its Early Years Network Report and help them make decisions about future kindergarten building projects. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the City Of Greater Geelong Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-CGGK"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24608], + "status": [true], + "title": [ + "City Of Greater Geelong Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3c50ff62-8c1f-4860-aaf7-ae1bc852c1a7"] + }, + "sort": [ + "City Of Greater Geelong Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24579:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/city-hobsons-bay-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping the City of Hobson Bay complete feasibility studies, cost estimates and detailed design work for a number of kindergarten building projects. These projects would create more kindergarten places for local 3 and 4-year-olds. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the City of Hobsons Bay Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-HOBS"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24579], + "status": [true], + "title": [ + "City of Hobsons Bay Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e3af8e0b-2750-4120-ad2d-68c67dd475a4"] + }, + "sort": [ + "City of Hobsons Bay Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26212:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/city-port-phillip-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping the City of Port Phillip plan the future kindergartens they will need. This would create more kindergarten places for local 3 and 4-year-olds to meet growing local demand. The planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the City of Port Phillip Kindergarten Infrastructure Planning Project" + ], + "field_latitude": ["-37.86849502"], + "field_latitude_longitude_value": ["-37.86849502,144.9886752"], + "field_latitude_value": ["-37.86849502"], + "field_longitude": ["144.9886752"], + "field_longitude_value": ["144.9886752"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3182"], + "field_project_code": ["15-COPP"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["99A Carlisle St"], + "field_suburb": ["St Kilda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26212], + "status": [true], + "title": [ + "City of Port Phillip Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["06def022-1a9f-45a5-96f9-3477b2277aa3"] + }, + "sort": [ + "City of Port Phillip Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20185:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clarinda-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to fund minor capital works at the school.", + "We delivered\u00a0a new architect-designed modular building to the school. The new building features general purpose classrooms as well as music and art rooms, student toilets and decking areas. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. Clarinda\u00a0Primary School is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $200,000 through the School Pride and Sports Funding program.", + "In the 2019\u201320 State Budget, the school received $3.038 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Clarinda Primary School" + ], + "field_latitude": ["-37.92743"], + "field_latitude_longitude_value": ["-37.92743,145.10241"], + "field_latitude_value": ["-37.92743"], + "field_longitude": ["145.10241"], + "field_longitude_value": ["145.10241"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3169"], + "field_project_code": ["01-3336", "D1-01-3336"], + "field_project_title": [ + "School Pride and Sports Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2018", "Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1166 Centre Rd"], + "field_suburb": ["Clarinda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20185], + "status": [true], + "title": ["Clarinda Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2d47b55e-611d-4bbe-a636-0d73ac634869"] + }, + "sort": ["Clarinda Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20751:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clayton-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor kitchen at this school.\u00a0 \u200b", + "The School Pride and Sports Fund\u00a0delivered minor refurbishments and upgrades to improve the facilities at Clayton North Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $160,000 has been allocated to the school. In the 2017/18 State Budget a further $150,000 was allocated for planned maintenance.", + "In the 2018-19 State Budget $300,000 was allocated to the school through the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Planned Maintenance Program", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Clayton North Primary School" + ], + "field_latitude": ["-37.912560", "-37.91268"], + "field_latitude_longitude_value": ["-37.912560,145.123550"], + "field_latitude_value": ["-37.912560"], + "field_longitude": ["145.123550", "145.12292"], + "field_longitude_value": ["145.123550"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3168"], + "field_project_code": ["01-734", "D1-01-734"], + "field_project_title": [ + "School Pride and Sports Fund, Planned Maintenance Program", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1714 Dandenong Road"], + "field_suburb": ["Clayton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20751], + "status": [true], + "title": ["Clayton North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a6e8c414-9069-40ef-8a3a-7e3b8742142b"] + }, + "sort": ["Clayton North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22298:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clayton-south-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:18+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are building an inclusive outdoor learning space, including seating, timber decking and a water feature." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 7 of the Inclusive Schools Fund, the project received $200,000" + ], + "field_funding_type_name": ["Planning", "Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Clayton South Primary School" + ], + "field_latitude": ["-37.940477"], + "field_latitude_longitude_value": ["-37.940477,145.11644"], + "field_latitude_value": ["-37.940477"], + "field_longitude": ["145.11644"], + "field_longitude_value": ["145.11644"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3169"], + "field_project_code": ["D1-01-4384", "01-4384"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Inclusive Schools Fund - Round 7" + ], + "field_q_complete": ["Subject to future funding", "Q2 2024"], + "field_start_date": ["Q2 2023", "Q4 2021"], + "field_status_name": ["Planning", "Design"], + "field_street_address": ["539 Clayton Road"], + "field_suburb": ["Clayton South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22298], + "status": [true], + "title": ["Clayton South Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["bd94b7d1-74b6-4ed8-b2e9-0069e5968f44"] + }, + "sort": ["Clayton South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20215:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clifton-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "East Gippsland bushfires caused significant damage to Clifton Creek Primary School in early 2020. Students were temporarily relocated to nearby Nicholson Primary School to ensure their classes continued and they had the facilities they needed. Support services, including counselling, have been made available to staff and students. The Victorian Government committed to rebuilding the school, and we delivered relocatable classrooms for students to use while we completed this work. Their new permanent facilities include kitchen and sensory gardens, shade sails, a new bus shelter,\u00a0and additional space for community uses such as adult education and fetes.\u00a0 These plans were shaped by the community consultation we ran in March 2020. Thank you to everybody who contributed to this.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, $4.245 million was allocated to the school. The school received an additional $29,000 in 2020." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Clifton Creek Primary School" + ], + "field_latitude": ["-37.70198"], + "field_latitude_longitude_value": ["-37.70198,147.65945"], + "field_latitude_value": ["-37.70198"], + "field_longitude": ["147.65945"], + "field_longitude_value": ["147.65945"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "The Victorian Government has committed to rebuilding Clifton Creek Primary School. Every Victorian student deserves facilities that are accessible, safe and modern. In December 2019, the devastating East Gippsland bushfires significantly damaged Clifton Creek Primary School. Students were relocated to nearby Nicholson Primary School while we installed temporary buildings at the Clifton Creek Primary School site. Students can now return to those temporary buildings, subject to coronavirus (COVID-19) restrictions, while we plan the rebuild of their school. As part of this planning, we asked the community for their views to help shape the designs.", + "We engaged with teachers, parents and community members from Clifton Creek Primary School from 4 to 25 March 2020, via an online survey and a community engagement workshop designed specifically for the school community. We designed the engagement to help acknowledge the community\u2019s trauma and grief, as well as provide them an opportunity to move forward. In particular, we wanted to know what the school community\u2019s favourite spaces are at the school, what they would like to see in the rebuilt school and any other roles they felt the school could serve for the wider community. This report summarises what we heard from your community during this engagement.", + "We heard from 102 visits to the Clifton Creek Primary School VSBA website 13,000 people reached via social media 25 community members 36 parents/carers of current students 2 teachers Via Online survey School community drop-in session", + "Key themes We heard very strong and consistent feedback focused around five key themes: Providing lots of outdoor multi-use spaces Desire for an environmentally sustainable design Reflecting the local environment and heritage Designing for bushfire and weather protection Highlighting potential future uses and opportunities Providing lots of outdoor multi-use spaces The community value the many outdoor multi-use spaces at Clifton Creek Primary School and would like these to be a key focus of the new design. We heard that interesting spaces where students can have a hands-on learning experience are very important to the community, with the kitchen garden, mudbrick art and music room and school library all highlighted many times throughout the engagement. It is also clear that the chook and peacock pavilion and secret garden are much-loved features of the school. The community also feel it is important for the school to provide a variety of shaded and sheltered outdoor spaces that can be used for multiple purposes. They would like to see improved sport facilities and an oval for students to run around and play games. Other suggestions were to include a bike track, climbing structures and nature-based play areas in the new design. We also heard about the importance of quiet, relaxed places where students can wind down. \u201cThe garden and the kitchen because it provides students with the skills to grow and cook their own food and provides the exposure to fresh healthy fruit and vegetables in a positive environment.\u201d \u2013 online survey respondent \u201cThe secret garden was definitely unique and won a national prize in 1994. This was built by the students and families at the school at the time and designed by the kids.\u201d \u2013 online survey respondent \u201cBetter sports facilities/play areas. There isn\u2019t a great deal of flat ground, so sports areas need to be flexible and multi-purpose.\u201d \u2013 online survey respondent \u201cKitchen cooking - teaching life skills.\u201d \u2013 school community drop-in session participant Desire for an environmentally sustainable design The community highlighted the need for environmentally sustainable design principles to be considered as part of the school rebuild. They value a number of sustainability initiatives that are in place at Clifton Creek Primary School, including the frog bog, which supports increased biodiversity, the recycling station and rainwater collection tanks. The community feel it is important for the design of the new school to have a strong sustainability focus, so it can meet the needs of future generations and respond to our changing climate. This includes improving energy and water efficiency and consumption by incorporating systems such as solar panels, LED lighting, passive solar design and rainwater harvesting into the design. Other suggestions were to install sustainable waste solutions, eco-friendly toilets and electric vehicle charging points at the new school. \u201cThis school is for the future generations and therefore needs to have waste systems built-in. It needs to be self-sufficient in its energy production and consumption and teach the children why.\u201d - online survey respondent \u201cWater-saving and recycling for the garden and to keep the frog bog filled. E.g. water captured from drinking troughs could run to the frog bog, and/or with a water tap nearby for manual top-ups.\u201d \u2013 online survey respondent \u201cMake our new school an exemplary model for a changing climate.\u201d \u2013 school community drop-in session participant \u201cSustainable technology - lots of solar panels, LED lighting, energy-efficient appliances, high COP (coefficient of performance) air con, well insulated and sealed.\u201d \u2013 online survey respondent \u201cEnvironmental friendliness of the infrastructure. We cannot build a school that does not align with the zero carbon economy that we need to transition to.\u201d \u2013 online survey respondent Reflecting the local environment and heritage It is clear that the community want the rebuild design to reflect the local environment and heritage of the area. The community highly value how Clifton Creek Primary School is integrated with the surrounding natural environment, and feel it is important for the school to retain its rural feel and maintain access to the picturesque views of nearby farmland and forests. We heard about how much you loved the pieces of local artwork and murals that have been contributed over time by the school community, and how you would like to see local art incorporated into the new design. You also told us about the importance of highlighting local indigenous culture through the inclusion of Aboriginal artwork, to help facilitate awareness and learning opportunities. \u201cConnection to the natural environment, surrounding forest and farmland.\u201d \u2013 online survey respondent \u201cI loved the variety of artwork in public spaces that different members of the community had contributed over the years - the big peacock, the tree of school life, and especially the Koori art on the poles at the covered way entrance to the school.\u201d \u2013 online survey respondent \u201cI would like to see the heritage preserved. I would not like to see a modern structure, but rather a school that blended into and complemented the surrounding natural environment.\u201d \u2013 online survey respondent \u201cMore focus on local indigenous culture.\u201d \u2013 online survey respondent Designing for bushfire and weather protection The community feel strongly that the new school design must be resilient to the changing climate and have measures in place to protect against potential bushfire events all year round. They would like a state-of-theart fire protection system to be put in place, with suggestions to incorporate sprinklers, fire safety screens, fire-resistant plants and fire breaks into the rebuild design. It is also important that the new school meets all bushfire management planning requirements. We heard that weather protection is a key issue for Clifton Creek Primary School, as it can get very windy at the school site. To help mitigate this, some community members suggested installing shelter screens and undercover walkways to ensure outdoor areas are shielded from the elements. Other suggestions to support weather protection included installing double-glazed windows and insulating the school buildings. \u201cI would like to see a system that will protect against future bushfires and a program that will maintain this system in place even during holiday periods.\u201d \u2013 online survey respondent \u201cGood fire protection.\u201d \u2013 school community drop-in session participant \u201cFire-resistant and fire-retardant plants so that we can still have gardens in and around the buildings.\u201d \u2013 online survey respondent \u201cShelter screens from prevailing wind.\u201d \u2013 online survey respondent Highlighting potential future uses and opportunities A school building is a vital part of any local community, so we asked you what other roles you see this new school being able to serve, both now and in the future. After the bushfire crisis, the community feel it is important to have a safe space where they can come together, reconnect and engage with one another. There is a view that the school could act as a hub for the community, with suggestions to use the space for meetings, playgroups, adult education, workshops, markets, fetes and other community events. There was also interest in opening up the library and garden for the wider community to use. \u201cMulti-purpose space for community meetings, fetes and fairs with a decent kitchen and good acoustics. Perhaps space for activities outside of school hours to draw people out to Clifton Creek i.e. adult art classes, workshops etc.\u201d \u2013 online survey respondent \u201cBe great if the school library could be open at times for community.\u201d \u2013 online survey respondent \u201cMeeting place for community groups.\u201d \u2013 school community drop-in session participant \u201cIt can bring together families and the community and a place where they can use what the school has to offer.\u201d \u2013 online survey respondent \u201cPlaygroup, public meeting space, adult education, library, community garden.\u201d \u2013 online survey respondent \u00a0", + "We wish to thank the Clifton Creek Primary School community for their thoughtful feedback and suggestions during this difficult time. We have provided your community\u2019s ideas and feedback to the architects to consider while designing the rebuilt school.", + "You can access a designed version of the report." + ], + "field_paragraph_accordion_name": [ + "Introduction", + "About the engagement", + "Engagement snapshot", + "What we heard", + "Next steps", + "Designed report" + ], + "field_paragraph_body": ["Community engagement"], + "field_postcode": ["3875"], + "field_project_code": ["01-3684"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1020 Deptford Rd"], + "field_suburb": ["Clifton Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20215], + "status": [true], + "title": ["Clifton Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fc16ecc6-5bf5-45b1-9509-d5a3fa50efe8"] + }, + "sort": ["Clifton Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19981:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clifton-hill-primary-school"], + "changed": ["2023-08-16T09:23:09+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded this popular primary school. We built a 3-storey satellite campus next to Darling Gardens for Years 5 and 6 students. The new building offers extra learning areas and spaces for consultation and staff support.The upgrade will accommodate more students and ensure enough space to play outside. It will also help ease enrolment pressure at surrounding schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $100,000 was allocated to the school. An additional $560,000 was allocated in the 2017-18 State Budget. In the 2018-19 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for a site extension for Clifton Hill. In the 2019-20 State Budget, the school received $1.276 million. In 2020, the school received $11.48 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Clifton Hill Primary School" + ], + "field_latitude": ["-37.792622"], + "field_latitude_longitude_value": ["-37.792622,144.990036"], + "field_latitude_value": ["-37.792622"], + "field_longitude": ["144.990036"], + "field_longitude_value": ["144.990036"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Clifton Hill Primary School - new satellite campus \u00a0" + ], + "field_postcode": ["3068"], + "field_project_code": ["01-1360"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2015"], + "field_status_name": ["Complete"], + "field_street_address": ["185 Gold St"], + "field_suburb": ["Clifton Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19981], + "status": [true], + "title": ["Clifton Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["828fbe81-5fdb-4656-b83e-ab442fe35f76"] + }, + "sort": ["Clifton Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20558:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clifton-springs-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered the first stage of the school's master plan. We built learning centres with specialised art and STEM (science, technology, engineering, and maths) facilities.\u00a0Additionally, we built an administration and resource centre. The centre includes a wellness hub near the sensory garden.\u00a0We also relocated portable classrooms and landscaped the school grounds.", + "We supported the building of\u00a0an indoor/outdoor sensory motor zone and garden. This space\u00a0supports the school's mission to be a student-centred and inclusive school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $500,000 for planning. In the 2020\u201321 State Budget, the school received $15.6 million.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Clifton Springs Primary School" + ], + "field_latitude": ["-38.15712", "-38.164391"], + "field_latitude_longitude_value": ["-38.15712,144.55586"], + "field_latitude_value": ["-38.15712"], + "field_longitude": ["144.55586", "144.553848"], + "field_longitude_value": ["144.55586"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3222"], + "field_project_code": ["D1-01-5280", "01-5280"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q4 2019"], + "field_start_date": ["Q2 2019", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["82-118 Jetty Rd"], + "field_suburb": ["Clifton Springs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20558], + "status": [true], + "title": ["Clifton Springs Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3c18b071-dcf2-4985-83ff-adb69f7e4a23"] + }, + "sort": ["Clifton Springs Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20011:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clunes-primary-school"], + "changed": ["2023-12-05T11:22:35+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the\u00a0sandpit area to create a 'wild wood' treed area, and installed a sensory musical playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $149,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Clunes Primary School" + ], + "field_latitude": ["-37.2907506"], + "field_latitude_longitude_value": ["-37.2907506,143.7921149"], + "field_latitude_value": ["-37.2907506"], + "field_longitude": ["143.7921149"], + "field_longitude_value": ["143.7921149"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at Clunes Primary School." + ], + "field_postcode": ["3370"], + "field_project_code": ["01-1552"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Canterbury St"], + "field_suburb": ["Clunes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20011], + "status": [true], + "title": ["Clunes Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["880903a1-c364-4cb3-89da-482676813944"] + }, + "sort": ["Clunes Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36730:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/clunes-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Clunes Primary School.\u00a0The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.\u00a0The centre may also include other spaces for community use.From 2028 Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.\u00a0Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.Subscribe to our mailing list for updates.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Clunes Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-37.2907506"], + "field_latitude_longitude_value": ["-37.2907506,143.7921149"], + "field_latitude_value": ["-37.2907506"], + "field_longitude": ["143.7921149"], + "field_longitude_value": ["143.7921149"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3370"], + "field_project_code": ["15-CPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Canterbury Street"], + "field_suburb": ["Clunes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36730], + "status": [true], + "title": [ + "Clunes Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["157f27c7-c2df-4c26-bfb9-3a5c4128c9ca"] + }, + "sort": [ + "Clunes Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20691:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clyde-creek-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Clyde. It opened in 2022 and helps the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Jodie Bray was appointed as the first principal of the school. The school was previously known by its interim name, Clyde North Station Primary School, during the planning phase. We consulted with the community on Clyde Creek Primary School's name from 11 June to 25 June 2021. The school is named after Clyde Creek, which is close to the school site. Facilities The school has the following facilities: an administration and resource intensive learning building 2 learning neighbourhood buildings a Performing Arts and Physical Education (PAPE) building, including an indoor multi-court 2 hardcourts sports field bike shelter playgrounds Design consultation In 2018, we consulted with local communities gaining new schools. We captured the local area's broad aspirations and used this feedback in our concept designs. A second round of engagement was held in January and February 2020. We invited locals to share their ideas, local knowledge and the things that mattered most about how their school would look, feel and function. The Clyde Creek Primary School community told us: that it loves the local wetlands and wanted this reflected in the design of their school families wanted an outdoor space with enough playground area for a growing population Clyde North Station families gave priority to a broad array of sports and activities. Our consultation received strong and consistent feedback on many of their design needs and goals. Our architects used the feedback to help shape the school's interior and its landscape design. Kindergarten We supported City of Casey to build The Eliston Family & Community Centre. The centre provides: early education maternal\u00a0child health and family services supported playgroups occasional care community meeting spaces counselling", + "We built Clyde Creek Primary School \u2013 Specialist campus. This new purpose-built campus provides 50 places for primary-aged students with intellectual disabilities. A full enrolment policy that provides detailed entry eligibility criteria is available through the school. The Clyde Creek Primary School principal also leads this campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for Clyde Creek Primary School.In 2020, the school shared in $438.6 million of funding for new schools.", + "In the 2020\u201321 State Budget, the school shared in the $122.4 million allocated for new schools." + ], + "field_funding_type_name": [ + "New School", + "New Specialist School Campus" + ], + "field_landing_page_summary": [ + "Learn more about the build of Clyde Creek Primary School." + ], + "field_latitude": ["-38.122509", "-38.1195344736827"], + "field_latitude_longitude_value": ["-38.122509,145.330636"], + "field_latitude_value": ["-38.122509"], + "field_longitude": ["145.330636", "145.332546503115"], + "field_longitude_value": ["145.330636"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/ClydeCreekPS-221021-feature-image.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-5588", "D1-01-5588"], + "field_project_title": ["New School", "New Specialist Campus"], + "field_q_complete": ["Q1 2022", "Q2 2023"], + "field_start_date": ["Q2 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["40 Eliston Av"], + "field_suburb": ["Clyde"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20691], + "status": [true], + "title": ["Clyde Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["95198ae8-f747-4f4a-b3ff-053428c0dd51"] + }, + "sort": ["Clyde Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21183:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clyde-grammar"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported this new school to construct a two-storey primary centre, which includes 14 classrooms and breakout areas, two collaborative learning areas including a library, student and staff amenities, administration spaces, a sick bay and outdoor learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Clyde Grammar" + ], + "field_latitude": ["-38.1036717"], + "field_latitude_longitude_value": ["-38.1036717,145.3774868"], + "field_latitude_value": ["-38.1036717"], + "field_longitude": ["145.3774868"], + "field_longitude_value": ["145.3774868"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["03-2228"], + "field_project_title": [ + "Non-Government Schools Capital Fund - New School" + ], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["110 Smiths Lane"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21183], + "status": [true], + "title": ["Clyde Grammar"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["944f3ba1-7635-40e6-83fc-e766c8cb6bde"] + }, + "sort": ["Clyde Grammar"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33001:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clyde-north-primary-school-interim-name"], + "changed": ["2023-08-21T11:28:37+10:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are building a new primary school in Clyde North. It will open in 2025 with places for up to 900 students. This will help the growing local population get a great education close to home.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Clyde North Primary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-5609"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33001], + "status": [true], + "title": ["Clyde North Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["9945d6a0-5414-4bad-ac26-59e61870d930"] + }, + "sort": ["Clyde North Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33002:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clyde-north-secondary-school-interim-name"], + "changed": ["2023-08-21T11:47:10+10:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We're building a new secondary school in Clyde North. It will open in 2025 with places for up to 800 students. This will help the growing local population get a great education close to home.Subscribe to our mailing list for updates.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Clyde North Secondary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-7724"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33002], + "status": [true], + "title": ["Clyde North Secondary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["2004d356-115f-4be7-a245-20be338715d0"] + }, + "sort": ["Clyde North Secondary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20214:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clyde-primary-school"], + "changed": ["2023-11-02T12:07:55+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Clyde Primary School. We constructed extra buildings and facilities on new land.\u00a0The works included 11 new general learning areas. These learning areas feature specialised art, STEM, and music facilities. We also built a full-size gymnasium with a competition-grade basketball court.\u00a0We also refurbished the school's existing building. The building now has a library and staff work areas.\u00a0The expansion ensures the school can accommodate more students. It will also help ease enrolment pressures on surrounding schools and meet demand from south-east Melbourne\u2019s growing population." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for Clyde Primary School's site extension. In the 2019\u201320 State Budget, the school received $2.28 million. In 2020, the school received $20.52 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Clyde Primary School" + ], + "field_latitude": ["-38.13202"], + "field_latitude_longitude_value": ["-38.13202,145.32653"], + "field_latitude_value": ["-38.13202"], + "field_longitude": ["145.32653"], + "field_longitude_value": ["145.32653"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-3664"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Oroya Grove"], + "field_suburb": ["Clyde"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20214], + "status": [true], + "title": ["Clyde Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8d6d319c-84c7-431e-9c14-15dc321a9532"] + }, + "sort": ["Clyde Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20736:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clyde-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building additional permanent capacity as part of Stage 2 works at Clyde Secondary College, creating space for an extra 425 local students. These works include:a learning neighbourhood buildinga visual arts buildinghardcourtssports ovaloutdoor spacesa carpark", + "We built a new secondary college in Clyde. It opened in 2022 and helps the growing local population get great education close to home.In 2022, Clyde Secondary College welcomed students in Year 7. The school is open enrolments by year level as the first cohort of students progress through school.\u00a0The school can accommodate a capacity of approximately 575 students, including approximately 50 places allocated to specialist provision.Konnie Prades was appointed as the first principal of the school.The college was previously known by its interim name, Clyde North Station Secondary College, during the planning phase. We consulted with the community on Clyde Secondary Collegel's name from 11 June to 25 June 2021. The school is named after the suburb it is located in.Facilitiesan administration and learning resource centre buildinga learning neighbourhood buildinga science, technology, engineering and maths (STEM) buildinga performing arts and physical education building including an indoor multi-court2 hardcourtslandscaped outdoor play and learning areasbike shelterDesign consultationIn 2018, we consulted with local communities gaining new schools in Melbourne's fastest growing outer suburbs \u2013 including your new primary school. We captured each local area's broad aspirations and used this feedback in our concept designs.During January and February 2020, a second round of engagement invited locals to share their ideas, local knowledge and the things that mattered most about how their school would look, feel and function.Clyde Secondary College families sought to develop and maintain their own sports programs without having to leave the school to access suitable facilities. They told us they considered this was a great way to build a school identity in a growing area on the urban fringe.The community said it valued design facilities that supported wellbeing and mental health. They sought open classroom spaces for collaborative learning, and intervention areas for students who needed extra help and attention.Our consultation received strong and consistent feedback on many of their design needs and goals. Our architects used your feedback to help shape your school's interior and its landscape design." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million", + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for Clyde Secondary College.In 2020, the school shared in $438.6 million of funding for new schools." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Clyde Secondary College." + ], + "field_latitude": ["-38.129384"], + "field_latitude_longitude_value": ["-38.129384,145.339261"], + "field_latitude_value": ["-38.129384"], + "field_longitude": ["145.339261"], + "field_longitude_value": ["145.339261"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/ClydeSC_211207_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["D1-01-7086", "01-7086"], + "field_project_title": [ + "New School - Building Space for More Students", + "New School" + ], + "field_q_complete": ["Q1 2025", "Q1 2022"], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["21 Fernlea Homestead Rd"], + "field_suburb": ["Clyde"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20736], + "status": [true], + "title": ["Clyde Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["017f2b07-a5fc-419e-a8a3-87c399508f0b"] + }, + "sort": ["Clyde Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21359:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/clyde-township-family-and-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are partnering with the City of Casey to build a new Integrated Children's Centre which will offer community services and a kindergarten. The kindergarten will provide an additional 99 kindergarten places to the community, improve the overall quality of the learning environment and help ensure that the children have access to 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Building Blocks Capacity Grant, $2,000,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Clyde Township Family and Community Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["15-CTFCC"], + "field_project_title": [ + "Building Blocks Capacity Grant- Integrated Children\u2019s Centre" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_suburb": ["Clyde"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21359], + "status": [true], + "title": ["Clyde Township Family and Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5a72ed4e-8b84-4957-8e8e-7d0f8d74102e"] + }, + "sort": ["Clyde Township Family and Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20327:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coatesville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0to upgrade the school's oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school has received $363,000 through the School Pride and Sports Funding Program." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Coatesville Primary School" + ], + "field_latitude": ["-37.920083"], + "field_latitude_longitude_value": ["-37.920083,145.073631"], + "field_latitude_value": ["-37.920083"], + "field_longitude": ["145.073631"], + "field_longitude_value": ["145.073631"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["01-4712"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["21 Mackie Rd"], + "field_suburb": ["Bentleigh East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20327], + "status": [true], + "title": ["Coatesville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7658747c-d49b-4be9-a18d-73a3f4ab4080"] + }, + "sort": ["Coatesville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20293:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobains-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities. This\u00a0included\u00a0refurbishment of\u00a0classrooms in poor condition, to improve standards across the school.\u00a0 \u00a0", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $800,000 was allocated to the school. In the 2015-16 State Budget, $10,000 was allocated to the school.", + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cobains Primary School" + ], + "field_latitude": ["-38.07499", "-38.074794"], + "field_latitude_longitude_value": ["-38.07499,147.13258"], + "field_latitude_value": ["-38.07499"], + "field_longitude": ["147.13258", "147.132279"], + "field_longitude_value": ["147.13258"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3851"], + "field_project_code": ["01-4387", "d1-4387"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q1 2019", "Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete", "Design"], + "field_street_address": ["3 Crofts Rd"], + "field_suburb": ["Cobains"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20293], + "status": [true], + "title": ["Cobains Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["14119c7f-cbf6-4f02-92e1-3bf256f1dc01"] + }, + "sort": ["Cobains Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20778:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobblebank-secondary-school-interim-name"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are buying land for a new school in the Melton / Caroline Springs\u200b area.\u00a0\u200b This school will\u00a0help meet increasing enrolment demand from a growing local population, alleviate pressure on surrounding schools, and ensure all Victorian students have access to high-quality education. \u200bDetails on\u00a0how to enrol your child and\u00a0enrolment boundaries will be published in the year before the school opens.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for Cobblebank Secondary School." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Cobblebank Secondary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["01-7726"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_status_name": ["Land acquisition"], + "field_suburb": ["Cobblebank"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20778], + "status": [true], + "title": ["Cobblebank Secondary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["af304ca2-cbf4-4f9f-a726-5f9e3057e5e1"] + }, + "sort": ["Cobblebank Secondary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21322:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobden-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded\u00a0Cobden Kindergarten in preparation for the roll-out of subsidised kindergarten for 3-year-olds\u00a0which began\u00a0in 2021. We built\u00a0a second kindergarten room to create more places for local children. The upgrade also allowed the kindergarten to become part of an integrated family service centre where parents can get maternal child health support." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $689,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cobden Kindergarten" + ], + "field_latitude": ["-38.3278445"], + "field_latitude_longitude_value": ["-38.3278445,143.0770625"], + "field_latitude_value": ["-38.3278445"], + "field_longitude": ["143.0770625"], + "field_longitude_value": ["143.0770625"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3266"], + "field_project_code": ["15-652"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["43 Victoria St"], + "field_suburb": ["Cobden"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21322], + "status": [true], + "title": ["Cobden Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["37aa270a-3824-4809-a860-ceda2bb3f7ba"] + }, + "sort": ["Cobden Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33014:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobden-technical-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Cobden Technical School" + ], + "field_latitude": ["-38.32403633"], + "field_latitude_longitude_value": ["-38.32403633,143.0636059"], + "field_latitude_value": ["-38.32403633"], + "field_longitude": ["143.0636059"], + "field_longitude_value": ["143.0636059"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3266"], + "field_project_code": ["01-7088"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Mckenzie Street"], + "field_suburb": ["Cobden"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33014], + "status": [true], + "title": ["Cobden Technical School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["caf05823-8ad4-41ed-8087-ce92c2962921"] + }, + "sort": ["Cobden Technical School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21181:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobram-anglican-grammar-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0build a new multipurpose performing arts building, and extend\u00a0the technology wing. \u200b The project has:\u00a0\u200b provided two additional multipurpose learning spaces and associated storage and administration areas to deliver music and performing arts provided a flexible learning space that can be opened up to create a larger space for whole school assemblies provided an additional learning space to enable efficient delivery of sheet metal technology.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $702,871 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cobram Anglican Grammar School" + ], + "field_latitude": ["-35.92429"], + "field_latitude_longitude_value": ["-35.92429,145.66103"], + "field_latitude_value": ["-35.92429"], + "field_longitude": ["145.66103"], + "field_longitude_value": ["145.66103"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3644"], + "field_project_code": ["03-2097"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["40-48 Campbell Rd"], + "field_suburb": ["Cobram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21181], + "status": [true], + "title": ["Cobram Anglican Grammar School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f406e816-9edb-4653-9130-81bd96431f12"] + }, + "sort": ["Cobram Anglican Grammar School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20706:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobram-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Cobram Primary School, including the administration building. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 State Budget, the school received $10 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cobram Primary School" + ], + "field_latitude": ["-35.9248693"], + "field_latitude_longitude_value": ["-35.9248693,145.6509739"], + "field_latitude_value": ["-35.9248693"], + "field_longitude": ["145.6509739"], + "field_longitude_value": ["145.6509739"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3644"], + "field_project_code": ["01-6209"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["90-100 WILLIAM STREET"], + "field_suburb": ["Cobram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20706], + "status": [true], + "title": ["Cobram Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["97072845-0c6a-42e4-9a4a-4ca5877988fb"] + }, + "sort": ["Cobram Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20777:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobram-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "We are refurbishing the staff and student toilets in the school's technical wing to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.392 million through the Permanent Modular School Buildings Program.", + "In the 2022\u201323 State Budget the project received $499,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cobram Secondary College" + ], + "field_latitude": ["-35.913605", "-35.913605"], + "field_latitude_longitude_value": ["-35.913605,145.654121"], + "field_latitude_value": ["-35.913605"], + "field_longitude": ["145.654121", "145.654121"], + "field_longitude_value": ["145.654121"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3644"], + "field_project_code": ["01-7725", "D1-01-7725"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2020", "Q1 2024"], + "field_start_date": ["Q2 2019", "Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["25-47 Warkil St"], + "field_suburb": ["Cobram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20777], + "status": [true], + "title": ["Cobram Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0aa6b064-12dd-4089-a3e7-c5bbf5692297"] + }, + "sort": ["Cobram Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20496:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cobram-and-district-specialist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will significantly upgrade the classrooms in the Main Block and Block C.", + "We upgraded and modernised this school. We built a learning space and upgraded the sensory garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $3.914 million.", + "In the 2020\u201321 State Budget, the school received $1.79 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cobram and District Specialist School." + ], + "field_latitude": ["-35.925817", "-35.9167366027832"], + "field_latitude_longitude_value": ["-35.925817,145.651577"], + "field_latitude_value": ["-35.925817"], + "field_longitude": ["145.651577", "145.64691162109375"], + "field_longitude_value": ["145.651577"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3644"], + "field_project_code": ["D1-01-5147", "01-5147"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2025", "Q1 2023"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["4-8 Hume St"], + "field_suburb": ["Cobram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20496], + "status": [true], + "title": ["Cobram and District Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["837aef8b-06a2-4514-b048-9ed420e0a748"] + }, + "sort": ["Cobram and District Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20943:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coburg-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will build a double-storey technology building. This will give students better learning opportunities. It will also create places for 250 more local students.", + "\u200bWe helped the school refurbish toilets to improve hygiene and amenity.\u00a0", + "We modernised and refurbished the school\u2019s A, B and C buildings, including creating a series of double classrooms, a central student services and library, and a new outdoor learning area. Building C flexibility upgrade: we\u00a0created a series of flexible double classrooms on the\u00a0ground and first floors. Building B Resource Centre: we refurbished an\u00a0existing general purpose classroom\u00a0and science lab on the\u00a0ground floor\u00a0to create a central student services and resource centre. Building A flexibility upgrade: we\u00a0established a secure STEAM\u00a0room on the ground floor. We\u00a0created a series of double classrooms within the\u00a0existing learning space\u00a0on the\u00a0first floor\u00a0with breakout area, student lounge and locker space. Outdoor gathering area: We\u00a0created a central, protected outdoor area for\u00a0large and small gatherings,\u00a0opening to the student cafe\u0301.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget the school received $50,000 for planning. In the 2023\u201324 State Budget the school received $17.800 million", + "In the 2020 Minor Capital Works Fund the school was allocated $91,950.", + "In the 2017\u201318 State Budget, the school was allocated $1.9 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Coburg High School" + ], + "field_latitude": ["-37.739280"], + "field_latitude_longitude_value": ["-37.739280,144.974300"], + "field_latitude_value": ["-37.739280"], + "field_longitude": ["144.974300"], + "field_longitude_value": ["144.974300"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["D3-01-8849", "D1-01-8849", "01-8849"], + "field_project_title": [ + "Upgrade and Modernisation - Building Space for More Students", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2026", "Q4 2021", "Q2 2019"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["101 Urquhart St"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20943], + "status": [true], + "title": ["Coburg High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["758f0b4b-aa5c-43e3-aebe-eee91947db83"] + }, + "sort": ["Coburg High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20301:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coburg-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0and modernised\u00a0facilities at the school, including refurbishing\u00a0the existing Games Hall and supporting spaces, development of a new Junior Learning Centre and a science, technology, engineering, arts and mathematics (STEM)\u00a0\u200bPerformance Hub.\u200b", + "We built\u00a0an inclusive outdoor space made up of quiet spaces, sensory exploration garden, pirate ship area,\u00a0kitchen garden and outdoor classroom pergola.", + "We supported the school in building a mulitpurpose space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $6.7 million was allocated to the school. In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This includes funding for the school.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "From the 2019\u201320 School Pride and Sports Fund the school received $300,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Coburg North Primary School" + ], + "field_latitude": ["-37.73621", "-37.73612", "-37.743827819824219"], + "field_latitude_longitude_value": ["-37.73621,144.951721"], + "field_latitude_value": ["-37.73621"], + "field_longitude": ["144.951721", "144.95186", "144.96449279785156"], + "field_longitude_value": ["144.951721"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["01-4543", "D1-01-4543", "D2-01-4543"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2019", "Q3 2021", "Q4 2019"], + "field_start_date": ["Q1 2018", "Q4 2019", "Q1 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["180 O'Hea St"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20301], + "status": [true], + "title": ["Coburg North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d9126812-e3d0-4eb5-9406-bc86214413d3"] + }, + "sort": ["Coburg North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20548:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coburg-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are rebuilding the school at Urquhart Street. It will have permanent facilities for up to 96 students. We are building 2 double-storey buildings. They will include: general classrooms, art, science, and food technology facilities, fitness rooms, and other learning spaces. The new school site will also have playgrounds, with accessible play equipment for students of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $22.585 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Coburg Special Developmental School" + ], + "field_latitude": ["-37.74115436396229"], + "field_latitude_longitude_value": [ + "-37.74115436396229,144.97662219786568" + ], + "field_latitude_value": ["-37.74115436396229"], + "field_longitude": ["144.97662219786568"], + "field_longitude_value": ["144.97662219786568"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Coburg Special Developmental School \u2013\u00a0design release" + ], + "field_postcode": ["3058"], + "field_project_code": ["01-5261"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["191 Urquhart Street"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20548], + "status": [true], + "title": ["Coburg Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b5941418-73f2-4084-9be1-47e6e0e543c8"] + }, + "sort": ["Coburg Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20239:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coburg-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded indoor learning facilities to create distinct learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $393,125" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Coburg West Primary School" + ], + "field_latitude": ["-37.7470669"], + "field_latitude_longitude_value": ["-37.7470669,144.947738"], + "field_latitude_value": ["-37.7470669"], + "field_longitude": ["144.947738"], + "field_longitude_value": ["144.947738"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["01-3941"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["185\u2013187 Reynard St"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20239], + "status": [true], + "title": ["Coburg West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["87355f7e-eb11-488c-8e7a-ced5020b96ab"] + }, + "sort": ["Coburg West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23323:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cockatoo-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We upgraded the 30-year-old playground structure at Cockatoo Kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cockatoo Kindergarten" + ], + "field_latitude": ["-37.93473356"], + "field_latitude_longitude_value": ["-37.93473356,145.4840509"], + "field_latitude_value": ["-37.93473356"], + "field_longitude": ["145.4840509"], + "field_longitude_value": ["145.4840509"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3781"], + "field_project_code": ["15-CKC"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["23 Bailey Rd"], + "field_suburb": ["Cockatoo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23323], + "status": [true], + "title": ["Cockatoo Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["126dcc74-3030-4c0d-bb5c-97b47296ea0f"] + }, + "sort": ["Cockatoo Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25397:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cohuna-district-preschool-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We redeveloped the outdoor space. The space is now more inclusive for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Grant, $195,523 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cohuna & District Preschool Centre" + ], + "field_latitude": ["-35.8110212851536"], + "field_latitude_longitude_value": [ + "-35.8110212851536,144.220844093292" + ], + "field_latitude_value": ["-35.8110212851536"], + "field_longitude": ["144.220844093292"], + "field_longitude_value": ["144.220844093292"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3568"], + "field_project_code": ["15-317"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Channel St"], + "field_suburb": ["Cohuna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25397], + "status": [true], + "title": ["Cohuna & District Preschool Centre"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["cdd5c1d3-1d99-4be7-96f8-9bfdc35d7ae5"] + }, + "sort": ["Cohuna & District Preschool Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20708:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cohuna-consolidated-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We installed new carpet in\u00a0classrooms to increase safety and comfort." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $67,353." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cohuna Consolidated School" + ], + "field_latitude": ["-35.8052908"], + "field_latitude_longitude_value": ["-35.8052908,144.2177572"], + "field_latitude_value": ["-35.8052908"], + "field_longitude": ["144.2177572"], + "field_longitude_value": ["144.2177572"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3568"], + "field_project_code": ["01-6211"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Mead St"], + "field_suburb": ["Cohuna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20708], + "status": [true], + "title": ["Cohuna Consolidated School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0c1cd18e-59a9-4bdb-a215-129b58717593"] + }, + "sort": ["Cohuna Consolidated School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24585:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/cohuna-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Gannawarra Shire Council explore future early childhood building projects that would create more kindergarten places in Cohuna and surrounding townships. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $59,898 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Cohuna Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-CKIPP"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24585], + "status": [true], + "title": ["Cohuna Kindergarten Infrastructure Planning Project"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c1fe7e51-95e6-44bb-9834-a2ad060c8378"] + }, + "sort": ["Cohuna Kindergarten Infrastructure Planning Project"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20740:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coimadai-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's\u00a0water drainage and improved the surface of two ovals." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $173,137" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Coimadai Primary School" + ], + "field_latitude": ["-37.61293"], + "field_latitude_longitude_value": ["-37.61293,144.478193"], + "field_latitude_value": ["-37.61293"], + "field_longitude": ["144.478193"], + "field_longitude_value": ["144.478193"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["01-716"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["86 Bennetts Lane"], + "field_suburb": ["Coimadai"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20740], + "status": [true], + "title": ["Coimadai Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0c0614df-2283-474b-a90c-9d7db2ea76bd"] + }, + "sort": ["Coimadai Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21248:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/colac-east-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bBarwon Child, Youth and Family extended the kindergarten to increase its capacity. \u200b \u200b This\u00a0project\u00a0significantly increased the size of the main teaching space so that 33 children can comfortably be accommodated within the space.\u00a0 The extension\u00a0included a consulting room with full visibility to the foyer and the teaching room, a fully accessible toilet with a baby change room and a new staff office incorporating a significant amount of storage. The existing kitchen and staff office was\u00a0combined to create an enhanced kitchen facility with low benches to allow children to be involved in cooking activities. The extension to the kitchen\u00a0also provided laundry facilities and cleaning facilities for wet art activities.\u200b\u200b\u200b\u200b", + "We upgraded the kindergarten bathroom, bringing it up to the standard of the rest of the centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $289,464 was allocated to the kindergarten through the Children's Facilities Capital Program.", + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $137,300 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Learning Facility Upgrade", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Colac East Kindergarten." + ], + "field_latitude": ["-38.33626", "-38.33626448"], + "field_latitude_longitude_value": ["-38.33626,143.59597"], + "field_latitude_value": ["-38.33626"], + "field_longitude": ["143.59597", "143.5962898"], + "field_longitude_value": ["143.59597"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3250"], + "field_project_code": ["15-319", "D1-15-319"], + "field_project_title": [ + "Early Learning Facility Upgrade", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2018", "Q3 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1 Polwarth St"], + "field_suburb": ["Colac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21248], + "status": [true], + "title": ["Colac East Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7aaedc0e-7fa2-428a-a7b5-94a525498ac1"] + }, + "sort": ["Colac East Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19959:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/colac-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade their playground into an inclusive climbing adventure playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $63,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Colac Primary School." + ], + "field_latitude": ["-38.3374548"], + "field_latitude_longitude_value": ["-38.3374548,143.5982067"], + "field_latitude_value": ["-38.3374548"], + "field_longitude": ["143.5982067"], + "field_longitude_value": ["143.5982067"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3250"], + "field_project_code": ["01-117"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["53-65 Murray St East"], + "field_suburb": ["Colac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19959], + "status": [true], + "title": ["Colac Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2cd609f5-153f-4a90-b0c5-54dfb0fb70ab"] + }, + "sort": ["Colac Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20543:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/colac-specialist-school"], + "changed": ["2023-11-29T13:51:23+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are rebuilding the school on part of the former Colac High School site on Murray Street. We will modernise the existing heritage building on the site to house: staff areas and workspaces a library art room music room woodwork room food technology facility an Early Education Program (EEP) facility with its own dedicated playground. We'll build new facilities, including: a classroom building with fit-for-purpose learning spaces, staff areas and art and food preparation spaces an administration building with a multi-purpose space, fitness room, reception, offices and a meeting room. We'll also prove external works, including: a new visitor/staff car park a separate and secure bus and student entry area play areas a garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.544 million in planning funding. In the 2020\u201321 State Budget, the school received $13.899 million. In 2021, an additional $3.767 million was allocated to the project." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Colac Specialist School" + ], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3250"], + "field_project_code": ["01-5247"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Murray St"], + "field_suburb": ["Colac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20543], + "status": [true], + "title": ["Colac Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["89050fee-32b0-461c-99a1-4c27c784a755"] + }, + "sort": ["Colac Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20256:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/colac-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We upgraded the staff and student bathrooms as well as staff facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2020 Minor Capital Works Fund, the school was allocated $468,125." + ], + "field_funding_type_name": ["Planning", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Colac West Primary School." + ], + "field_latitude": ["-38.3357996472638"], + "field_latitude_longitude_value": [ + "-38.3357996472638,143.576730288987" + ], + "field_latitude_value": ["-38.3357996472638"], + "field_longitude": ["143.576730288987"], + "field_longitude_value": ["143.576730288987"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3250"], + "field_project_code": ["D1-01-4064", "01-4064"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Subject to future funding", "Q1 2023"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["12 Ligar St"], + "field_suburb": ["Colac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20256], + "status": [true], + "title": ["Colac West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["342f2696-1e51-4ce8-816e-37b1d7d5eca6"] + }, + "sort": ["Colac West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25004:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coldstream-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade Block A classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $2.456 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Coldstream Primary School" + ], + "field_latitude": ["-37.73255846"], + "field_latitude_longitude_value": ["-37.73255846,145.3827071"], + "field_latitude_value": ["-37.73255846"], + "field_longitude": ["145.3827071"], + "field_longitude_value": ["145.3827071"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3770"], + "field_project_code": ["01-5127"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Kelso Street"], + "field_suburb": ["Coldstream"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25004], + "status": [true], + "title": ["Coldstream Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["60613730-b0a2-4bc7-b23a-6ec955207a02"] + }, + "sort": ["Coldstream Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20709:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/collingwood-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "\u200bWe upgraded\u00a0the\u00a0indoor sports centre at Collingwood College. We\u00a0refurbished\u00a0the single existing full-size basketball court by expanding the three-quarter court to full-size, and built\u00a0a new court.\u00a0This has\u00a0created three competition-grade basketball courts, two of which can also be used for netball.\u200b\u200b This was\u00a0a much-needed facility that can now\u00a0be used by students, and shared with the wider City of Yarra community and the Collingwood Basketball Association. \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In 2017, the Victorian Government allocated $8.3 million for the project." + ], + "field_funding_type_name": [ + "Planning", + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Collingwood College" + ], + "field_latitude": ["-37.802917"], + "field_latitude_longitude_value": ["-37.802917,144.990555"], + "field_latitude_value": ["-37.802917"], + "field_longitude": ["144.990555"], + "field_longitude_value": ["144.990555"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3066"], + "field_project_code": ["D1-01-6212", "01-6212"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation, Shared Facilities Fund" + ], + "field_q_complete": ["Subject to future funding", "Q4 2019"], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Cnr Cromwell St/McCutcheon Way"], + "field_suburb": ["Collingwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20709], + "status": [true], + "title": ["Collingwood College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7b2a01f0-18a4-4e5a-818f-12092852dd00"] + }, + "sort": ["Collingwood College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23305:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/collingwood-college-early-childhood-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are building a new children's centre on the grounds of Collingwood College. The centre will offer 66 approved kindergarten places for 3 and 4-year-olds as well as health and family services. The centre will be built using modular construction." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Collingwood College Early Childhood Centre" + ], + "field_latitude": ["-37.80313054"], + "field_latitude_longitude_value": ["-37.80313054,144.9906689"], + "field_latitude_value": ["-37.80313054"], + "field_longitude": ["144.9906689"], + "field_longitude_value": ["144.9906689"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3066"], + "field_project_code": ["15-COLECC"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Corner of Cromwell St and Mccutcheon Way"], + "field_suburb": ["Collingwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23305], + "status": [true], + "title": ["Collingwood College Early Childhood Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["593171c7-a227-41ed-8c40-cc8af35bf1f3"] + }, + "sort": ["Collingwood College Early Childhood Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22629:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/columbia-park-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded Columbia Park Early Learning Centre's outdoor learning environment for 3 and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $286,051 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Columbia Park Early Learning Centre" + ], + "field_latitude": ["-37.91540046"], + "field_latitude_longitude_value": ["-37.91540046,145.1850997"], + "field_latitude_value": ["-37.91540046"], + "field_longitude": ["145.1850997"], + "field_longitude_value": ["145.1850997"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["15-5078"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["28A Columbia Dr"], + "field_suburb": ["Wheelers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22629], + "status": [true], + "title": ["Columbia Park Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b66c5e04-fc76-447c-86e2-281e44f9909d"] + }, + "sort": ["Columbia Park Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21081:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/community-college-gippsland-ltd/ecg-community-college" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school remove two 1960s buildings containing asbestos \u2212 blocks B and C." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $266,034." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Community College Gippsland Ltd / ECG Community College." + ], + "field_latitude": ["-38.475815275815059"], + "field_latitude_longitude_value": [ + "-38.475815275815059,145.95727361927567" + ], + "field_latitude_value": ["-38.475815275815059"], + "field_longitude": ["145.95727361927567"], + "field_longitude_value": ["145.95727361927567"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3953"], + "field_project_code": ["02-2062"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Design"], + "field_street_address": ["38 Horn St"], + "field_suburb": ["Leongatha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21081], + "status": [true], + "title": ["Community College Gippsland Ltd / ECG Community College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e99bdac6-04a4-49cf-b06b-250f1c6f813a"] + }, + "sort": ["Community College Gippsland Ltd / ECG Community College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19950:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/concongella-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. We collaborated with school leaders to ensure that the upgrade helps them achieve their educational goals. We also made sure that improvements were targeted where they were needed most.\u00a0", + "This funding was used to close in a veranda to create an inclusive, central learning space. The school also gained new accessible toilets and additional ramp access.\u00a0\u200b \u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $1.092 million.", + "In 2016, the school received $179,100 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Concongella Primary School" + ], + "field_latitude": ["-37.0493736", "-37.04937"], + "field_latitude_longitude_value": ["-37.0493736,142.8228338"], + "field_latitude_value": ["-37.0493736"], + "field_longitude": ["142.8228338", "142.82283"], + "field_longitude_value": ["142.8228338"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3384"], + "field_project_code": ["D1-01-1136", "01-1136"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["61 Concongella School Rd"], + "field_suburb": ["Concongella"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19950], + "status": [true], + "title": ["Concongella Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cdb9a212-a486-446e-966a-40837d28e78a"] + }, + "sort": ["Concongella Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20448:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/concord-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. We are upgrading and modernising the school, including constructing a two-storey classroom building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Concord School" + ], + "field_latitude": ["-37.683357238769531"], + "field_latitude_longitude_value": [ + "-37.683357238769531,145.06651306152344" + ], + "field_latitude_value": ["-37.683357238769531"], + "field_longitude": ["145.06651306152344"], + "field_longitude_value": ["145.06651306152344"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3083"], + "field_project_code": ["01-5027"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["411 Grimshaw St"], + "field_suburb": ["Bundoora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20448], + "status": [true], + "title": ["Concord School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5352fee8-3805-4ac4-80cb-a0f12722ba58"] + }, + "sort": ["Concord School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20110:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/congupna-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to upgrade the car park to provide a safer drop-off point for parents and students.", + "We created a new science, technology, engineering and mathematics (STEM)\u00a0building, as well as refurbishing the administration block to provide the school with a new kitchen, staff areas, amenities, server room, sick bay and reception." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $181,125.", + "In the 2016\u201317 State Budget, $225,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Congupna Primary School." + ], + "field_latitude": ["-36.287738800048828", "-36.2878532409668"], + "field_latitude_longitude_value": [ + "-36.287738800048828,145.47361755371094" + ], + "field_latitude_value": ["-36.287738800048828"], + "field_longitude": ["145.47361755371094", "145.475021362305"], + "field_longitude_value": ["145.47361755371094"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3633"], + "field_project_code": ["D1-01-2563", "01-2563"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["3580 Katamatite Rd"], + "field_suburb": ["Congupna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20110], + "status": [true], + "title": ["Congupna Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bfed7417-4c50-4ffe-bf28-05a53e6a0902"] + }, + "sort": ["Congupna Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21211:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cooraminta-north-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Hobsons Bay City Council upgraded the kindergarten to increase the capacity to deliver additional early years services to meet the needs of the community. This upgrade has allowed the introduction of a 3 year old kinder program and additional playgroups.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015\u201316 Children's Facilities Capital Program $226,000 was allocated to the kindergarten." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cooraminta North Kindergarten" + ], + "field_latitude": ["-37.8509699"], + "field_latitude_longitude_value": ["-37.8509699,144.77346"], + "field_latitude_value": ["-37.8509699"], + "field_longitude": ["144.77346"], + "field_longitude_value": ["144.77346"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3028"], + "field_project_code": ["15-1355"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Whittaker Av"], + "field_suburb": ["Laverton North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21211], + "status": [true], + "title": ["Cooraminta North Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f37dcc0-a7f9-4e65-84d1-81d27484132a"] + }, + "sort": ["Cooraminta North Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20914:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/copperfield-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bThese works targeted facilities which needed it the most, ensuring that students learn in facilities that\u00a0are ready for the delivery of modern education. We replaced the roof on Block A, and completed internal refurbishments.", + "We upgraded facilities at the school. These works included replacing the roof on Block E and Block D, delivering a new entry to Block D and undertaking minor refurbishments." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $6.5 million.", + "In the 2018\u201319 State Budget, $3.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Copperfield College." + ], + "field_latitude": ["-37.719310"], + "field_latitude_longitude_value": ["-37.719310,144.772200"], + "field_latitude_value": ["-37.719310"], + "field_longitude": ["144.772200"], + "field_longitude_value": ["144.772200"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3037"], + "field_project_code": ["D1-01-8799", "01-8799"], + "field_project_title": [ + "Upgrade and Modernisation - Block A", + "Upgrade and Modernisation - Block D and E" + ], + "field_q_complete": ["Q4 2021", "Q3 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Goldsmith Av"], + "field_suburb": ["Delahey"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20914], + "status": [true], + "title": ["Copperfield College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ab759295-8e03-41dd-8986-7b21bdbd0815"] + }, + "sort": ["Copperfield College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21179:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cornish-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bWe supported Cornish College to build new\u00a0classrooms and a study area for senior students. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-18 Capital Funding Program for Non-Government Schools, $1,999,978 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cornish College" + ], + "field_latitude": ["-38.051900"], + "field_latitude_longitude_value": ["-38.051900,145.148780"], + "field_latitude_value": ["-38.051900"], + "field_longitude": ["145.148780"], + "field_longitude_value": ["145.148780"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["03-2076"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["65 Riverend Road"], + "field_suburb": ["Bangholme"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21179], + "status": [true], + "title": ["Cornish College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["18a51db4-dc4c-463a-abf2-76ca1705bdae"] + }, + "sort": ["Cornish College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21206:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/coronation-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Wangaratta Rural City Council upgraded\u00a0Coronation Kindergarten to provide: an expanded playroom new entry area with plenty of space for children\u2019s bags a larger office/meeting space new children\u2019s toilets and accessible toilet a storeroom a new kitchen. The upgrade created a modern, active learning environment for staff, children, families and the local community.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $334,500 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Coronation Kindergarten" + ], + "field_latitude": ["-36.35769"], + "field_latitude_longitude_value": ["-36.35769,146.31322"], + "field_latitude_value": ["-36.35769"], + "field_longitude": ["146.31322"], + "field_longitude_value": ["146.31322"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["15-1296"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["39 Roy St"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21206], + "status": [true], + "title": ["Coronation Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["055c7848-14af-4e27-a2e5-18f4ced92b13"] + }, + "sort": ["Coronation Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20008:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/corpus-christi-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported the school to upgrade the learning and play areas and courtyard." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Corpus Christi School." + ], + "field_latitude": ["-37.704240"], + "field_latitude_longitude_value": ["-37.704240,144.923100"], + "field_latitude_value": ["-37.704240"], + "field_longitude": ["144.923100"], + "field_longitude_value": ["144.923100"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["01-1545"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["13-21 Widford St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20008], + "status": [true], + "title": ["Corpus Christi School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["525b5ed8-d5bd-4392-a681-6aac6b9b3456"] + }, + "sort": ["Corpus Christi School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20939:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/corryong-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor areas. We built sensory playground equipment, completed landscaping and installed shade sails.\u00a0We added a synthetic finish to the senior outdoor basketball court. We also re-seeded damaged areas of the soccer pitch.\u00a0We installed air conditioning in the gymnasium, provided mats and refurbished the toilets and showers. We also refurbished the toilets in B Block.", + "We upgraded and modernised facilities when the school consolidated into a single-campus school.\u00a0We constructed a Junior School Learning Centre at the senior school campus. It has:\u00a0flexible spaces for general purpose classrooms\u00a0break out spaces\u00a0an interview and counselling space\u00a0new toilets and sick bay\u00a0external paving and landscape works.\u00a0These works help students learn in a modern education environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2019\u201320 School Pride and Sports Fund the school received $1,250,625.", + "In the 2016\u201317 State Budget, $322,000 was allocated to the school. In the 2017\u201318 State Budget, $2.21 million will be allocated to the school." + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Corryong College." + ], + "field_latitude": ["-36.1925759", "-36.193439"], + "field_latitude_longitude_value": ["-36.1925759,147.9105798"], + "field_latitude_value": ["-36.1925759"], + "field_longitude": ["147.9105798", "147.911987"], + "field_longitude_value": ["147.9105798"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3707"], + "field_project_code": ["D1-01-8843", "01-8843"], + "field_project_title": [ + "School Pride and Sports Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2023", "Q4 2019"], + "field_start_date": ["Q3 2020", "Q3 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["27\u201345 Towong Rd"], + "field_suburb": ["Corryong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20939], + "status": [true], + "title": ["Corryong College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ca974c3-1181-44f7-b1b9-87faf8865440"] + }, + "sort": ["Corryong College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21053:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/covenant-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school build general and specialist learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2.8 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Covenant College." + ], + "field_latitude": ["-38.0981555"], + "field_latitude_longitude_value": ["-38.0981555,144.3148276"], + "field_latitude_value": ["-38.0981555"], + "field_longitude": ["144.3148276"], + "field_longitude_value": ["144.3148276"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["02-1794"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["105 Creamery Rd"], + "field_suburb": ["Bell Post Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21053], + "status": [true], + "title": ["Covenant College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["342fb41c-a234-448b-98e1-045967817d4e"] + }, + "sort": ["Covenant College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19976:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cowes-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a competition-grade gymnasium to meet the growing needs of students and the local community. The new gym gives students a multi-purpose play space, and the local community can share these state-of-the-art facilities outside school hours." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $550,000. In 2020, the school received $4.95 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cowes Primary School." + ], + "field_latitude": ["-38.45715"], + "field_latitude_longitude_value": ["-38.45715,145.24204"], + "field_latitude_value": ["-38.45715"], + "field_longitude": ["145.24204"], + "field_longitude_value": ["145.24204"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/CowesPS-221021-feature-tile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3922"], + "field_project_code": ["01-1282"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["177 Settlement Rd"], + "field_suburb": ["Cowes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19976], + "status": [true], + "title": ["Cowes Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7fe3a7b1-bc3a-4b31-ac9f-bf0019982a3f"] + }, + "sort": ["Cowes Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20058:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cowwarr-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school was significantly damaged by an electrical fault fire in January 2020. The main building, along with the library and the amenities building was destroyed.\u00a0 We provided relocatable buildings so students, who were temporarily relocated to Heyfield Primary School, could return to Cowwarr. Support services, including counselling, have been made available to staff and students.\u00a0 \u200b\u200bThe Victorian Government committed to rebuilding the school. We consulted the community through an online survey from Tuesday 4 until Wednesday 25 March 2020.\u00a0We gave feedback from the survey to the architects so they could begin work on designing the rebuild. After close consultation with the principal and school, we released designs for the rebuild in December 2020. The new school includes office and administration spaces, a staff centre, gallery, practical activities area and 2 classroom spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cowwarr Primary School." + ], + "field_latitude": ["-38.013821"], + "field_latitude_longitude_value": ["-38.013821,146.697937"], + "field_latitude_value": ["-38.013821"], + "field_longitude": ["146.697937"], + "field_longitude_value": ["146.697937"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3857"], + "field_project_code": ["01-1967"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Church St"], + "field_suburb": ["Cowwarr"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20058], + "status": [true], + "title": ["Cowwarr Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9813be6c-5f6e-46d1-8258-d4547fe56ed7"] + }, + "sort": ["Cowwarr Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36786:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/craigieburn-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $229,503" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Craigieburn Primary School" + ], + "field_latitude": ["-37.582645"], + "field_latitude_longitude_value": ["-37.582645,144.933545"], + "field_latitude_value": ["-37.582645"], + "field_longitude": ["144.933545"], + "field_longitude_value": ["144.933545"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-4770"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["87 - 91 Grand Boulevard"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36786], + "status": [true], + "title": ["Craigieburn Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["519346d4-0fb2-424d-b191-bbc92c676d78"] + }, + "sort": ["Craigieburn Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20539:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/craigieburn-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a sensory garden to provide a\u00a0calming and stimulating environment for students. This new\u00a0garden\u00a0offers play experiences that develop body position, muscles and joints, and encourages the use of imagination." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Craigieburn South Primary School" + ], + "field_latitude": ["-37.608753"], + "field_latitude_longitude_value": ["-37.608753,144.935852"], + "field_latitude_value": ["-37.608753"], + "field_longitude": ["144.935852"], + "field_longitude_value": ["144.935852"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-5243"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["102 Hothlyn Dr"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20539], + "status": [true], + "title": ["Craigieburn South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["71127e62-b258-4251-887a-28f15b9b1c8c"] + }, + "sort": ["Craigieburn South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27785:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-carlisle-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Cranbourne Carlisle Primary School" + ], + "field_latitude": ["-38.087532"], + "field_latitude_longitude_value": ["-38.087532,145.289059"], + "field_latitude_value": ["-38.087532"], + "field_longitude": ["145.289059"], + "field_longitude_value": ["145.289059"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5510"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["15 Silky Oak Dr"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27785], + "status": [true], + "title": ["Cranbourne Carlisle Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["ec01f49f-1528-420b-bae3-6882ac3029d4"] + }, + "sort": ["Cranbourne Carlisle Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22299:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-east-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:18+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including soft fall and sensory equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cranbourne East Primary School" + ], + "field_latitude": ["-38.106281"], + "field_latitude_longitude_value": ["-38.106281,145.304437"], + "field_latitude_value": ["-38.106281"], + "field_longitude": ["145.304437"], + "field_longitude_value": ["145.304437"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5518"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Bowyer Av"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22299], + "status": [true], + "title": ["Cranbourne East Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["67e2f5b5-c17d-4bfa-8016-7334d609c680"] + }, + "sort": ["Cranbourne East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20967:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-east-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will build covers over 2 outdoor hardcourts so students can use them in all weather conditions.", + "We built an inclusive playground, including new play equipment and soft fall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $587,000", + "In Round 6 of the Inclusive Schools Fund, this project received $169,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cranbourne East Secondary College." + ], + "field_latitude": ["-38.1049463"], + "field_latitude_longitude_value": ["-38.1049463,145.3061059"], + "field_latitude_value": ["-38.1049463"], + "field_longitude": ["145.3061059"], + "field_longitude_value": ["145.3061059"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["D1-01-8898", "01-8898"], + "field_project_title": [ + "Upgrade and Modernisation - Outdoor Hardcourts", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q3 2025", "Q1 2022"], + "field_start_date": ["Q2 2023", "Q2 2021"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["50 Stately Dr"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20967], + "status": [true], + "title": ["Cranbourne East Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2502e2f0-5e9e-4497-bbc8-db6338fd785a"] + }, + "sort": ["Cranbourne East Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33031:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are upgrading sports spaces at this school. We will resurface the oval with synthetic turf, and install a running track and football and soccer area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $1.9 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cranbourne Park Primary School" + ], + "field_latitude": ["-38.104064"], + "field_latitude_longitude_value": ["-38.104064,145.277745"], + "field_latitude_value": ["-38.104064"], + "field_longitude": ["145.277745"], + "field_longitude_value": ["145.277745"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-4887"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["1 Tucker Street"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33031], + "status": [true], + "title": ["Cranbourne Park Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["7db9982b-e0c9-403b-9a48-a8ad4f62a8b5"] + }, + "sort": ["Cranbourne Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20071:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the gymnasium, including adding toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cranbourne Primary School." + ], + "field_latitude": ["-38.1111152412856"], + "field_latitude_longitude_value": [ + "-38.1111152412856,145.286984650594" + ], + "field_latitude_value": ["-38.1111152412856"], + "field_longitude": ["145.286984650594"], + "field_longitude_value": ["145.286984650594"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-2068"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Bakewell St"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20071], + "status": [true], + "title": ["Cranbourne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["017aedcb-f047-47a3-b632-0a80db016554"] + }, + "sort": ["Cranbourne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20779:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We transformed tired facilities at the college by refurbishing\u00a0the performing arts areas\u00a0and building a new double-court\u00a0gymnasium.", + "We rebuilt\u00a0this school with a major\u00a0upgrade that\u00a0includes a new visual arts facility. We also refurbished\u00a0the science and technology wing\u00a0and the wellbeing and careers area. In additon, we also undertook\u00a0extensive landscaping to\u00a0support\u00a0outdoor learning.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2019\u201320 State Budget, the school received $662,000. In 2020, the school received $5.96 million.", + "In the 2016\u201317 State Budget, $9 million was allocated to the school. In the 2015\u201316 State Budget, $1 million was allocated to the school." + ], + "field_funding_type_name": [ + "Planning", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cranbourne Secondary College" + ], + "field_latitude": ["-38.107822,", "-38.108109"], + "field_latitude_longitude_value": ["-38.108109,145.284378"], + "field_latitude_value": ["-38.108109"], + "field_longitude": ["145.287186", "145.284378"], + "field_longitude_value": ["145.284378"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["D2-01-7747", "D1-01-7747", "01-7747"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation - Performing Arts Centre and Gymnasium", + "Upgrade and Modernisation" + ], + "field_q_complete": [ + "Subject to future funding", + "Q3 2022", + "Q4 2019" + ], + "field_start_date": ["Q2 2023", "Q2 2019"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["Stawell St"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20779], + "status": [true], + "title": ["Cranbourne Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7d844fba-49e7-4992-b0cf-76adcf81eeba"] + }, + "sort": ["Cranbourne Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20344:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the\u00a0school. We built a new administration and learning building, and upgraded the car park and playing fields." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $5.9 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Cranbourne South Primary School." + ], + "field_latitude": ["-38.15951"], + "field_latitude_longitude_value": ["-38.15951,145.24331"], + "field_latitude_value": ["-38.15951"], + "field_longitude": ["145.24331"], + "field_longitude_value": ["145.24331"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-4755"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Pearcedale Rd"], + "field_suburb": ["Cranbourne South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20344], + "status": [true], + "title": ["Cranbourne South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f68a613b-1ad5-4dca-a281-16bd410166cc"] + }, + "sort": ["Cranbourne South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20512:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the student bathroom to improve amenity, cleanliness and hygiene.", + "We upgraded the main oval to an artificial grass sports field.", + "We built outdoor spaces that provide sensory experiences and encourage motor development, and indoor spaces to help students regulate their emotions and maintain focus. The project implemented appropriate ground surfaces, playground equipment, shade and seating.", + "We helped\u00a0the school to upgrade internal learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $458,127.", + "In the 2019\u201320 State Budget, the school received $700,000.", + "In 2018, $150,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $62,120." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Cranbourne West Primary School" + ], + "field_latitude": [ + "-38.102713", + "-38.10308", + "-38.103081", + "-38.1027917" + ], + "field_latitude_longitude_value": ["-38.102713,145.267723"], + "field_latitude_value": ["-38.102713"], + "field_longitude": [ + "145.267723", + "145.26811", + "145.268112", + "145.2668634" + ], + "field_longitude_value": ["145.267723"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": [ + "D3-01-5189", + "D1-01-5189", + "01-5189", + "D2-01-5189" + ], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2023", "Q4 2020", "Q1 2020", "Q3 2021"], + "field_start_date": ["Q4 2021", "Q2 2019", "Q4 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["110 Duff St"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20512], + "status": [true], + "title": ["Cranbourne West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ca3f7c54-7e0f-4076-93dc-0ea8af3bf42e"] + }, + "sort": ["Cranbourne West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20780:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/cranbourne-west-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built the final\u00a0stage of the school.\u00a0 This stage includes:\u00a0 2 additional learning communities\u00a0 performing arts and physical education building\u00a0 another 2 outdoor play courts a car park.\u00a0 Once this stage is complete, the school will have places for up to 1,100 mainstream and 100 specialist students.", + "We built a new secondary college in Cranbourne West. It opened in 2021 and helps the growing local population get great education close to home.\u00a0\u00a0 Rob Duncan was\u00a0appointed as the first principal. The first stage of the new school included: the visual arts\u00a0building a learning community the science, technology, engineering and maths building\u00a0 an\u00a0administration building a sports oval 2 outdoor play courts. Enrolments opened for Year 7 in 2021, increasing by year level in each consecutive year.\u00a0 Supported inclusion school This school is a\u00a0supported inclusion school. This means the school has been designed to support a higher number of students with a disability than a typical mainstream school. Included in the school design are facilities that provide additional support, so that all students have access to the same learning and play spaces. These additional facilities include: wider corridors additional spaces throughout the school that could be used as consultation rooms an enhanced accessible toilet (where a hoist could be installed if needed) a project/kitchen space where kids with special eating requirements can be accommodated an additional fitness room for therapeutic use pressure poles.\u00a0 School name Cranbourne West Secondary College\u00a0was chosen as the school name\u00a0following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. The school is named after the suburb it is located in. This is the first new secondary college to be built in Cranbourne West. We consulted\u00a0with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $15.21 million.", + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for this school. In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Cranbourne West Secondary College." + ], + "field_latitude": ["-38.1073386682129", "-38.106621"], + "field_latitude_longitude_value": [ + "-38.1073386682129,145.24916682876" + ], + "field_latitude_value": ["-38.1073386682129"], + "field_longitude": ["145.24916682876", "145.245433"], + "field_longitude_value": ["145.24916682876"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Inside Cranbourne West Secondary College"], + "field_postcode": ["3977"], + "field_project_code": ["D1-01-7748", "01-7748"], + "field_project_title": [ + "New School - Additional Stage", + "New School" + ], + "field_q_complete": ["Q3 2022", "Q1 2021"], + "field_start_date": ["Q2 2021", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["80 Strathlea Dr"], + "field_suburb": ["Cranbourne West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20780], + "status": [true], + "title": ["Cranbourne West Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c5cc1b50-2c6b-4884-adaf-fafb06a2a2b0"] + }, + "sort": ["Cranbourne West Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21152:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/creek-street-christian-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to construct a 2-storey multipurpose building for Year 11 and 12 students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2.48 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Creek Street Christian College." + ], + "field_latitude": ["-36.7663225"], + "field_latitude_longitude_value": ["-36.7663225,144.2712635"], + "field_latitude_value": ["-36.7663225"], + "field_longitude": ["144.2712635"], + "field_longitude_value": ["144.2712635"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["03-1824"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["6 Violet St"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21152], + "status": [true], + "title": ["Creek Street Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a931e3fa-8e1b-4fa0-830c-4bd39f966ede"] + }, + "sort": ["Creek Street Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27791:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/creswick-north-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $87,800." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Creswick North Primary School" + ], + "field_latitude": ["-37.40883711"], + "field_latitude_longitude_value": ["-37.40883711,143.8908198"], + "field_latitude_value": ["-37.40883711"], + "field_longitude": ["143.8908198"], + "field_longitude_value": ["143.8908198"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3363"], + "field_project_code": ["01-2041"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["93 Macs St"], + "field_suburb": ["Creswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27791], + "status": [true], + "title": ["Creswick North Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["ff020328-30fe-4d55-bdb5-beda5c569e72"] + }, + "sort": ["Creswick North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20163:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/crib-point-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a playground and surrounding sensory gardens. The playground includes tactile elements\u00a0to encourage exploratory play, with a number of spaces to sit, regather, rest and reflect.", + "We helped\u00a0the school to refurbish the roof of the senior school building and construct a covered walkway." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $117,400 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $88,625." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Crib Point Primary School" + ], + "field_latitude": ["-38.360484", "-38.360413"], + "field_latitude_longitude_value": ["-38.360484,145.200539"], + "field_latitude_value": ["-38.360484"], + "field_longitude": ["145.200539", "145.20021"], + "field_longitude_value": ["145.200539"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3919"], + "field_project_code": ["01-3080", "D1-01-3080"], + "field_project_title": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2019", "Q2 2021"], + "field_start_date": ["Q4 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["70 Milne St"], + "field_suburb": ["Crib Point"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20163], + "status": [true], + "title": ["Crib Point Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e51b4df1-9739-488e-a813-4e22f29c626d"] + }, + "sort": ["Crib Point Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20316:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/croxton-special-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school has benefited from Victoria's largest-ever single investment in upgrading specialist schools. 39 schools sharing $388.8 million. We constructed a new specialist learning building, which houses: shared and hands-on learning spaces a performing arts and drama area a food technology cafe and kitchen for students physical therapy areas. We also upgraded the gymnasium toilets and completed landscaping across the school.", + "We built an outdoor sensory play area for students.", + "\u200b\u200b\u200b\u200bWe upgraded Croxton Special School. Funding was used to develop the school's\u00a0therapy areas and a new sensory courtyard. The upgrades also connected four learning areas to a central gathering space. The fully landscaped\u00a0central sensory courtyard provides cool air that filters through the school.\u00a0\u00a0\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $7.985 million.", + "In 2019, $198,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In the 2016\u201317 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Croxton Special School" + ], + "field_latitude": ["-37.772274017333984", "-37.76456", "-37.76456"], + "field_latitude_longitude_value": [ + "-37.772274017333984,144.99937438964844" + ], + "field_latitude_value": ["-37.772274017333984"], + "field_longitude": ["144.99937438964844", "144.987", "144.987"], + "field_longitude_value": ["144.99937438964844"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3070"], + "field_project_code": ["D2-01-4679", "D1-01-4679", "01-4679"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q3 2021", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["159-165 Beaconsfield Pde"], + "field_suburb": ["Northcote"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20316], + "status": [true], + "title": ["Croxton Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["03219f50-248e-43e9-9a44-7ec71468f6a0"] + }, + "sort": ["Croxton Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26214:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/croydon-central-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping Maroondah City Council plan to expand and better integrate the kindergarten with the co-located children and families hub. This will create more kindergarten places for local 3 and 4-year-olds and make it easier for families to get early childhood care. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Croydon Central Kindergarten" + ], + "field_latitude": ["-37.80156073"], + "field_latitude_longitude_value": ["-37.80156073,145.2811133"], + "field_latitude_value": ["-37.80156073"], + "field_longitude": ["145.2811133"], + "field_longitude_value": ["145.2811133"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["15-CCK"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["7 Civic Square"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26214], + "status": [true], + "title": ["Croydon Central Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["1f30bdeb-cd07-4d71-8a29-eadc85f685c6"] + }, + "sort": ["Croydon Central Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20781:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/croydon-community-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new campus for Croydon Community School on the site of the former Croydon Secondary College. It features better facilities for students and staff, including new administration, wellbeing, 'Town Hall' and advisory buildings, physical education facilities and general classrooms. We worked\u00a0closely with the school and architects to ensure that the plans aligned with the school\u2019s vision and needs.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $7 million was allocated to schools across the state for planning, including Croydon Community School. In 2020, the school was allocated $18.12 million for this project." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Croydon Community School" + ], + "field_latitude": ["-37.788909"], + "field_latitude_longitude_value": ["-37.788909,145.280818"], + "field_latitude_value": ["-37.788909"], + "field_longitude": ["145.280818"], + "field_longitude_value": ["145.280818"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Croydon Community School - new campus"], + "field_postcode": ["3136"], + "field_project_code": ["01-7757"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["61-77 Croydon Rd"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20781], + "status": [true], + "title": ["Croydon Community School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5ee728ab-ec3f-495f-8fac-db80a098cf83"] + }, + "sort": ["Croydon Community School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25368:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/croydon-hills-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We replaced damaged ceiling in multiple learning areas. This work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $433,432 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Croydon Hills Primary School" + ], + "field_latitude": ["-37.776679"], + "field_latitude_longitude_value": ["-37.776679,145.272045"], + "field_latitude_value": ["-37.776679"], + "field_longitude": ["145.272045"], + "field_longitude_value": ["145.272045"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["01-5255"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["Campaspe Drive"], + "field_suburb": ["Croydon Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25368], + "status": [true], + "title": ["Croydon Hills Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["54a4de5c-a96d-4592-9226-f56857bef3e8"] + }, + "sort": ["Croydon Hills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20143:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/croydon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Building on previous works, we are continuing to modernise the school. Our latest project will include upgrading the toilet block and art room. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We have delivered\u00a0a new architect-designed modular building to the school to replace Block A with new classrooms and administration facilities. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and mortar structures.\u200b The school is part of the\u00a0Permanent Modular School Buildings Program\u200b.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $1.347 million.\u00a0In 2022 the school was allocated a further $167,162.", + "In the 2017\u201318 State Budget, $2,296,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Croydon Primary School" + ], + "field_latitude": ["-37.7834380000009", "-37.79422"], + "field_latitude_longitude_value": [ + "-37.7834380000009,145.283938850017" + ], + "field_latitude_value": ["-37.7834380000009"], + "field_longitude": ["145.283938850017", "145.28119"], + "field_longitude_value": ["145.283938850017"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["D1-01-2900", "01-2900"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2023", "Q4 2018"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Cnr Kent Av & Croydon Rd"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20143], + "status": [true], + "title": ["Croydon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["19ffac50-446c-464f-98af-89f435e67057"] + }, + "sort": ["Croydon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20523:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/croydon-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We are upgrading the hydrotherapy and administration buildings, as well as the gym.", + "We\u00a0refurbished\u00a0relocatable buildings to improve their condition and usability.", + "We built an inclusive playground with outdoor learning spaces that promote engagement, flexibility, and independence in the school's students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $11.747 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Croydon Special Developmental School" + ], + "field_latitude": ["-37.815627", "-37.8156042", "-37.8156"], + "field_latitude_longitude_value": ["-37.815627,145.280781"], + "field_latitude_value": ["-37.815627"], + "field_longitude": ["145.280781", "145.2805724", "145.28057"], + "field_longitude_value": ["145.280781"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["D2-01-5210", "D1-01-5210", "01-5210"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q2 2021", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q4 2019"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["71-95 Belmont Rd East"], + "field_suburb": ["Croydon South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20523], + "status": [true], + "title": ["Croydon Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["65b8c88c-fdfa-45d9-bb79-9fe8dc89e029"] + }, + "sort": ["Croydon Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20234:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/currawa-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.453 million.\u00a0 In 2022, the school was allocated $0.450 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Currawa Primary School." + ], + "field_latitude": ["-36.393989562988281"], + "field_latitude_longitude_value": [ + "-36.393989562988281,145.69981384277344" + ], + "field_latitude_value": ["-36.393989562988281"], + "field_longitude": ["145.69981384277344"], + "field_longitude_value": ["145.69981384277344"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3647"], + "field_project_code": ["01-3907"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Ridge Rd"], + "field_suburb": ["Dookie Campus"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20234], + "status": [true], + "title": ["Currawa Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8dbcfdae-2d1f-4615-a6dc-18a1a19b3cc2"] + }, + "sort": ["Currawa Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20656:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dallas-brooks-community-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This\u00a0project brought\u00a0together the school's\u00a0outdoor areas so they can be better used as learning spaces. There are 4 distinct landscaped, outdoor learning areas with new seating and performance spaces. There is also a canteen and kitchen gardens\u200b\u200b.", + "We built a\u00a0sensory outdoor learning space with an inclusive diabolo, a play panel and shape finder, rainbow chimes, sensory flowers and tubophone. The equipment is designed to stimulate the senses during learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget $500,000 has been allocated to the school.", + "In 2018, $191,500 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dallas Brooks Community Primary School." + ], + "field_latitude": ["-37.67025"], + "field_latitude_longitude_value": ["-37.67025,144.94318"], + "field_latitude_value": ["-37.67025"], + "field_longitude": ["144.94318"], + "field_longitude_value": ["144.94318"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["01-5546", "D1-01-5546"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2017", "Q3 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["26-36 King St"], + "field_suburb": ["Dallas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20656], + "status": [true], + "title": ["Dallas Brooks Community Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["61545a7b-8dec-4266-932a-66f9217f353e"] + }, + "sort": ["Dallas Brooks Community Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21223:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/dallas-kindergarten-dallas-brooks-community-primary-school" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded this kindergarten. We provided nappy-change areas, and refreshed floor finishes.", + "We helped improve the quality of the outdoor play space at the kindergarten. This project has enabled flexible use of the indoor and outdoor spaces, and allowed children to engage with a broader range of natural environments and play experiences." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $347,575.00 was allocated to the project.", + "In the 2020\u201321 Building Blocks Improvement Grant $176,894 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dallas Kindergarten @ Dallas Brooks Community Primary School." + ], + "field_latitude": ["-37.671241760253906"], + "field_latitude_longitude_value": [ + "-37.671241760253906,144.93663024902344" + ], + "field_latitude_value": ["-37.671241760253906"], + "field_longitude": ["144.93663024902344"], + "field_longitude_value": ["144.93663024902344"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["d1-15-190", "15-190"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2023", "Q4 2021"], + "field_start_date": ["Q4 2022", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["26-36 King St"], + "field_suburb": ["Dallas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21223], + "status": [true], + "title": [ + "Dallas Kindergarten @ Dallas Brooks Community Primary School" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["46a7fc8d-c657-4810-9b65-19efc762aed2"] + }, + "sort": ["Dallas Kindergarten @ Dallas Brooks Community Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21106:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/damascus-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish and extend their performing arts facility and upgrade\u00a0science rooms.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Damascus College" + ], + "field_latitude": ["-37.611790"], + "field_latitude_longitude_value": ["-37.611790,143.868561"], + "field_latitude_value": ["-37.611790"], + "field_longitude": ["143.868561"], + "field_longitude_value": ["143.868561"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["02-265"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1412 Geelong Road"], + "field_suburb": ["MOUNT CLEAR"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21106], + "status": [true], + "title": ["Damascus College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d6969fcd-52f3-4ed1-bbe9-397149c4bb22"] + }, + "sort": ["Damascus College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20783:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dandenong-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school. Works included new Science, Technology, Engineering and Mathematics (STEM), canteen and food technology facilities.", + "We completed stage 4 of the modernisation project of the school in 2018. The library was refurbished\u00a0to provide:\u00a0 a\u00a0senior visual arts/media centre to the first floor\u00a0 a learning resource and arts/media centre to the ground floor.\u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $8.46 million.", + "In the 2015\u201316 State Budget, $3 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dandenong High School" + ], + "field_latitude": ["-37.98432", "-37.9843199"], + "field_latitude_longitude_value": ["-37.98432,145.21313"], + "field_latitude_value": ["-37.98432"], + "field_longitude": ["145.21313", "145.21313"], + "field_longitude_value": ["145.21313"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["D1-01-7760", "01-7760"], + "field_project_title": [ + "Upgrade and Modernisation - STEM Canteen & Food Technology Facilities", + "Upgrade and Modernisation - Stage 4" + ], + "field_q_complete": ["Q4 2022", "Q3 2018"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Princes Hwy"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20783], + "status": [true], + "title": ["Dandenong High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["088a4309-88f3-4200-80c0-2ef35cb1d71d"] + }, + "sort": ["Dandenong High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20332:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dandenong-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a competition-grade gymnasium, with a canteen and music room. We converted the existing gymnasium into a library and project space for Science, Technology, Engineering and Maths (STEM).", + "We built a new architect-designed modular building\u00a0for the school\u00a0to replace Block B. This offers\u00a0new classrooms and toilet facilities. \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $6 million, to combine with a $2 million co-contribution from the school.", + "In the 2017\u201318 State Budget, $1,914,000 was allocated to the school as part of the Permanent Modular School Buildings Program. Previously $148,000 Planned maintenance funding was allocated to address site infrastructure." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dandenong North Primary School." + ], + "field_latitude": ["-37.976487", "-37.9763499"], + "field_latitude_longitude_value": ["-37.976487,145.215903"], + "field_latitude_value": ["-37.976487"], + "field_longitude": ["145.215903", "145.21462"], + "field_longitude_value": ["145.215903"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["D1-01-4723", "01-4723"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q1 2023", "Q4 2018"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["117-125 Cleeland St"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20332], + "status": [true], + "title": ["Dandenong North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["15ebeafb-426e-4fa8-9d63-367fb7c3ea18"] + }, + "sort": ["Dandenong North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22338:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dandenong-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:23:44+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet block to improve amenity, cleanliness and hygiene and undertook roof repairs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $458,127" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Dandenong Primary School" + ], + "field_latitude": ["-37.987917"], + "field_latitude_longitude_value": ["-37.987917,145.219821"], + "field_latitude_value": ["-37.987917"], + "field_longitude": ["145.219821"], + "field_longitude_value": ["145.219821"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["01-1403"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["174-182 Foster Street"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22338], + "status": [true], + "title": ["Dandenong Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["a3b27afe-a681-47a8-a7b8-430cb046ab73"] + }, + "sort": ["Dandenong Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21272:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dandenong-ranges-steiner-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading this kindergarten by building a new office and meeting room. We are also installing new heating and air conditioning.", + "We upgraded the facilities at the\u00a0kindergarten. A veranda extension and new corrugated iron roof provides children and staff with a sheltered place to store their bags and shoes." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $131,097.72 was allocated to the project.", + "In the 2020\u201321 Building Blocks Improvement Grant $61,936 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dandenong Ranges Steiner School Kindergarten." + ], + "field_latitude": ["-37.916751861572266"], + "field_latitude_longitude_value": [ + "-37.916751861572266,145.4034423828125" + ], + "field_latitude_value": ["-37.916751861572266"], + "field_longitude": ["145.4034423828125"], + "field_longitude_value": ["145.4034423828125"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3159"], + "field_project_code": ["d1-15-4293", "15-4293"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2024", "Q2 2021"], + "field_start_date": ["Q4 2022", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["51 School Rd"], + "field_suburb": ["Menzies Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21272], + "status": [true], + "title": ["Dandenong Ranges Steiner School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c89e5ba8-7f41-4748-9a3f-7bf36da37c31"] + }, + "sort": ["Dandenong Ranges Steiner School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20536:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dandenong-valley-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will deliver the first stage of the master plan. This includes building new classrooms and administration areas and upgrading the toilets.", + "We refurbished classrooms, kitchen and toilets.", + "We have\u00a0redeveloped\u00a0the school's hydrotherapy pool to create a more inclusive learning environment for students with sensory processing difficulties. Existing wall surfaces have been\u00a0painted, and shutters installed to allow the environment to be darkened. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $14.775 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $372,125.", + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dandenong Valley Special Developmental School" + ], + "field_latitude": ["-38.00759964", "-38.0088109020693", "-38.00958"], + "field_latitude_longitude_value": ["-38.00759964,145.2959991"], + "field_latitude_value": ["-38.00759964"], + "field_longitude": ["145.2959991", "145.296379819765", "145.29487"], + "field_longitude_value": ["145.2959991"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["D2-01-5238", "D1-01-5238", "01-5238"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2024", "Q1 2022", "Q1 2018"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["19-21 Victoria Rd"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20536], + "status": [true], + "title": ["Dandenong Valley Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["849ab439-071d-4b07-bfa5-b93a1197803b"] + }, + "sort": ["Dandenong Valley Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20274:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dandenong-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0facilities at Dandenong West Primary School by\u00a0building\u00a0a\u00a0new learning community area with five\u00a0new classrooms, as well as\u00a0withdrawal, administration and staff workspaces. We also constructed\u00a0a new multipurpose hall\u00a0and canteen, and refurbished\u00a0the heritage building to create\u00a0administration and staff space.", + "We\u00a0built\u00a0an edible garden which\u00a0enables students to be involved in all aspects of growing plants, from seed to table. We also\u00a0added\u00a0six sensory stations around the existing walking track." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, the school shared in $12 million planning funding. The school has received an additional $5.2 million in the 2018\u201319 State Budget.", + "In 2018, $35,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dandenong West Primary School" + ], + "field_latitude": ["-37.981560"], + "field_latitude_longitude_value": ["-37.981560,145.200333"], + "field_latitude_value": ["-37.981560"], + "field_longitude": ["145.200333"], + "field_longitude_value": ["145.200333"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["01-4217", "D1-01-4217"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2020", "Q3 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["32 Birdwood Av"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20274], + "status": [true], + "title": ["Dandenong West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["692a4ad0-3b41-415c-b9e6-119ca7e401ad"] + }, + "sort": ["Dandenong West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20520:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/darley-primary-school"], + "changed": ["2023-07-26T15:49:14+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities.", + "We built\u00a0a new outdoor learning area with a classroom space, a rock-seating amphitheatre, fitness trail and sensory garden. We also installed a spider web climber, a jungle square, a trampoline and a moving balance beam." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $10.678 million.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Darley Primary School" + ], + "field_latitude": ["-37.65528318", "-37.65528318"], + "field_latitude_longitude_value": ["-37.65528318,144.4369086"], + "field_latitude_value": ["-37.65528318"], + "field_longitude": ["144.4369086", "144.4369086"], + "field_longitude_value": ["144.4369086"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["D1-01-5200", "01-5200"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2025", "Q3 2019"], + "field_start_date": ["Q2 2022", "Q4 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["21 Nelson St"], + "field_suburb": ["Bacchus Marsh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20520], + "status": [true], + "title": ["Darley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["91490adb-c585-49e3-913e-b80b3264516f"] + }, + "sort": ["Darley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20092:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/darnum-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a shelter for the basketball courts to provide students with an all-weather play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $312,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Darnum Primary School." + ], + "field_latitude": ["-38.1876482"], + "field_latitude_longitude_value": ["-38.1876482,145.9997289"], + "field_latitude_value": ["-38.1876482"], + "field_longitude": ["145.9997289"], + "field_longitude_value": ["145.9997289"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3822"], + "field_project_code": ["01-2319"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["6 Graham St"], + "field_suburb": ["Darnum"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20092], + "status": [true], + "title": ["Darnum Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cf001d63-e2f2-4207-8dea-46cfb6a1fb41"] + }, + "sort": ["Darnum Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20906:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/darraweit-guim-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0and modernised\u00a0facilities at Darraweit Guim Primary School. The project included\u00a0upgrades to the Stephanie Alexander kitchen.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $60,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Darraweit Guim Primary School" + ], + "field_latitude": ["-37.40065"], + "field_latitude_longitude_value": ["-37.40065,144.89345"], + "field_latitude_value": ["-37.40065"], + "field_longitude": ["144.89345"], + "field_longitude_value": ["144.89345"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3756"], + "field_project_code": ["01-878"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Darraweit Valley Road"], + "field_suburb": ["Darraweit Guim"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20906], + "status": [true], + "title": ["Darraweit Guim Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ee3d312d-a910-4f6a-9f29-5e9805adfaa7"] + }, + "sort": ["Darraweit Guim Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31063:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/darul-ulum-academy"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-08T12:12:16+11:00"], + "field_about_project_processed": [ + "We are helping the school construct a two-storey building for Prep \u2013 Year 4 classes at Darul Ulum Academy. The building will include 14 classrooms, an art room, staff facilities, a study area, breakout rooms and staff and student amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021-22 capital funding program for non-government schools, the school received $3.5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Darul Ulum Academy" + ], + "field_latitude": ["-37.54270315"], + "field_latitude_longitude_value": ["-37.54270315,144.8966977"], + "field_latitude_value": ["-37.54270315"], + "field_longitude": ["144.8966977"], + "field_longitude_value": ["144.8966977"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Learn more about our support of the facilities at Darul Ulum College of Victoria ." + ], + "field_postcode": ["3064"], + "field_project_code": ["D2-03-1965"], + "field_project_title": [ + "Non-Government Schools Capital Fund - Darul Ulum Academy" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["112 Ellscott Boulevard"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31063], + "status": [true], + "title": ["Darul Ulum Academy"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["6ec50d68-abd3-40e7-b0d0-265bed3b530f"] + }, + "sort": ["Darul Ulum Academy"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21171:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/darul-ulum-college-victoria"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Darul Ulum College of Victoria to\u00a0upgrade\u00a0a\u00a0two-storey classroom building. This provided six general learning areas, three staff work offices, staff lounge, photocopy room and circulation spaces.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015-16 to 2018-19 Capital Funding Program for Non-Government Schools, $782,733 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Darul Ulum College of Victoria" + ], + "field_latitude": ["-37.70712"], + "field_latitude_longitude_value": ["-37.70712,144.97063"], + "field_latitude_value": ["-37.70712"], + "field_longitude": ["144.97063"], + "field_longitude_value": ["144.97063"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Learn more about our support of the facilities at\u00a0 Darul Ulum Academy ." + ], + "field_postcode": ["3060"], + "field_project_code": ["03-1965"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["17 Baird Street"], + "field_suburb": ["FAWKNER NORTH"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21171], + "status": [true], + "title": ["Darul Ulum College of Victoria"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0b318633-dc5a-40e6-96fc-9a72e3ad9843"] + }, + "sort": ["Darul Ulum College of Victoria"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28125:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/david-scott-school-brotherhood-st-laurence"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school build a 2-storey learning and staff collaboration hub. The hub will include 7 flexible learning areas, meeting rooms, staff office space and amenities, administration and reception areas, a first aid room and installation of a lift." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at David Scott School, Brotherhood of St Laurence." + ], + "field_latitude": ["-38.14820905880688"], + "field_latitude_longitude_value": [ + "-38.14820905880688,145.1188861107721" + ], + "field_latitude_value": ["-38.14820905880688"], + "field_longitude": ["145.1188861107721"], + "field_longitude_value": ["145.1188861107721"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["01-2112"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["22 High St"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28125], + "status": [true], + "title": ["David Scott School, Brotherhood of St Laurence"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d9cfb550-f8db-4326-96e0-09c57fad93d6"] + }, + "sort": ["David Scott School, Brotherhood of St Laurence"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20639:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/davis-creek-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We built\u00a0a new primary school. The school will help ease enrolment pressures at surrounding schools and meet future demand from a growing population.\u00a0 We are constructing a kinder on the same site as Davis Creek Primary School that is scheduled to open in 2021. This will help local\u00a0children make\u00a0a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Further information on the school can be found at its official Facebook page. \u200b\u200b \u200b\u200b School name Davis Creek Primary School is named after a seasonal river that flows in the area near this new school.\u00a0 The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000.", + "The 2015-16 State Budget allocated funding to buy land in this area for a new school. The school received an additional $20.1 million in the 2018-19 State Budget for construction. In the 2018-19 State Budget $3 million was allocated for the early learning facility. In the 2019-20 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["Inclusive Schools Fund", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Davis Creek Primary School" + ], + "field_latitude": ["-37.855876", "-37.856113"], + "field_latitude_longitude_value": ["-37.855876,144.660236"], + "field_latitude_value": ["-37.855876"], + "field_longitude": ["144.660236", "144.659608"], + "field_longitude_value": ["144.660236"], + "field_mappintype_name": ["School upgrade", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["First day at Davis Creek Primary School"], + "field_postcode": ["3029"], + "field_project_code": ["d1-5055", "01-5505"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "New School" + ], + "field_q_complete": ["Q1 2024", "Q1 2020"], + "field_start_date": ["Q4 2022", "Q2 2015"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["65 Wootten Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20639], + "status": [true], + "title": ["Davis Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eb23a3df-b09f-4ad8-8edf-2c00c52fbb0a"] + }, + "sort": ["Davis Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21475:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/davis-creek-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bA new kindergarten has been built at Davis Creek Primary School. Having the kindergarten and school together may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children. This kindergarten will be operational in 2021.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $3 million was allocated for the early learning facility at David Creek Primary School." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Davis Creek Primary School Kindergarten." + ], + "field_latitude": ["-37.85573"], + "field_latitude_longitude_value": ["-37.85573,144.65876"], + "field_latitude_value": ["-37.85573"], + "field_longitude": ["144.65876"], + "field_longitude_value": ["144.65876"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["K-01-5505"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2015"], + "field_status_name": ["Complete"], + "field_street_address": ["65 Wootten Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21475], + "status": [true], + "title": ["Davis Creek Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["469f943e-ba14-4fa0-97f0-ef75fa55107f"] + }, + "sort": ["Davis Creek Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22626:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dawson-street-child-care-co-operative"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We renovated the staffroom to help Dawson Street Child Care Co-operative prepare for the roll-out of funded kindergarten for 3 and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $94,400 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dawson Street Child Care Co-operative" + ], + "field_latitude": ["-37.77130219"], + "field_latitude_longitude_value": ["-37.77130219,144.95787"], + "field_latitude_value": ["-37.77130219"], + "field_longitude": ["144.95787"], + "field_longitude_value": ["144.95787"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3056"], + "field_project_code": ["15-4152"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["31 Dawson St"], + "field_suburb": ["Brunswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22626], + "status": [true], + "title": ["Dawson Street Child Care Co-operative"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1ce2a60d-b6dc-4dae-aca1-d10769c5f492"] + }, + "sort": ["Dawson Street Child Care Co-operative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36785:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/daylesford-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $244,855" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Daylesford Primary School" + ], + "field_latitude": ["-37.34510484"], + "field_latitude_longitude_value": ["-37.34510484,144.1415552"], + "field_latitude_value": ["-37.34510484"], + "field_longitude": ["144.1415552"], + "field_longitude_value": ["144.1415552"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3460"], + "field_project_code": ["01-1609"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["102-128 Vincent Street"], + "field_suburb": ["Daylesford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36785], + "status": [true], + "title": ["Daylesford Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["94be382c-2432-4bc5-b701-eb45fbc12a58"] + }, + "sort": ["Daylesford Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20738:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/daylesford-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Daylesford Secondary College. As part of this we built new food technology, science and art classrooms, and a music practice room.\u00a0 Other refurishments included\u00a0new staff and student toilets, landscaping works and a reconfigured car park" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $10 million was allocated to the school. In the 2014-15 State Budget, $133,075 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Daylesford Secondary College" + ], + "field_latitude": ["-37.337318"], + "field_latitude_longitude_value": ["-37.337318,144.150833"], + "field_latitude_value": ["-37.337318"], + "field_longitude": ["144.150833"], + "field_longitude_value": ["144.150833"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3460"], + "field_project_code": ["01-7115"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["39 Smith Street"], + "field_suburb": ["Daylesford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20738], + "status": [true], + "title": ["Daylesford Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["482ad750-8043-4e0b-982e-e1d411535d68"] + }, + "sort": ["Daylesford Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20023:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/deans-marsh-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities to improve standards across the school, including refurbishment of classrooms and buildings. We also undertook\u00a0asbestos removal. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $492,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Deans Marsh Primary School." + ], + "field_latitude": ["-38.39956"], + "field_latitude_longitude_value": ["-38.39956,143.88574"], + "field_latitude_value": ["-38.39956"], + "field_longitude": ["143.88574"], + "field_longitude_value": ["143.88574"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3235"], + "field_project_code": ["01-1642"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["30 Deans Marsh-Lorne Rd"], + "field_suburb": ["Deans Marsh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20023], + "status": [true], + "title": ["Deans Marsh Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ab58fd6b-5333-42d2-ab46-5481fd7fa638"] + }, + "sort": ["Deans Marsh Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21306:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/deanside-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built a two-room interim kindergarten\u00a0at Deanside Primary School. This kindergarten opened in Term 1, 2022, ready for\u00a0the statewide rollout of funded\u00a0kinder for three-year-olds. There are places for\u00a0both three\u00a0and four-year-olds,\u00a0ensuring a smoother transition between kindergarten and school for some families. We delivered this interim\u00a0kindergarten in partnership with the City of Melton. It\u00a0will be in place until the council's permanent kinder\u00a0is built on their site next door. Registrations are open via the Melton City Council website." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, this project shared in the $283 million allocated over 4 years to deliver modular kindergarten facilities and a pipeline of kinders on school sites." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Deanside Kindergarten." + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3336"], + "field_project_code": ["15-5578"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_suburb": ["Deanside"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21306], + "status": [true], + "title": ["Deanside Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bb81fe7f-7d26-4d81-bee7-415f23a8c44f"] + }, + "sort": ["Deanside Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20683:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/deanside-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Deanside. It opened in 2022 and help the growing local population get great education close to home.\u00a0The school is open for enrolments from Prep to Grade 6.\u00a0 Stuart Telford was appointed as the first principal of the school.\u00a0 The school was previously known by its interim name, Grasslands (Deanside) Primary School, during the planning phase.\u00a0We consulted with the community on Deanside Primary School's name\u00a0from 11 June to 25 June 2021.\u00a0The school is named after the suburb it is located in. Facilities \u200b\u200b\u200bThe school has the following facilities:\u200b\u200b an administration building, including library, art, food and science learning spaces a performing arts and physical education building 2 learning neighbourhoods\u00a0 2 outdoor hardcourts a sports field bike shed playgrounds Design consultation In 2018, we consulted with local communities gaining new schools in Melbourne's fastest growing outer suburbs \u2013 including your new primary school. We captured each local area's broad aspirations and used this feedback in our concept designs. During January and February 2020, a second round of engagement invited locals to share their ideas, local knowledge and the things that mattered most about how their school would look, feel and function. The Deanside Primary School\u00a0community was among a number of areas that sought bright, colourful and inviting classrooms well equipped for future learning needs. Modern and innovative classrooms will provide flexible learning environments to suit a range of learning approaches for this developing community. Playgrounds that feature natural landscaping and Australian native plants will be highly valued for Deanside families as they move into this growing urban-fringe area. Our consultation received strong and consistent feedback on many of their design needs and goals. Our architects used your feedback to help shape your school's interior and its landscape design.\u00a0 Kinder We have built a\u00a0two-room interim kindergarten\u00a0at\u00a0the school. This opened in Term 1, 2022, ready for\u00a0the statewide rollout of five\u00a0hours of funded\u00a0kinder for three-year-olds. There will be places for\u00a0both three\u00a0and four-year-olds,\u00a0ensuring a smoother transition between kindergarten and school.\u00a0 We are\u00a0delivering the interim\u00a0kindergarten in partnership with the City of Melton. It\u00a0will be in place until the council's permanent kinder\u00a0is built on their site next door." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for Deanside Primary School.In 2020, the school shared in $438.6 million of funding for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Deanside Primary School." + ], + "field_latitude": ["-37.721575"], + "field_latitude_longitude_value": ["-37.721575,144.697884"], + "field_latitude_value": ["-37.721575"], + "field_longitude": ["144.697884"], + "field_longitude_value": ["144.697884"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/DeansidePS_211207_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3336"], + "field_project_code": ["01-5578"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["38 Conservatory Dr"], + "field_suburb": ["Deanside"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20683], + "status": [true], + "title": ["Deanside Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["72f700a5-c9bb-4c81-8fc9-aac5f9647634"] + }, + "sort": ["Deanside Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20468:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/debney-meadows-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We installed new boundary fencing at the school. This school is part of the Flemington Education Plan. Its vision is to give the local community high-quality, seamless education from birth. This will foster positive health and wellbeing and the capacity to succeed. Learn more about how\u00a0the plan\u00a0is transforming local education for Flemington. Learn how\u00a0education plans\u00a0offer extra support for students to reach their full potential.", + "We are working with the school to plan future upgrades and modernisation. This school is part of the Flemington Education Plan. Its vision is to give the local community high-quality, seamless education from birth. This will foster positive health and wellbeing and the capacity to succeed. Learn more about how\u00a0the plan\u00a0is transforming local education for Flemington. Learn how\u00a0education plans\u00a0offer extra support for students to reach their full potential." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $24,000 was allocated to the school.", + "In the 2020-21 State Budget, the school received $400,000." + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Planning" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Debney Meadows Primary School" + ], + "field_latitude": ["-37.7856", "-37.784477233886719"], + "field_latitude_longitude_value": ["-37.7856,144.93543"], + "field_latitude_value": ["-37.7856"], + "field_longitude": ["144.93543", "144.92910766601562"], + "field_longitude_value": ["144.93543"], + "field_mappintype_name": ["School upgrade", "Planning"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3031"], + "field_project_code": ["01-5068", "D1-01-5068"], + "field_project_title": ["School Pride and Sports Fund", "Planning"], + "field_q_complete": ["Q2 2018", "Subject to future funding"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["100 Victoria Street"], + "field_suburb": ["Flemington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20468], + "status": [true], + "title": ["Debney Meadows Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d7948fbc-ed77-4b34-8cb1-8e80f9bb2e3c"] + }, + "sort": ["Debney Meadows Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22653:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dederang-primary-school-care"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are extending the inside bathroom to accommodate three toilets and handwashing stations. It will also include a laundry area with a washing machine. This will help Dederang Primary School Care meet growing demand for kindergarten for three and four-year-olds. We\u2019ll also refurbish the unused office space so it can be used for maternal health nurse services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $71,600 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dederang Primary School Care" + ], + "field_latitude": ["-36.46928759"], + "field_latitude_longitude_value": ["-36.46928759,147.0155485"], + "field_latitude_value": ["-36.46928759"], + "field_longitude": ["147.0155485"], + "field_longitude_value": ["147.0155485"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3691"], + "field_project_code": ["15-5190"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Planning"], + "field_street_address": ["4364 Kiewa Valley Hwy"], + "field_suburb": ["Dederang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22653], + "status": [true], + "title": ["Dederang Primary School Care"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1b154d24-ac1f-4b66-b46b-f7ea4cf5e1fe"] + }, + "sort": ["Dederang Primary School Care"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25452:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/deep-creek-child-care-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We have made the outdoor playground more inclusive and welcoming for children of all abilities. We built sensory paths and gardens, a small, calming space and a sand pit that is easy to access. We also installed a rocking boat and new play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $142,967 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Deep Creek Child Care Centre" + ], + "field_latitude": ["-37.76054502"], + "field_latitude_longitude_value": ["-37.76054502,145.1676288"], + "field_latitude_value": ["-37.76054502"], + "field_longitude": ["145.1676288"], + "field_longitude_value": ["145.1676288"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3109"], + "field_project_code": ["15-4595"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["510 Blackburn Rd"], + "field_suburb": ["Doncaster East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25452], + "status": [true], + "title": ["Deep Creek Child Care Centre"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["f48c7d67-b3af-4fd3-af0a-177c8ea0a9df"] + }, + "sort": ["Deep Creek Child Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34246:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/deepdene-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping the City of Boroondara plan to expand Deepdene Preschool. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Deepdene Preschool" + ], + "field_latitude": ["-37.810317"], + "field_latitude_longitude_value": ["-37.810317,145.068977"], + "field_latitude_value": ["-37.810317"], + "field_longitude": ["145.068977"], + "field_longitude_value": ["145.068977"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3103"], + "field_project_code": ["15-259"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["7 Terry St"], + "field_suburb": ["Deepdene"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34246], + "status": [true], + "title": ["Deepdene Preschool"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["de9d8e76-9d82-4744-b17e-587fb91ac179"] + }, + "sort": ["Deepdene Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21203:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/deer-park-west-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a new one-room modular kindergarten at the existing Deer Park West Kindergarten site. The expansion\u00a0accommodates local demand and the roll-out of subsidised three-year-old kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $750,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Deer Park West Kindergarten" + ], + "field_latitude": ["-37.770866394042969"], + "field_latitude_longitude_value": [ + "-37.770866394042969,144.76881408691406" + ], + "field_latitude_value": ["-37.770866394042969"], + "field_longitude": ["144.76881408691406"], + "field_longitude_value": ["144.76881408691406"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3023"], + "field_project_code": ["15-1245"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["57A Quinn St"], + "field_suburb": ["Deer Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21203], + "status": [true], + "title": ["Deer Park West Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a59b659e-266c-4060-8648-5614a8a8b766"] + }, + "sort": ["Deer Park West Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20521:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/delacombe-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed\u00a0further upgrades at the school, transforming old and tired facilities. We built\u00a0a new indoor competition-grade gymnasium.", + "\u200bWe upgraded\u00a0this school via a staged approach.\u00a0 \u200b Stage 1 saw the delivery of two new classrooms, and two renovated classrooms.\u200b\u00a0 Stage 2 works included the upgrade of the prep classrooms and the building of new toilets and staff room.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $650,000. In 2020, the school received $5.85 million.", + "In the 2015-16 State Budget, $2 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Delacombe Primary School" + ], + "field_latitude": ["-37.58485", "-37.58485"], + "field_latitude_longitude_value": ["-37.58485,143.81805"], + "field_latitude_value": ["-37.58485"], + "field_longitude": ["143.81805", "143.81805"], + "field_longitude_value": ["143.81805"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3356"], + "field_project_code": ["D1-01-5201", "01-5201"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2021", "Q4 2018"], + "field_start_date": ["Q2 2019", "Q3 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["110-120 Greenhalghs Road"], + "field_suburb": ["Delacombe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20521], + "status": [true], + "title": ["Delacombe Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1afe2bf2-33f7-4479-bd44-a5edde214cf4"] + }, + "sort": ["Delacombe Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/37006:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/demo-vsba-project-infrastructure-content", + "/site-4/demo-vsba-project-infrastructure-content", + "/site-56/demo-vsba-project-infrastructure-content", + "/site-57/demo-vsba-project-infrastructure-content", + "/site-125/demo-vsba-project-infrastructure-content", + "/site-129/demo-vsba-project-infrastructure-content", + "/site-157/demo-vsba-project-infrastructure-content", + "/site-224/demo-vsba-project-infrastructure-content", + "/site-281/demo-vsba-project-infrastructure-content", + "/site-283/demo-vsba-project-infrastructure-content", + "/site-287/demo-vsba-project-infrastructure-content", + "/site-290/demo-vsba-project-infrastructure-content", + "/site-408/demo-vsba-project-infrastructure-content", + "/site-507/demo-vsba-project-infrastructure-content", + "/site-509/demo-vsba-project-infrastructure-content", + "/site-515/demo-vsba-project-infrastructure-content", + "/site-581/demo-vsba-project-infrastructure-content", + "/site-582/demo-vsba-project-infrastructure-content", + "/site-679/demo-vsba-project-infrastructure-content", + "/site-1285/demo-vsba-project-infrastructure-content", + "/site-1287/demo-vsba-project-infrastructure-content", + "/site-1481/demo-vsba-project-infrastructure-content", + "/site-1488/demo-vsba-project-infrastructure-content", + "/site-1522/demo-vsba-project-infrastructure-content", + "/site-1523/demo-vsba-project-infrastructure-content", + "/site-8888/demo-vsba-project-infrastructure-content", + "/site-8891/demo-vsba-project-infrastructure-content", + "/site-8896/demo-vsba-project-infrastructure-content" + ], + "changed": ["2023-12-22T09:05:42+11:00"], + "created": ["2023-12-22T09:05:42+11:00"], + "field_about_project_processed": [ + "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book." + ], + "field_funding_processed": [ + "It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_contact_name": ["Victorian Government"], + "field_landing_page_summary": ["test"], + "field_node_primary_csite": [622], + "field_node_site": [ + 622, 4, 56, 57, 125, 129, 157, 224, 281, 283, 287, 290, 408, 507, + 509, 515, 581, 582, 679, 1285, 1287, 1481, 1488, 1522, 1523, 8888, + 8891, 8896 + ], + "field_project_title": ["Demo project title"], + "field_status_name": ["Design"], + "field_title_value": ["Location"], + "field_topic": [12], + "field_topic_name": ["Equality"], + "field_topic_path": ["/topic/equality"], + "field_topic_uuid": ["bd2d883f-9537-43a5-bf57-697142036ba9"], + "langcode": ["en"], + "nid": [37006], + "status": [true], + "title": ["Demo vsba project infrastructure content"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["57712b74-72ad-4429-b6fc-1a6dab7147db"] + }, + "sort": ["Demo vsba project infrastructure content"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21240:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/derby-street-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped expand the centre in preparation for the roll-out of subsidised kindergarten for three-year-olds. This will allow the kindergarten to offer seven additional places to local families, improve the overall quality of the learning environment and help local children access two years of high-quality funded kindergarten.", + "We are helping expand and improve Derby Street Children\u2019s Centre. They will gain another kindergarten room, new office and accessible toilet. We are also adding other rooms for therapy, staff and planning. This will create up to 18 new kindergarten places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream, the children's centre received $194,814", + "This project received $1.5 million as part of the Building Blocks Partnership between the State Government and Merri-Bek City Council. The Victorian Government has provided $10.7 million to support 11 projects that will create 329 new kindergarten places in the local government area." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Derby Street Children\u2019s Centre." + ], + "field_latitude": ["-37.7258065", "-37.7258065"], + "field_latitude_longitude_value": ["-37.7258065,144.9470419"], + "field_latitude_value": ["-37.7258065"], + "field_longitude": ["144.9470419", "144.9470419"], + "field_longitude_value": ["144.9470419"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["15-305", "D1-15-305"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Expansion", + "Building Blocks Partnership" + ], + "field_q_complete": ["Q2 2022", "Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["124 Derby St"], + "field_suburb": ["Pascoe Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21240], + "status": [true], + "title": ["Derby Street Children\u2019s Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9c2190aa-ea1a-4dc2-84c3-e5461a8787a7"] + }, + "sort": ["Derby Street Children’s Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20435:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/derinya-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's old classrooms, giving students and staff the modern learning environment they need to achieve their best. We constructed a 2-storey building that provides 12 learning spaces.", + "We built\u00a0a kitchen garden to teach students how to grow and prepare their own food. The kitchen\u00a0has\u00a04 work stations, where students are able to come and learn about healthy eating, food preparation, sharing meals and cultural food education that links to programs such as Japanese language classes. The garden was\u00a0community-built and features a variety of fruit trees and vegetable beds that \u2018feed\u2019 the kitchen and provide\u00a0opportunities for science and environmental education.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $480,000. In 2020, the school received $4.32 million.", + "In 2016\u201317, the school received $112,000 in School Pride and Sports Funding" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Derinya Primary School." + ], + "field_latitude": ["-38.15799", "-38.15799"], + "field_latitude_longitude_value": ["-38.15799,145.12335"], + "field_latitude_value": ["-38.15799"], + "field_longitude": ["145.12335", "145.1233499"], + "field_longitude_value": ["145.12335"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["D1-01-4996", "01-4996"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q1 2022", "Q3 2019"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Overport Rd"], + "field_suburb": ["Frankston South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20435], + "status": [true], + "title": ["Derinya Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9d53eb9b-abb7-48eb-9029-dc5c3c9afca7"] + }, + "sort": ["Derinya Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28663:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/derrimut-early-learning-centre-ymca-derrimut-outside-school-hours-care" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the playground and outdoor areas of the early learning centre. We will create a new outdoor space that is inspired by nature. It will be a fun place for children to discover different challenges and experiences that suit their age and abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $490,010.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Derrimut Early Learning Centre & YMCA Derrimut Outside School Hours Care." + ], + "field_latitude": ["-37.78992857"], + "field_latitude_longitude_value": ["-37.78992857,144.76339"], + "field_latitude_value": ["-37.78992857"], + "field_longitude": ["144.76339"], + "field_longitude_value": ["144.76339"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3026"], + "field_project_code": ["15-4957"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["30 Lennon Pkwy"], + "field_suburb": ["Derrimut"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28663], + "status": [true], + "title": [ + "Derrimut Early Learning Centre & YMCA Derrimut Outside School Hours Care" + ], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["50b8e99f-2e88-4965-a42b-1662e7ae03cf"] + }, + "sort": [ + "Derrimut Early Learning Centre & YMCA Derrimut Outside School Hours Care" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20591:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/derrinallum-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at the school. We provided a new VCE classroom and lounge, refurbished student amenities and primary school admin corridor, replaced high level windows and replaced the school\u2019s north entry verandah." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $900,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Derrinallum P-12 College." + ], + "field_latitude": ["-37.939507"], + "field_latitude_longitude_value": ["-37.939507,143.216690"], + "field_latitude_value": ["-37.939507"], + "field_longitude": ["143.216690"], + "field_longitude_value": ["143.216690"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3325"], + "field_project_code": ["01-5375"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Campbell St"], + "field_suburb": ["Derrinallum"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20591], + "status": [true], + "title": ["Derrinallum P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["16c96461-a970-440f-b396-5089b25a497f"] + }, + "sort": ["Derrinallum P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27773:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/devon-meadows-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Devon Meadows Primary School" + ], + "field_latitude": ["-38.162026"], + "field_latitude_longitude_value": ["-38.162026,145.301384"], + "field_latitude_value": ["-38.162026"], + "field_longitude": ["145.301384"], + "field_longitude_value": ["145.301384"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Devon Meadows Primary School." + ], + "field_postcode": ["3977"], + "field_project_code": ["01-3924"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["50 Worthing Rd"], + "field_suburb": ["Devon Meadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27773], + "status": [true], + "title": ["Devon Meadows Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["060fb9df-657a-4218-982b-c0f2d8779c50"] + }, + "sort": ["Devon Meadows Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33829:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/devon-meadows-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Devon Meadows Primary School.\u00a0This will provide additional kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Devon Meadows Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-38.162026"], + "field_latitude_longitude_value": ["-38.162026,145.301384"], + "field_latitude_value": ["-38.162026"], + "field_longitude": ["145.301384"], + "field_longitude_value": ["145.301384"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3977"], + "field_project_code": ["15-DMPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["50 Worthing Road"], + "field_suburb": ["Devon Meadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33829], + "status": [true], + "title": ["Devon Meadows Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["731959dc-586c-4c1d-a683-977c312905e1"] + }, + "sort": ["Devon Meadows Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24965:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Dharra-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new specialist school in Aintree. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to \u00a0home.\u00a0It will be able to enrol up to 148 students.Yarrabing Secondary College will be located next to the school.Subscribe to our mailing list for updates.Enrolments are openThe school will provide educational programs for students with mild to profound intellectual disability.\u00a0Read our frequently asked questions about enrolment below.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Dharra School" + ], + "field_latitude": ["-37.710629"], + "field_latitude_longitude_value": ["-37.710629,144.66532"], + "field_latitude_value": ["-37.710629"], + "field_longitude": ["144.66532"], + "field_longitude_value": ["144.66532"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/AintreeSpS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "What is a specialist school?\u00a0 A specialist school is an education setting that accommodates and provides specialised education programs for students with specific disability and high needs.\u00a0 Who can enrol at this school? Dharra School has specific enrolment criteria, and students must meet these criteria to enrol at the school.\u00a0 The school will cater for students from 5 to 18 years old with mild to profound intellectual disability. Further details about the school\u2019s enrolment policy can be obtained by contacting the school. Learn more about the support available for students with intellectual disability What do parents need to do before enrolling their child at this school? Before enrolling, your child will need to have completed a full assessment. You must provide the results of this assessment to support your child\u2019s enrolment. In most cases, students are initially assessed at kindergarten or in their early school years.\u00a0 Learn more about getting your child assessed for intellectual disability Can a child with another disability, including physical disability, enrol at this school? Students with a disability, including a physical disability, have the right to attend their local government mainstream school. To enrol at Dharra School, your child must have a diagnosed intellectual disability in line with the enrolment criteria. Students with intellectual disability may have co-occurring health conditions or other disabilities. The school has been designed to cater for students with a range of needs. How do I enrol? If your child has been formally assessed and diagnosed with intellectual disability in line with the enrolment criteria, they are eligible to enrol at Dharra School.\u00a0 If your child meets the above criteria, please email your enrolment query to dharra.s@education.vic.gov.au . Does Dharra School have a zone? Specialist schools do not have school zones. Dharra School will consider enrolment applications from all eligible students regardless of where they live. However, applications from eligible students may be prioritised in order of closeness to the school if the school has insufficient accommodation to accept all eligible applicants. How can I get my child to this school? Whilst parents are responsible for transporting their children to and from school, the department provides additional travel assistance through the following programs: \u00a0 Conveyance Allowance Program Students with Disabilities Transport Program discounted Myki ticket products and fares. Learn more about getting to and from school for students with disability What are the benefits of the Conveyance Allowance Program? The conveyance allowance supports transport costs, including public transport costs. It does not cover full costs; however, it can assist families, parents and carers by contributing funds towards the costs. The school will be able to provide more information on the different supports offered through the conveyance allowance. What is a designated transport area for school transport? \u00a0 If you live in the designated transport area for Dharra School, your child may be eligible for transport assistance through the Students with Disabilities Transport Program.\u00a0 Check whether you live within the school\u2019s designated transport area Will Dharra School have a school bus? From 2024, there will be school buses to service eligible students that live within the school\u2019s designated transport area. Bus route designs are underway. The school will share proposed bus routes with families later this year.\u00a0 What other travel options are available for families? Where possible, the department encourages students to use active travel (walk, ride) to attend school. Students may be eligible for discounted travel through a child Myki card or a Victorian Student Pass where public transport may better suit your family.\u00a0 Learn more about travelling to school Where can I find more information? You can learn more about available supports and services in government schools for families of children living with disability and additional needs. To discuss your child\u2019s eligibility to attend Dharra School please contact your regional office who can provide more information surrounding the school\u2019s enrolment criteria on 1300 333 232 or email swvr@education.vic.gov.au Download this information as a Word document \u00a0", + "Dharra School\u00a0was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Dharra\u00a0(pronounced darr-rah ) is a\u00a0Woi-wurrung word of the Wurundjeri people\u00a0meaning white hawk. We\u00a0used\u00a0Aintree Specialist School\u00a0as\u00a0an interim name while the school was being planned and designed.", + "Lizzie Tout has been appointed as principal of Dharra School. Lizzie has spent the majority of her career teaching in Melbourne's western suburbs. She was most recently principal at Hamilton North Primary School. Before that she spent 12 years at Point Cook P\u20139 College. Lizzie has always had a passion for getting the best out of the people she works with, whether that is students, colleagues or community members", + "When the school opens in Term 1, 2024, it will include: an administration and library building 2 learning neighbourhoods (junior & senior) a community hub a hardcourt a carpark. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the\u00a0Wurundjeri Woi-wurrung Cultural Heritage Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Enrolment frequently asked questions (FAQs)", + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_postcode": ["3335"], + "field_project_code": ["01-6365"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["42 Recreation Rd"], + "field_suburb": ["Aintree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24965], + "status": [true], + "title": ["Dharra School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8cd64166-2541-41dd-b4dd-d9511c02ba9e"] + }, + "sort": ["Dharra School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20452:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/diamond-creek-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an administration building featuring staff work areas, consulting rooms and reception, as well as art and science spaces.\u00a0We demolished the existing outdated administration to make way for new outdoor learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $360,000. In 2020, the school received $3.24 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Diamond Creek East Primary School" + ], + "field_latitude": ["-37.67358"], + "field_latitude_longitude_value": ["-37.67358,145.16559"], + "field_latitude_value": ["-37.67358"], + "field_longitude": ["145.16559"], + "field_longitude_value": ["145.16559"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3089"], + "field_project_code": ["01-5037"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["129-163 Main Hurstbridge Road"], + "field_suburb": ["Diamond Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20452], + "status": [true], + "title": ["Diamond Creek East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1f455bb3-daf4-4628-a7da-5f8df723c1d5"] + }, + "sort": ["Diamond Creek East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20900:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/diamond-valley-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a Science, Technology, Engineering and Maths (STEM) centre to complete\u00a0the\u00a0second stage of\u00a0Diamond Valley College's master plan.\u00a0", + "We upgraded the facilities at the school.\u00a0\u200bWe delivered an auditorium/lecture theatre, and music spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $1.8 million in the 2018\u201319 State Budget. In the 2019-20 State Budget, the school received an additional $3.1 million.", + "The 2016\u201317 State Budget allocated $2 million to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Diamond Valley College." + ], + "field_latitude": ["-37.672218"], + "field_latitude_longitude_value": ["-37.672218,145.168015"], + "field_latitude_value": ["-37.672218"], + "field_longitude": ["145.168015"], + "field_longitude_value": ["145.168015"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3089"], + "field_project_code": ["D1-01-8746", "01-8746"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q2 2021", "Q3 2018"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["165-179 Main Hurstbridge Rd"], + "field_suburb": ["Diamond Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20900], + "status": [true], + "title": ["Diamond Valley College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0a2227a1-2c20-4a9f-b9e3-ca579570be2f"] + }, + "sort": ["Diamond Valley College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20501:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/diamond-valley-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. As part of this upgrade, we will remove 3 relocatable classrooms. We're replacing them with\u00a0a new permanent building, which will have 10 general-purpose classrooms, a new library and specialist learning areas.", + "We built\u00a0a wheelchair accessible inclusive playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $10 million.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Diamond Valley Special Developmental School" + ], + "field_latitude": ["-37.688671112060547", "-37.68671"], + "field_latitude_longitude_value": [ + "-37.688671112060547,145.08670043945312" + ], + "field_latitude_value": ["-37.688671112060547"], + "field_longitude": ["145.08670043945312", "145.1122"], + "field_longitude_value": ["145.08670043945312"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["D1-01-5161", "01-5161"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2024", "Q3 2021"], + "field_start_date": ["Q4 2020", "Q4 2019"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["14-24 Brentwick Dr"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20501], + "status": [true], + "title": ["Diamond Valley Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c0128628-de4c-46b7-98d5-256f0e803aa2"] + }, + "sort": ["Diamond Valley Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21904:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dianella-community-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-12-09T09:09:23+11:00"], + "field_about_project_processed": [ + "In partnership with Wyndham City Council, we built Dianella\u00a0Community Centre. During construction, the centre was called Riverdale Community Centre (interim name). We helped build:\u00a0 3 kindergarten rooms for three and four-year-olds maternal and child health consulting rooms community rooms for supported playground and community services outdoor activity spaces including a kindergarten playground and community facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was allocated $2 million through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dianella Community Centre." + ], + "field_latitude": ["-37.85987820333053"], + "field_latitude_longitude_value": [ + "-37.85987820333053,144.65603232679845" + ], + "field_latitude_value": ["-37.85987820333053"], + "field_longitude": ["144.65603232679845"], + "field_longitude_value": ["144.65603232679845"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-DCC"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["462 Hogans Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21904], + "status": [true], + "title": ["Dianella Community Centre"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a1af3551-6cdc-4405-9940-607bad49251e"] + }, + "sort": ["Dianella Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24238:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/diggers-rest-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T13:24:28+11:00"], + "field_about_project_processed": [ + "We are creating flexible and functional outdoor learning environments. These improvements will make the outdoor areas more engaging for 3 and 4-year-olds and better able to support all their needs and abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $81,605 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Diggers Rest Early Learning Centre" + ], + "field_latitude": ["-37.62325074"], + "field_latitude_longitude_value": ["-37.62325074,144.7060231"], + "field_latitude_value": ["-37.62325074"], + "field_longitude": ["144.7060231"], + "field_longitude_value": ["144.7060231"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3427"], + "field_project_code": ["15-5778"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["10 Farm Rd"], + "field_suburb": ["Diggers Rest"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24238], + "status": [true], + "title": ["Diggers Rest Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e00094e0-20a3-441f-9828-e0902b262717"] + }, + "sort": ["Diggers Rest Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21335:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/diggers-rest-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Diggers Rest Kindergarten\u00a0extended\u00a0their existing facilities to meet the needs of their community. The extension has created additional kindergarten places and increased\u00a0access to range of services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Diggers Rest Preschool" + ], + "field_latitude": ["-37.61711"], + "field_latitude_longitude_value": ["-37.61711,144.7108"], + "field_latitude_value": ["-37.61711"], + "field_longitude": ["144.7108"], + "field_longitude_value": ["144.7108"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3427"], + "field_project_code": ["15-843"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Plumpton Road"], + "field_suburb": ["Diggers Rest"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21335], + "status": [true], + "title": ["Diggers Rest Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["84ef07fc-8a0c-42a3-8a82-465a6c7448f7"] + }, + "sort": ["Diggers Rest Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20105:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/diggers-rest-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build a new school community hub and learning centre.", + "We refurbished the senior student toilet block. This has improved amenities, cleanliness and hygiene.\u00a0", + "We continued to upgrade and modernise the school. These works included the administration block.\u00a0", + "We created engaging nature-based learning stations in the outside spaces of classrooms.\u00a0These facilities include a sensory garden, a rock seating auditorium, a games zone, and log seating. Each space accommodates the sensory and withdrawal needs of students.\u00a0", + "We updated and refurbished classrooms and facilities in poor condition to improve standards across the school, ensuring the school has the learning facilities it requires to deliver modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $13.443 million.", + "In the 2022\u201323 State Budget the project received $237,669 from the Minor Capital Works Fund.", + "In the 2020\u201321 State Budget, the school received $3.204 million.", + "In Round 2 of the Inclusive Schools Fund, $181,500 was allocated to the school.", + "In the 2017\u201318 State Budget, $151,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Diggers Rest Primary School" + ], + "field_latitude": [ + "-37.622632", + "-37.622632", + "-37.627967834472656", + "-37.64389", + "-37.64389" + ], + "field_latitude_longitude_value": ["-37.622632,144.709232"], + "field_latitude_value": ["-37.622632"], + "field_longitude": [ + "144.709232", + "144.709232", + "144.71554565429687", + "144.7053699", + "144.7053699" + ], + "field_longitude_value": ["144.709232"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3427"], + "field_project_code": [ + "D3-01-2479", + "D4-01-2479", + "D2-01-2479", + "D1-01-2479", + "01-2479" + ], + "field_project_title": [ + "Upgrade and Modernisation \u2013 Community Hub", + "Minor Capital Works Fund", + "Upgrade and Modernisation - Next Stage", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": [ + "Q2 2025", + "Q3 2023", + "Q3 2023", + "Q1 2018", + "Q2 2018" + ], + "field_start_date": ["Q2 2022", "Q2 2022", "Q4 2020"], + "field_status_name": [ + "Design", + "Complete", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["Plumpton Rd"], + "field_suburb": ["Diggers Rest"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20105], + "status": [true], + "title": ["Diggers Rest Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1e25bcc0-7029-4cdd-adf6-ad07b1b71e38"] + }, + "sort": ["Diggers Rest Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21275:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dimboola-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Hindmarsh Shire Council, we have upgraded the centre. The upgrade includes: increasing kindergarten capacity for three and four-year-olds new kitchenette a new long day care room renovated\u00a0storage and toilet facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was allocated $43,840 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dimboola Early Learning Centre" + ], + "field_latitude": ["-36.45468"], + "field_latitude_longitude_value": ["-36.45468,142.03147"], + "field_latitude_value": ["-36.45468"], + "field_longitude": ["142.03147"], + "field_longitude_value": ["142.03147"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3414"], + "field_project_code": ["15-439"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Hindmarsh St"], + "field_suburb": ["Dimboola"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21275], + "status": [true], + "title": ["Dimboola Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dbc8c128-e0ae-4a1b-a41c-740040dfca71"] + }, + "sort": ["Dimboola Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20785:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dimboola-memorial-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded and modernised\u00a0facilities, including refurbishing\u00a0classrooms and facilities that were in poor condition. These works\u00a0targeted facilities that needed it most, ensuring that students learn in facilities that are ready for the delivery of modern education.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $600,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Dimboola Memorial Secondary College." + ], + "field_latitude": ["-36.449860"], + "field_latitude_longitude_value": ["-36.449860,142.033539"], + "field_latitude_value": ["-36.449860"], + "field_longitude": ["142.033539"], + "field_longitude_value": ["142.033539"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3414"], + "field_project_code": ["01-7770"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["66 Ellerman St"], + "field_suburb": ["Dimboola"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20785], + "status": [true], + "title": ["Dimboola Memorial Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9e46ce4f-a883-4696-bea3-5400867fddd3"] + }, + "sort": ["Dimboola Memorial Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19984:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dimboola-primary-school"], + "changed": ["2023-09-22T15:18:32+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0refurbished\u00a0classrooms at the school. The works targeted\u00a0facilities that needed it most, ensuring the school has the learning facilities it needs to deliver modern education. This included refurbishing the 'Senior School' learning block, alongside 2 other learning areas. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $472,000 was allocated to the school. An additional $754,010 was allocated for planned maintenance." + ], + "field_funding_type_name": [ + "Planned Maintenance Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dimboola Primary School." + ], + "field_latitude": ["-36.451759"], + "field_latitude_longitude_value": ["-36.451759,142.029785"], + "field_latitude_value": ["-36.451759"], + "field_longitude": ["142.029785"], + "field_longitude_value": ["142.029785"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Dimboola Primary School." + ], + "field_postcode": ["3414"], + "field_project_code": ["01-1372"], + "field_project_title": [ + "Upgrade and Modernisation, Planned Maintenance Program" + ], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Hindmarsh St"], + "field_suburb": ["Dimboola"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19984], + "status": [true], + "title": ["Dimboola Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2f3cfb37-f26d-43cc-a8c1-6069e874d171"] + }, + "sort": ["Dimboola Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35014:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/dimboola-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-11-14T17:31:36+11:00"], + "created": ["2023-09-18T12:15:22+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Dimboola Primary School. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2025.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Dimboola Primary School Kindergarten (interim name)" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3414"], + "field_project_code": ["15-DPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_suburb": ["Dimboola"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35014], + "status": [true], + "title": ["Dimboola Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a87781f8-fbcd-4e06-9530-b2199976defd"] + }, + "sort": ["Dimboola Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20279:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dingley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0built\u00a0a new accessible playground with dedicated areas for\u00a0prep and junior students, in addition to\u00a0a quiet area with shaded seating and a sensory zone.", + "We are building an outdoor inclusive learning space, including shade sails, seating and a sand pit." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In Round 6 of the Inclusive Schools Fund, this project received $197,000." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dingley Primary School" + ], + "field_latitude": ["-37.982602", "-37.9828495"], + "field_latitude_longitude_value": ["-37.982602,145.132498"], + "field_latitude_value": ["-37.982602"], + "field_longitude": ["145.132498", "145.1316985"], + "field_longitude_value": ["145.132498"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3172"], + "field_project_code": ["01-4257", "D1-01-4257"], + "field_project_title": [ + "Inclusive Schools Fund", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q4 2019", "Q3 2022"], + "field_start_date": ["Q4 2018", "Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["111-115 Centre Dandenong Rd"], + "field_suburb": ["Dingley Village"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20279], + "status": [true], + "title": ["Dingley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b985d196-7564-4980-a3de-a48b6aa2eae2"] + }, + "sort": ["Dingley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26029:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dingley-village-community-hub"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-29T13:54:59+10:00"], + "field_about_project_processed": [ + "We are building an early learning centre next to Kingston City Council Library. It will include 2 kindergarten rooms and one occasional care room, allowing the centre to offer 66 kindergarten places for local 3 and 4-year-olds. The centre will also include maternal and child health consulting rooms, the Dingley Neighbourhood Centre, collaborative planning spaces and meeting rooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2022-23 Building Blocks Capacity Building Grants, $2,000,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dingley Village Community Hub" + ], + "field_latitude": ["-37.98181563"], + "field_latitude_longitude_value": ["-37.98181563,145.1351291"], + "field_latitude_value": ["-37.98181563"], + "field_longitude": ["145.1351291"], + "field_longitude_value": ["145.1351291"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3172"], + "field_project_code": ["15-DVCH"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["31B Marcus Rd"], + "field_suburb": ["Dingley Village"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26029], + "status": [true], + "title": ["Dingley Village Community Hub"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["c3300ef3-50e9-43e4-bc38-40da2312d7fa"] + }, + "sort": ["Dingley Village Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20622:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dinjerra-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We\u00a0upgraded\u00a0Dinjerra Primary School by: demolishing\u00a0the old light timber construction building and sheds refurbishing\u00a0the library constructing\u00a0new administration and classroom buildings. These works have\u00a0ensured that students are learning in facilities that are designed for\u00a0delivering\u00a0modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2016\u201317 State Budget, the school shared in $12 million planning funding. An additional $133,000 was allocated to the school for maintenance. The 2018\u201319 State Budget allocated $7.4 million in funding." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dinjerra Primary School" + ], + "field_latitude": ["-37.791693", "-37.791061"], + "field_latitude_longitude_value": ["-37.791693,144.856117"], + "field_latitude_value": ["-37.791693"], + "field_longitude": ["144.856117", "144.854172"], + "field_longitude_value": ["144.856117"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Dinjerra Primary School \u2013 construction progress" + ], + "field_postcode": ["3019"], + "field_project_code": ["d1-5450", "01-5450"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q1 2020"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["44 South Rd"], + "field_suburb": ["Braybrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20622], + "status": [true], + "title": ["Dinjerra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b042946d-d983-450b-abd9-16cff0d14a0d"] + }, + "sort": ["Dinjerra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20679:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/docklands-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Docklands. It opened in 2021 and helps the growing local population get great education close to home.Adam Bright was appointed as the first principal. Enrolments are now open for Prep to Year 6.The 3-storey school includes a library, music and arts rooms, administration areas, outdoor learning terraces and a competition-grade indoor sports court for netball and basketball.Further information on the school, including enrolment, can be found on its official Facebook page. \u200bNew campusWe built a temporary second campus for the school, which opened in Term 3 2023. The interim campus provides the school with an additional 225 places needed due to the area\u2019s rapid growth. Located 200 metres from the school's existing site, it gives more local students access to new and modern classrooms.In suburban and regional schools, we can use relocatable buildings to cater for fluctuations in demand. Docklands Primary School\u2019s does not have the space on its current site to support these.We are also building a primary school in Fishermans Bend that's planned to open from 2026.Co-Located KinderWe built a kindergarten at Docklands Primary School.It is on the second level of the school building and includes 2 kindergarten rooms, administration areas and an outdoor learning terrace.Having the kindergarten and school together will help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.School nameDocklands Primary School was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including public interest, relevance to the local area, and the consideration of local Indigenous languages.The school is after the suburb it is located in. This is the first new primary school to be built in Docklands.We consulted with local communities for three weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input.Community engagementEarly in 2017, we asked the local community about their aspirations and ideas for a primary school in Docklands. Community feedback received during the community engagement stage was collected and given to the architects to incorporate into the school building design.We heard:Participants sought a sustainable school building. They would like to see strong natural elements incorporated, including trees and vegetation, and open space for students to run around and play.Participants felt the new school provides an opportunity to create and enhance a sense of community belonging and identity in Docklands. This could be achieved through community spaces at the school, and connecting students to local community facilities.Participants supported an inclusive curriculum that offers a wide range of practical and specialist skills, including a focus on Science, Technology, Engineering and Maths (STEM).Safe and easy access to the school for pedestrians, cyclists, public transport users and vehicles is important.Celebrating multiculturalism and social diversity is important.You can contact us for a copy of this engagement report." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $1 million was allocated to this project for planning.In the 2018\u201319 State Budget, $18.8 million was allocated to the school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Docklands Primary School." + ], + "field_latitude": ["-37.812596"], + "field_latitude_longitude_value": ["-37.812596,144.94124"], + "field_latitude_value": ["-37.812596"], + "field_longitude": ["144.94124"], + "field_longitude_value": ["144.94124"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/DocklandsPS_FeatureTile.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3008"], + "field_project_code": ["01-5573"], + "field_project_title": ["New school"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["17 Little Docklands Dr"], + "field_suburb": ["Docklands"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20679], + "status": [true], + "title": ["Docklands Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a199b4f3-cbb8-462a-a40d-561aeb3bf9c2"] + }, + "sort": ["Docklands Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21477:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/docklands-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a kindergarten at Docklands Primary School.\u00a0 The kindergarten opened in Term 1, 2021 and is run by Gowrie Victoria. Having the kindergarten and school together may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 Budget this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Docklands Primary School Kindergarten" + ], + "field_latitude": ["-37.81244"], + "field_latitude_longitude_value": ["-37.81244,144.94178"], + "field_latitude_value": ["-37.81244"], + "field_longitude": ["144.94178"], + "field_longitude_value": ["144.94178"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3008"], + "field_project_code": ["K-01-5573"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["259 Footscray Road"], + "field_suburb": ["Docklands"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21477], + "status": [true], + "title": ["Docklands Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["34957e66-0663-4b23-a455-d2ca110353d3"] + }, + "sort": ["Docklands Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20863:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dohertys-creek-p-9-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have finished the first stage of Dohertys Creek P-9 College in \u200bTruganina, and it opened for its\u00a0first students\u00a0on day 1,\u00a0term 1, 2019.\u00a0\u200b\u200bStage 1 facilities\u00a0include a library, learning community, gym and performing arts centre. We used\u00a0the additional funding received from the\u00a02018-19 Budget to\u00a0build\u00a0a performing arts and physical education facility.\u200b\u200b Mainview Boulevard Family Learning Centre\u00a0will be located next to Doherty\u2019s Creek P-9 College, helping local\u00a0children make\u00a0a smooth transition from pre-school and reducing the number of drop-offs for some parents with kinder and school-aged children.\u00a0 This school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards. Dohertys Creek P-9 College has an official Facebook page. \u200bFollow the page and stay updated on all the latest news.\u00a0 \u00a0 \u200b \u200b", + "After opening its doors for Prep-Year 6 students in 2019, the 2020 funding allowed us to build the extra facilities needed for secondary education. We built two learning communities and multi-courts. We also refitted the specialist learning building to accommodate teaching\u00a0Year 7\u20139 subjects. These facilities\u00a0will be ready for Year\u00a07\u00a0students in 2022, Years 7 and 8 in 2023 and Years 7, 8 and 9 in 2024.", + "We built\u00a0a Children's Discovery Garden at Dohertys Creek P-9 College. It includes an accessible community kitchen garden, sensory musical section and creative play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017\u201318 State Budget allocated $13.806 million towards the school. The school received an additional $4.7 million in the 2018\u201319 State Budget.", + "In 2020, the second stage of this school project shared in $438.6 million of funding for new schools.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "New School", + "New School", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the build of Dohertys Creek P-9 College" + ], + "field_latitude": ["-37.842672", "-37.84331"], + "field_latitude_longitude_value": ["-37.842672,144.735365"], + "field_latitude_value": ["-37.842672"], + "field_longitude": ["144.735365", "144.73345"], + "field_longitude_value": ["144.735365"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-8397", "D1-01-8397", "D2-01-8397"], + "field_project_title": [ + "New School", + "New School - Stage 2", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2019", "Q4 2021", "Q1 2021"], + "field_start_date": ["Q2 2017", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Cnr Elmhurst Rd and Mainview Blvd"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20863], + "status": [true], + "title": ["Dohertys Creek P-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b3517c6e-a30e-4bbf-a153-aebbe12954ef"] + }, + "sort": ["Dohertys Creek P-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20242:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/don-valley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded and modernised facilities at the school,\u00a0refurbishing\u00a0classrooms and facilities that were in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $170,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Don Valley Primary School." + ], + "field_latitude": ["-37.759987"], + "field_latitude_longitude_value": ["-37.759987,145.584961"], + "field_latitude_value": ["-37.759987"], + "field_longitude": ["145.584961"], + "field_longitude_value": ["145.584961"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3139"], + "field_project_code": ["01-3956"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Old Dalry Rd"], + "field_suburb": ["Don Valley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20242], + "status": [true], + "title": ["Don Valley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c82f4715-5d3e-4d50-b3d7-6e835b13cb03"] + }, + "sort": ["Don Valley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20786:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/donald-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have\u00a0modernised\u00a0Donald High School by\u00a0fully refurbishing\u00a0the main classroom wing and\u00a0creating an internal link to the video conferencing block.\u00a0 We also upgraded fire services.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $3.51 million has been allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Donald High School" + ], + "field_latitude": ["-36.371342"], + "field_latitude_longitude_value": ["-36.371342,142.974472"], + "field_latitude_value": ["-36.371342"], + "field_longitude": ["142.974472"], + "field_longitude_value": ["142.974472"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3480"], + "field_project_code": ["01-7775"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2-16 Camp Street"], + "field_suburb": ["Donald"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20786], + "status": [true], + "title": ["Donald High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["59f933e8-1cd8-45cf-9dc2-a90267b46b1b"] + }, + "sort": ["Donald High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20445:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/donburn-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the east wing of Block A. This included Prep classroom reconfiguration, raising the corridor ceiling, upgrading the main entry ramp to improve accessibility, and refurbishing the student toilets.", + "We helped the school to upgrade the current staff area and facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.3 million has been allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $155,125." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Donburn Primary School." + ], + "field_latitude": ["-37.78749", "-37.787494"], + "field_latitude_longitude_value": ["-37.78749,145.16298"], + "field_latitude_value": ["-37.78749"], + "field_longitude": ["145.16298", "145.162976"], + "field_longitude_value": ["145.16298"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3109"], + "field_project_code": ["01-5019", "D1-01-5019"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2018", "Q4 2021"], + "field_start_date": ["Q2 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Colchester Dr"], + "field_suburb": ["Doncaster East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20445], + "status": [true], + "title": ["Donburn Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b6f06a2f-e287-45fd-ac4f-a2087d59822e"] + }, + "sort": ["Donburn Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25369:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/doncaster-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We repainted and refurbished several toilet blocks at the school. This work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $133,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Doncaster Secondary College" + ], + "field_latitude": ["-37.784581"], + "field_latitude_longitude_value": ["-37.784581,145.138053"], + "field_latitude_value": ["-37.784581"], + "field_longitude": ["145.138053"], + "field_longitude_value": ["145.138053"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3108"], + "field_project_code": ["01-7776"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["123 Church Road"], + "field_suburb": ["Doncaster"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25369], + "status": [true], + "title": ["Doncaster Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["db7c00a7-a550-48a2-a66f-54ffa178da10"] + }, + "sort": ["Doncaster Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20682:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/donnybrook-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in the City of Whittlesea. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6.David Williams was appointed as the first principal of the school.The school was previously known by its interim name, Hayes Hill Primary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 to 8 July 2022. The school is named after the suburb it is located in.FacilitiesThe school has the following facilities:an administration building with a library, staff offices and amenities as well as specialist teaching areas for science and food technology2 learning neighbourhood buildings with general purpose classrooms, and flexible and collaborative teaching spacesa community hub building with a competition-grade gymnasium, canteen, music and drama space2 outdoor hardcourtsa sports field.KindergartenWe're building\u00a0Murnong Kindergarten\u00a0at the school. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Donnybrook Primary School." + ], + "field_latitude": ["-37.537062"], + "field_latitude_longitude_value": ["-37.537062,144.997787"], + "field_latitude_value": ["-37.537062"], + "field_longitude": ["144.997787"], + "field_longitude_value": ["144.997787"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/DonnybrookPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-5577"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["145 Olivine Blvd"], + "field_suburb": ["Donnybrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20682], + "status": [true], + "title": ["Donnybrook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["770aea38-d270-459b-b68a-31fe380c96d7"] + }, + "sort": ["Donnybrook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21146:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/donvale-christian-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported the school\u00a0to build a Year 9 campus, refurbish all existing buildings, improve the carpark and modernise their services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Donvale Christian College." + ], + "field_latitude": ["-37.77398"], + "field_latitude_longitude_value": ["-37.77398,145.19446"], + "field_latitude_value": ["-37.77398"], + "field_longitude": ["145.19446"], + "field_longitude_value": ["145.19446"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3111"], + "field_project_code": ["03-1724"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["155 Tindals Rd"], + "field_suburb": ["Donvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21146], + "status": [true], + "title": ["Donvale Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ed3e21c8-b4df-4027-9ab8-6065c1ed49d7"] + }, + "sort": ["Donvale Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25453:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/donvale-preschool-association"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment. The space is now more inclusive for children of all abilities. The landscaping better reflects the surrounding natural area.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $194,388 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Donvale Preschool Association" + ], + "field_latitude": ["-37.80020375"], + "field_latitude_longitude_value": ["-37.80020375,145.1811428"], + "field_latitude_value": ["-37.80020375"], + "field_longitude": ["145.1811428"], + "field_longitude_value": ["145.1811428"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3111"], + "field_project_code": ["15-453"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Florence Ave"], + "field_suburb": ["Donvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25453], + "status": [true], + "title": ["Donvale Preschool Association"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["e6c23173-d0b3-4819-a3b6-1f090013855b"] + }, + "sort": ["Donvale Preschool Association"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20007:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dookie-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the playground with soft-fall surfaces and new play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $75,972." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Dookie Primary School." + ], + "field_latitude": ["-36.328690208992"], + "field_latitude_longitude_value": [ + "-36.328690208992,145.68335010366164" + ], + "field_latitude_value": ["-36.328690208992"], + "field_longitude": ["145.68335010366164"], + "field_longitude_value": ["145.68335010366164"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3646"], + "field_project_code": ["01-1527"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Baldock St"], + "field_suburb": ["Dookie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20007], + "status": [true], + "title": ["Dookie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["20a471ac-474d-4333-91b8-809a34f9ed49"] + }, + "sort": ["Dookie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20980:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/doreen-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build a new classroom and administration building.", + "We built an outdoor inclusive learning space, incorporating an all access amphitheatre within a landscaped environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $5.387 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Doreen Primary School" + ], + "field_latitude": ["-37.60601", "-37.606635"], + "field_latitude_longitude_value": ["-37.60601,145.145539"], + "field_latitude_value": ["-37.60601"], + "field_longitude": ["145.145539", "145.1468421"], + "field_longitude_value": ["145.145539"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["D1-01-945", "01-945"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q2 2025", "Q1 2023"], + "field_start_date": ["Q2 2022", "Q2 2021"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["75 Doctors Gully Road"], + "field_suburb": ["Doreen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20980], + "status": [true], + "title": ["Doreen Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6a0ec874-ed79-40c6-aafe-431a87ce2b35"] + }, + "sort": ["Doreen Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33252:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/doris-blackburn-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-06-07T16:07:09+10:00"], + "field_about_project_processed": [ + "We expanded and improved this kindergarten with a new modular building and an outdoor learning space. These upgrades will give children new learning spaces and created an extra 33 approved kindergarten places." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the State Government and Merri-Bek City Council. The Victorian Government has provided $10.7 million in funding to support 11 projects that will deliver 329 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Doris Blackburn Preschool" + ], + "field_latitude": ["-37.7492"], + "field_latitude_longitude_value": ["-37.7492,144.94311"], + "field_latitude_value": ["-37.7492"], + "field_longitude": ["144.94311"], + "field_longitude_value": ["144.94311"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["15-DBP"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["20 Woodlands Avenue"], + "field_suburb": ["Pascoe Vale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33252], + "status": [true], + "title": ["Doris Blackburn Preschool"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["950527bc-a53c-4298-a40c-00ce0e55f6b6"] + }, + "sort": ["Doris Blackburn Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26213:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dorrington-early-years-hub"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping the City of Monash plan an integrated community centre with 2 kindergarten rooms, maternal and child health facilities, immunisation and consulting rooms and a community playgroup space. The centre will be located at the former site of the Waverly Gymnastics Centre. The planning gets the project ready for construction, which depends on future funding.", + "We are building a 2-room kindergarten in Mount Waverley that will provide up to 92 new kindergarten places for the local community. The hub will include a maternal and child health space and immunisation and consulting rooms. There is also a community playgroup space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project.", + "This project is part of the Building Blocks Partnership between the Victorian Government and the City of Monash. The Victorian Government has invested $13.3 million to support 6 projects. These will create up to 363 new kindergarten places in the local government area." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about the Dorrington Early Years Hub" + ], + "field_latitude": ["-37.87719343", "-37.87719343"], + "field_latitude_longitude_value": ["-37.87719343,145.1395127"], + "field_latitude_value": ["-37.87719343"], + "field_longitude": ["145.1395127", "145.1395127"], + "field_longitude_value": ["145.1395127"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["15-DEYH", "D1-15-DEYH"], + "field_project_title": [ + "Building Blocks Planning Grant", + "Building Blocks Capacity Grant" + ], + "field_q_complete": ["Q4 2023", "Q1 2025"], + "field_start_date": ["Q2 2022", "Q1 2023"], + "field_status_name": ["Planning", "Design"], + "field_street_address": ["7 Dorrington Drive"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26213], + "status": [true], + "title": ["Dorrington Early Years Hub"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["1a0e8a91-3307-4c84-a6de-b127800468fa"] + }, + "sort": ["Dorrington Early Years Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36993:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dromana-preschool-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-20T11:54:48+11:00"], + "field_about_project_processed": [ + "We are building an extra modular kindergarten room at the preschool. This new modular building will provide space for up to 33 more local children each day. This will help the preschool expand free kindergarten, as part of the Best Start, Best Life reforms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 4 of the 2023 Building Blocks Capacity Grant stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Dromana Preschool" + ], + "field_latitude": ["-38.33672446"], + "field_latitude_longitude_value": ["-38.33672446,144.96896"], + "field_latitude_value": ["-38.33672446"], + "field_longitude": ["144.96896"], + "field_longitude_value": ["144.96896"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3936"], + "field_project_code": ["15-541"], + "field_project_title": ["Building Blocks Capacity Grant - Modular"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["65 Pier St"], + "field_suburb": ["Dromana"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36993], + "status": [true], + "title": ["Dromana Preschool Inc"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e2f0e0d6-9574-42ff-aa56-d48b98f3a41c"] + }, + "sort": ["Dromana Preschool Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20043:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dromana-primary-school"], + "changed": ["2023-07-18T17:14:55+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and expanded this school, allowing enrolment for an extra 200 local students.The project included a new double-storey teaching and learning building. Improvements for students and staff include specialist spaces for:art, science and technologygeneral learningstaff work and collaboration." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.075 million in planning funding. In the 2020-21 State Budget, the school received at least $8.708 million from a pool of more than $85 million to expand seven schools in high-growth areas." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Dromana Primary School" + ], + "field_latitude": ["-38.3337516784668"], + "field_latitude_longitude_value": [ + "-38.3337516784668,144.96458435058594" + ], + "field_latitude_value": ["-38.3337516784668"], + "field_longitude": ["144.96458435058594"], + "field_longitude_value": ["144.96458435058594"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3936"], + "field_project_code": ["01-184"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Mcculloch Street"], + "field_suburb": ["Dromana"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20043], + "status": [true], + "title": ["Dromana Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c420d3b7-feaf-4783-9ddc-bd4694c3132c"] + }, + "sort": ["Dromana Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20739:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dromana-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. The building includes six learning spaces and a spacious community hub for students, featuring an open kitchenette and locker area. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $2.362 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dromana Secondary College" + ], + "field_latitude": ["-38.342636"], + "field_latitude_longitude_value": ["-38.342636,145.013582"], + "field_latitude_value": ["-38.342636"], + "field_longitude": ["145.013582"], + "field_longitude_value": ["145.013582"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3936"], + "field_project_code": ["01-7122"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["110 Harrisons Rd"], + "field_suburb": ["Dromana"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20739], + "status": [true], + "title": ["Dromana Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["77cf45be-8493-46f3-8a5e-4beb8a7f984e"] + }, + "sort": ["Dromana Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21303:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/drouin-primary-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Drouin Primary Early Learning Centre have created\u00a0a third program room, a third consulting room, and an outdoor play space. This\u00a0provides\u00a0additional funded kindergarten places and consulting space for the Maternal and Child Health Service and other allied health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Drouin Primary Early Learning Centre" + ], + "field_latitude": ["-38.13291"], + "field_latitude_longitude_value": ["-38.13291,145.85503"], + "field_latitude_value": ["-38.13291"], + "field_longitude": ["145.85503"], + "field_longitude_value": ["145.85503"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["15-5472"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1 School Road"], + "field_suburb": ["Drouin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21303], + "status": [true], + "title": ["Drouin Primary Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8a3140f6-3f81-4f82-89e8-e35438b70bc5"] + }, + "sort": ["Drouin Primary Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20056:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/drouin-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to improve the school, with a major upgrade and modernisation project. We are replacing temporary facilities with permanent buildings with space for an extra 225 local students. We are also building a competition-grade gymnasium.", + "We are building new hardcourts at the school, including a court with a roof to create an all-weather area suitable for sports, assemblies and community gatherings.", + "We\u00a0built\u00a0an all-abilities playground\u00a0at Drouin Primary School.", + "\u200bWe built an outdoor inclusive learning space, including decking and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received at least $22.097 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $443,665.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In Round 6 of the Inclusive Schools Fund, this project received $198,027." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Drouin Primary School." + ], + "field_latitude": ["-38.1327156", "-38.1327156", "-38.1323"], + "field_latitude_longitude_value": ["-38.1327156,145.8537177"], + "field_latitude_value": ["-38.1327156"], + "field_longitude": ["145.8537177", "145.8537177", "145.85454"], + "field_longitude_value": ["145.8537177"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": [ + "D2-01-1924", + "D1-01-1924", + "01-1924", + "D3-01-1924" + ], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund \u2013 Round 5", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q4 2024", "Q4 2024", "Q1 2021", "Q3 2022"], + "field_start_date": ["Q2 2021", "Q4 2020", "Q4 2019", "Q2 2021"], + "field_status_name": ["Design", "Design", "Complete", "Complete"], + "field_street_address": ["153-161 Princes Way"], + "field_suburb": ["Drouin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20056], + "status": [true], + "title": ["Drouin Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d7f7ec9a-32b0-41c2-b596-af1b31d62cef"] + }, + "sort": ["Drouin Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20787:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/drouin-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We upgraded the school, offering students\u00a0flexible learning areas\u00a0and\u00a0comfortable outdoor spaces for recreation and learning. \u00a0 Seven\u00a0new classrooms with flexibility for large or small groups were built,\u00a0as well as\u00a0a central breakout and collaborative learning space.\u00a0We also created\u00a0a canteen\u00a0with internal and external seating areas.\u200b", + "We helped build a welcoming and belonging centre. The centre has\u00a0inclusive and flexible learning spaces, a quiet and supportive sensory re-engagement space, break-out areas and an accessible bathroom with a laundry. There is\u00a0also\u00a0a wellbeing area where students and families can access immediate support and referral to outside agencies." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2015\u201316 State Budget, $289,000 was allocated to the school. A further $4.5 million was allocated to the school as part of the 2016\u201317 State Budget, as well as an additional $39,000 in planned maintenance funding in the same year.", + "In 2018, $199,800 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Planning", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Drouin Secondary College" + ], + "field_latitude": ["-38.174732208252"], + "field_latitude_longitude_value": [ + "-38.174732208252,145.831787109375" + ], + "field_latitude_value": ["-38.174732208252"], + "field_longitude": ["145.831787109375"], + "field_longitude_value": ["145.831787109375"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["D2-01-7785", "01-7785", "D1-01-7785"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q1 2019", + "Q4 2019" + ], + "field_start_date": ["Q2 2023", "Q1 2018", "Q4 2018"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["South Rd"], + "field_suburb": ["Drouin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20787], + "status": [true], + "title": ["Drouin Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d259b22f-ee06-413d-a93e-0afff6f520d6"] + }, + "sort": ["Drouin Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21361:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/drouin-west-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Baw Baw Shire Council to build a new kindergarten at Drouin West Primary School. This 2-room centre provides 66 kindergarten places and opens into an outdoor learning and play space. Having the kindergarten and school together helps local children make a smoother transition into primary school and makes drop-off time simpler for some families. This kindergarten was built using modular construction. Constructing the modules offsite minimised disruptions to the community and kindergarten. This process also reduced the time required for a traditional build and gave the children faster access to high-quality learning environments. For information on kindergarten enrolments, please contact Baw Baw Shire Council or call the Baw Baw Shire Kindergarten Enrolment Officer on 5624 2540." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten funding, delivered over four years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Drouin West Kindergarten." + ], + "field_latitude": ["-38.11112715007792"], + "field_latitude_longitude_value": [ + "-38.11112715007792,145.84896119316946" + ], + "field_latitude_value": ["-38.11112715007792"], + "field_longitude": ["145.84896119316946"], + "field_longitude_value": ["145.84896119316946"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["15-DWPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["535 Main Neerim Rd"], + "field_suburb": ["Drouin West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21361], + "status": [true], + "title": ["Drouin West Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["181fbd0d-5614-48f0-a946-20a0a761f80c"] + }, + "sort": ["Drouin West Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21425:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/drysdale-integrated-child-and-family-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Greater Geelong City Council have built the Drysdale Child and Family Centre, incorporating kindergarten, long day care, Maternal and Child Health, consulting rooms, toy library and multi-purpose facilities. The centre\u00a0complements other local services and provides a\u00a0link and opportunities to share facilities with the adjacent Bellarine Community Health Centre. The new centre\u00a0responds to significant population growth in the area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-2018 Children's Facilities Capital Program $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Drysdale Integrated Child and Family Centre" + ], + "field_latitude": ["-38.174597"], + "field_latitude_longitude_value": ["-38.174597,144.567450"], + "field_latitude_value": ["-38.174597"], + "field_longitude": ["144.567450"], + "field_longitude_value": ["144.567450"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3222"], + "field_project_code": ["ELC-9"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": [ + "38-40 High Street & 17-21 Palmerston Street" + ], + "field_suburb": ["Drysdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21425], + "status": [true], + "title": ["Drysdale Integrated Child and Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["64ed8898-4993-43a2-9b6c-5aab0fa3a035"] + }, + "sort": ["Drysdale Integrated Child and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20024:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/drysdale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded\u00a0this\u00a0school in two stages. Traditional\u00a0classroom spaces have been transformed into\u00a0flexible learning spaces to support diverse student needs. Stage\u00a0one This stage is now complete, and\u00a0included: \u200b\u200bextending\u00a0the\u00a0library to create a senior centre creating a\u00a0junior learning\u00a0studio\u00a0with classroom spaces upgrading\u00a0specialist facilities including art and music areas. Stage two This stage is now complete, and included: refurbishing\u00a0a\u00a0building to increase natural light and ventilation undertaking\u00a0minor landscaping works.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $3.22 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Drysdale Primary School" + ], + "field_latitude": ["-38.16851"], + "field_latitude_longitude_value": ["-38.16851,144.57292"], + "field_latitude_value": ["-38.16851"], + "field_longitude": ["144.57292"], + "field_longitude_value": ["144.57292"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3222"], + "field_project_code": ["01-1645"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["52-66 Clifton Springs Rd"], + "field_suburb": ["Drysdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20024], + "status": [true], + "title": ["Drysdale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["46149503-59a4-4156-8969-a6bff4c5a180"] + }, + "sort": ["Drysdale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20509:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Dulap-Wilim-Hub"], + "changed": ["2023-10-13T11:42:49+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built Dulap Wilim Hub at the shared entrance to Sunbury Heights Primary School and Sunbury Downs Secondary College.The \u00a0modern hub includes multipurpose community and meeting rooms. It also has spaces for allied health, training, employment support and other services.\u00a0The hub also includes the Dulap Wilim Preschool. It offers 66 kindergarten places to the local community. Hume City Council run the kindergarten. Its entry is on Charters Road East.\u00a0Building kindergartens at, or next to, schools provides many benefits for Victorian families. It can make the transition to school easier for children and drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$4.2 million was allocated in 2016-17 through the Shared Facilities Fund. The project shared in $10 million funding for the integrated early learning centre." + ], + "field_funding_type_name": ["Shared Facilities Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Dulap Wilim Hub" + ], + "field_latitude": ["-37.582219"], + "field_latitude_longitude_value": ["-37.582219,144.706935"], + "field_latitude_value": ["-37.582219"], + "field_longitude": ["144.706935"], + "field_longitude_value": ["144.706935"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["01-5179-8723"], + "field_project_title": ["Shared Facilities Fund"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Leichardt Street"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20509], + "status": [true], + "title": ["Dulap Wilim Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7a5408a3-2a05-44f6-9a27-cac2de977374"] + }, + "sort": ["Dulap Wilim Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20710:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dunkeld-consolidated-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $1.092 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Dunkeld Consolidated School" + ], + "field_latitude": ["-37.639175"], + "field_latitude_longitude_value": ["-37.639175,142.340805"], + "field_latitude_value": ["-37.639175"], + "field_longitude": ["142.340805"], + "field_longitude_value": ["142.340805"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3294"], + "field_project_code": ["01-6215"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["93 Victoria Valley Rd"], + "field_suburb": ["Dunkeld"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20710], + "status": [true], + "title": ["Dunkeld Consolidated School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4761b86b-744f-49b4-b645-5774b6c98d02"] + }, + "sort": ["Dunkeld Consolidated School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20017:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/dunolly-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have completed refurbishment works to the\u00a0staff lounge, meeting room, first aid room, entry zone, and porch paving.\u00a0We have also\u00a0delivered a new concrete deck." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $161,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Dunolly Primary School." + ], + "field_latitude": ["-36.851151"], + "field_latitude_longitude_value": ["-36.851151,143.733459"], + "field_latitude_value": ["-36.851151"], + "field_longitude": ["143.733459"], + "field_longitude_value": ["143.733459"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3472"], + "field_project_code": ["01-1582"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["8 Elgin St"], + "field_suburb": ["Dunolly"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20017], + "status": [true], + "title": ["Dunolly Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["787810a1-bac1-4c57-b2ac-e6b75fc36230"] + }, + "sort": ["Dunolly Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21410:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/each-integrated-childrens-centre"], + "changed": ["2023-12-05T18:37:04+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "EACH improved and redeveloped its existing Child and Family Centre in East Ringwood. The centre is now a fully integrated children\u2019s centre. The redevelopment occurred in two stages:In Stage 1, the childcare centre expanded from 90 to 122 places. They also added a dedicated parking and entrance facility.In Stage 2, a family hub was developed on-site. This includes child and family services to support the integrated children\u2019s centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $1,600,000 has been allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at EACH Integrated Children's Centre" + ], + "field_latitude": ["-37.81368"], + "field_latitude_longitude_value": ["-37.81368,145.24149"], + "field_latitude_value": ["-37.81368"], + "field_longitude": ["145.24149"], + "field_longitude_value": ["145.24149"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["ELC-23"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["71-73 Patterson St"], + "field_suburb": ["Ringwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21410], + "status": [true], + "title": ["EACH Integrated Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68442c64-8e3c-4b26-9312-351b29c132f3"] + }, + "sort": ["EACH Integrated Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19993:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eaglehawk-north-primary-school"], + "changed": ["2023-12-05T10:21:09+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0the school to upgrade the playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $63,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Eaglehawk North Primary School" + ], + "field_latitude": ["-36.7057961"], + "field_latitude_longitude_value": ["-36.7057961,144.2377963"], + "field_latitude_value": ["-36.7057961"], + "field_longitude": ["144.2377963"], + "field_longitude_value": ["144.2377963"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at\u00a0Eaglehawk North Primary School." + ], + "field_postcode": ["3556"], + "field_project_code": ["01-1428"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1-9 Bendigo-Pyramid Rd"], + "field_suburb": ["Eaglehawk"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19993], + "status": [true], + "title": ["Eaglehawk North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["881a2698-30e8-4040-91c2-82fbdd39ca3f"] + }, + "sort": ["Eaglehawk North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/30555:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/eaglehawk-north-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-02-23T12:52:34+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new early learning and childcare centre at Eaglehawk North Primary School in the City of Greater Bendigo.The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs, with space for up to 102 local children each day.From 2029 Four-Year-Old Kindergarten will transition to Pre-Prep in the City of Greater Bendigo and funded kindergarten hours will double from 15 to 30 hours a week.The centre will have outdoor play areas as well as a consulting room for child and family services such as allied health, and a car park. \u00a0It will also have a room for community meetings and playgroup.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.\u00a0Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Eaglehawk North Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-36.707066"], + "field_latitude_longitude_value": ["-36.707066,144.237269"], + "field_latitude_value": ["-36.707066"], + "field_longitude": ["144.237269"], + "field_longitude_value": ["144.237269"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3556"], + "field_project_code": ["01-1428-ELC"], + "field_project_title": [ + "New Early Learning Centre - one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Design"], + "field_street_address": ["5 Darcy Street"], + "field_suburb": ["Sailors Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [30555], + "status": [true], + "title": [ + "Eaglehawk North Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["373cea4d-4378-4a69-bdc1-20071fdc474e"] + }, + "sort": [ + "Eaglehawk North Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20074:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eaglehawk-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe redeveloped part of the school grounds\u00a0to\u00a0create\u00a0a more engaging and inclusive playground that encourages physical activity, social interaction, creativity and problem solving. The\u00a0new play area\u00a0also includes built-in\u00a0musical instruments and\u00a0numerical patterns painted on the pavement -\u00a0all set in a grassy area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $197,400 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Eaglehawk Primary School" + ], + "field_latitude": ["-36.720268"], + "field_latitude_longitude_value": ["-36.720268,144.255280"], + "field_latitude_value": ["-36.720268"], + "field_longitude": ["144.255280"], + "field_longitude_value": ["144.255280"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3556"], + "field_project_code": ["01-210"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Church St"], + "field_suburb": ["Eaglehawk"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20074], + "status": [true], + "title": ["Eaglehawk Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ef267dbd-7263-4b04-96ee-6abf6c70a5f9"] + }, + "sort": ["Eaglehawk Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21396:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/early-years-hub-bayswater"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Knox City Council built an integrated children\u2019s centre in Bayswater. The centre provides single-entry integrated services for children and families and has\u00a0improved the community's access to a sustainable long day care service.\u00a0 \u00a0 \u200b \u200b The facility provides early years and family support services to support a range of needs. Services include long day care, sessional and long day funded kindergarten, and a dual-maternal and child health service. The hub includes a natural outdoor play space , an allied health consultation suite and a community/playgroup room.\u200b\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Early Years Hub Bayswater" + ], + "field_latitude": ["-37.8471"], + "field_latitude_longitude_value": ["-37.8471,145.25307"], + "field_latitude_value": ["-37.8471"], + "field_longitude": ["145.25307"], + "field_longitude_value": ["145.25307"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3153"], + "field_project_code": ["ELC-11"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["41-43 Phyllis St"], + "field_suburb": ["Bayswater"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21396], + "status": [true], + "title": ["Early Years Hub Bayswater"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5dba735d-6951-4852-baec-8faae675cbaa"] + }, + "sort": ["Early Years Hub Bayswater"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22657:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/early-years-phoenix-park"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We refurbished the outdoor play areas to provide better educational opportunities for the children. The new spaces focus on sustainability, and include more veggie gardens, a water tank, as well as natural spaces with logs and stepping stones." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Early Years at Phoenix Park" + ], + "field_latitude": ["-37.87985328"], + "field_latitude_longitude_value": ["-37.87985328,145.0822756"], + "field_latitude_value": ["-37.87985328"], + "field_longitude": ["145.0822756"], + "field_longitude_value": ["145.0822756"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3145"], + "field_project_code": ["15-4940"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Quentin Rd"], + "field_suburb": ["Malvern East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22657], + "status": [true], + "title": ["Early Years at Phoenix Park"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["16dc39f3-660a-4f92-848d-08e12267b3ef"] + }, + "sort": ["Early Years at Phoenix Park"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24577:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-beaumaris-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Bayside City Council plan to expand and upgrade East Beaumaris Kindergarten, so it can better meet growing local demand for kindergarten places. This could allow it to offer 66 funded kindergarten places for 3 and 4-year-olds. The council is also looking at including indoor and outdoor play spaces and improved staff toilets in their plans. This planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of East Beaumaris Kindergarten" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-901"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24577], + "status": [true], + "title": ["East Beaumaris Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0c559268-b2c3-4ba1-83f9-691457580c96"] + }, + "sort": ["East Beaumaris Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20371:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-bentleigh-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0and modernised\u00a0East Bentleigh Primary School, including creating a\u00a0performing arts centre that provides theatre, rehearsal and individual practice rooms. We also provided\u00a0an additional four classrooms and shared learning space. These works ensure students learn in facilities geared for delivering modern education.", + "We \u200breplaced outdated covered walkways, and built new covered ways to join existing buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget $5 million was allocated to the school.", + "In the 2016-17 State Budget, $150,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at East Bentleigh Primary School" + ], + "field_latitude": ["-37.934547", "-37.934521"], + "field_latitude_longitude_value": ["-37.934547,145.069458"], + "field_latitude_value": ["-37.934547"], + "field_longitude": ["145.069458", "145.069397"], + "field_longitude_value": ["145.069458"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["D1-01-4837", "01-4837"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Bignell Road"], + "field_suburb": ["East Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20371], + "status": [true], + "title": ["East Bentleigh Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["afe2fba4-485a-48c6-8e3e-40de4638ec2d"] + }, + "sort": ["East Bentleigh Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28960:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-brunswick-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We updated the bathroom, making it easier to clean. We also provided more lockable storage so that cleaning items can be stored safely." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $70,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at East Brunswick Kindergarten Inc" + ], + "field_latitude": ["-37.77249818"], + "field_latitude_longitude_value": ["-37.77249818,144.9803452"], + "field_latitude_value": ["-37.77249818"], + "field_longitude": ["144.9803452"], + "field_longitude_value": ["144.9803452"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3057"], + "field_project_code": ["15-217"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["2-8 Noel St"], + "field_suburb": ["Brunswick East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28960], + "status": [true], + "title": ["East Brunswick Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["2cff9982-8201-4a8c-84bb-d8bc25cb67ff"] + }, + "sort": ["East Brunswick Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36664:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-doncaster-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are building accessible toilets for staff and students. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $470,162 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at East Doncaster Secondary College" + ], + "field_latitude": ["-37.782127"], + "field_latitude_longitude_value": ["-37.782127,145.158557"], + "field_latitude_value": ["-37.782127"], + "field_longitude": ["145.158557"], + "field_longitude_value": ["145.158557"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3109"], + "field_project_code": ["01-7773"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["20 George Street"], + "field_suburb": ["Doncaster East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36664], + "status": [true], + "title": ["East Doncaster Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["f2cfbbdb-e948-4cc3-95cd-06ba0ab698ef"] + }, + "sort": ["East Doncaster Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20632:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-gippsland-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and a library.", + "We have created a sensory and accessible playground, as well as redeveloping the existing playground to promote inclusion. \u00a0 \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $6.777 million.", + "In the 2016\u201317 State Budget, $200,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at East Gippsland Specialist School" + ], + "field_latitude": ["-37.828711", "-37.82677"], + "field_latitude_longitude_value": ["-37.828711,147.598997"], + "field_latitude_value": ["-37.828711"], + "field_longitude": ["147.598997", "147.60224"], + "field_longitude_value": ["147.598997"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["D1-01-5490", "01-5490"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q1 2018"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["31 Calvert St"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20632], + "status": [true], + "title": ["East Gippsland Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["43ad2378-bb7c-4049-a029-6f87e20c3c3b"] + }, + "sort": ["East Gippsland Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23302:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-ivanhoe-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are expanding the preschool into a two-room kindergarten. The centre will offer 66 kindergarten places, giving more local children access to 2 years of high-quality education. The expanded centre will replace the recently vacated maternal and child health centre next door." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $3,639,500 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at East Ivanhoe Preschool" + ], + "field_latitude": ["-37.77078356"], + "field_latitude_longitude_value": ["-37.77078356,145.0623105"], + "field_latitude_value": ["-37.77078356"], + "field_longitude": ["145.0623105"], + "field_longitude_value": ["145.0623105"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3079"], + "field_project_code": ["15-4798"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["1 King St"], + "field_suburb": ["Ivanhoe East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23302], + "status": [true], + "title": ["East Ivanhoe Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4ad3492d-9d0e-4ae9-9c67-ee54d805a230"] + }, + "sort": ["East Ivanhoe Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20711:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-loddon-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade the science block classrooms.", + "We are upgrading the school with a major refurbishment of Block B, Block C and Block F. These works will target facilities that need it most, ensuring that students learn in an environment designed for delivering modern education.", + "We upgraded the Community Hall and performed maintenance." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $12.754 million.", + "In the 2019\u201320 State Budget, the school received $450,000. In 2020, the school received $4.05 million.", + "In the 2017\u201318 State Budget $290,000 was allocated to the school for planned maintenance. In the 2015\u201316 State Budget, $60,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "School Improvement Fund", + "Planned Maintenance Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at East Loddon P-12 College" + ], + "field_latitude": ["-36.372222", "-36.37093", "-36.37093"], + "field_latitude_longitude_value": ["-36.372222,144.141446"], + "field_latitude_value": ["-36.372222"], + "field_longitude": ["144.141446", "144.18047", "144.18047"], + "field_longitude_value": ["144.141446"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3571"], + "field_project_code": ["D2-01-6217", "D1-01-6217", "01-6217"], + "field_project_title": [ + "Upgrade and Modernisation \u2013 Next Stage", + "Upgrade and Modernisation", + "School Improvement Fund, Planned Maintenance Program" + ], + "field_q_complete": ["Q2 2025", "Q4 2023", "Q4 2016"], + "field_start_date": ["Q2 2022", "Q2 2019"], + "field_status_name": ["Design", "Construction", "Complete"], + "field_street_address": ["Dingee Rd"], + "field_suburb": ["Dingee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20711], + "status": [true], + "title": ["East Loddon P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b4f432ea-a89c-4690-a52d-230a878e5c8a"] + }, + "sort": ["East Loddon P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21395:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/east-preston-islamic-college-early-learning-centre" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "East Preston Islamic College has built a new early learning centre on the school site.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at East Preston Islamic College Early Learning Centre" + ], + "field_latitude": ["-37.73427"], + "field_latitude_longitude_value": ["-37.73427,145.03569"], + "field_latitude_value": ["-37.73427"], + "field_longitude": ["145.03569"], + "field_longitude_value": ["145.03569"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["ELC-10"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["55-57 Tyler St"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21395], + "status": [true], + "title": ["East Preston Islamic College Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["04ea4ff7-c802-43d7-b757-0c67931bde9c"] + }, + "sort": ["East Preston Islamic College Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33250:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-sunshine-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2023-06-07T16:07:09+10:00"], + "field_about_project_processed": [ + "We expanded and improved this kindergarten with a new modular building and carpark. The new kindergarten building offers 33 approved kindergarten places and gives children better spaces to learn. It\u2019s also made drop-off and pick-up easier for parents." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received funding from the $1.68 billion committed to Three Year Old Kindergarten in the 2018-19 budget. Funding was allocated in Round 2B of the 2021-22 Building Blocks Grants Capacity Building stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at East Sunshine Kindergarten" + ], + "field_latitude": ["-37.787586"], + "field_longitude": ["144.844661"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["15-ESK"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Lowe Crescent"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33250], + "status": [true], + "title": ["East Sunshine Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["72177724-8530-4835-8ccb-3dc975523433"] + }, + "sort": ["East Sunshine Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22661:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/east-west-childcare-association"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor space by building a new play structure with a cubby. We will also replace trees and an old deck. This will improve children\u2019s outdoor play, learning and development. We are also upgrading the indoor space with better lighting and new acoustic panels to help student engagement.", + "This grant revitalised the garden with new trees, a play structure and shade sails. It helped replaced mature trees and shade sails to bring the garden back to life." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $119,003 was allocated to this project.", + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at East West Childcare Association" + ], + "field_latitude": ["-37.80467403"], + "field_latitude_longitude_value": ["-37.80467403,144.9811044"], + "field_latitude_value": ["-37.80467403"], + "field_longitude": ["144.9811044"], + "field_longitude_value": ["144.9811044"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3065"], + "field_project_code": ["D1-15-5579", "15-5579"], + "field_project_title": [ + "Building Blocks Inclusion Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023", "Q3 2023"], + "field_start_date": ["Q2 2023", "Q3 2021"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["138 George St"], + "field_suburb": ["Fitzroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22661], + "status": [true], + "title": ["East West Childcare Association"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a4384e34-a120-4f18-9b2e-e64513b6cdac"] + }, + "sort": ["East West Childcare Association"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20489:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eastbourne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We refurbished the student and staff bathrooms to improve amenity, cleanliness and hygiene.", + "We built a new playground and sensory garden that incorporates tactile objects, a water feature and new play equipment.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 2 of the Minor Capital Works Fund, the project received $366,435.", + "In 2016, the school received $185,100 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Eastbourne Primary School" + ], + "field_latitude": ["-38.373764", "-38.37186"], + "field_latitude_longitude_value": ["-38.373764,144.8835"], + "field_latitude_value": ["-38.373764"], + "field_longitude": ["144.8835", "144.88845"], + "field_longitude_value": ["144.8835"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3940"], + "field_project_code": ["D2-01-5133", "D1-01-5133", "01-5133"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q3 2023", + "Q3 2017" + ], + "field_start_date": ["Q2 2023", "Q4 2021"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["Allambi Av"], + "field_suburb": ["Capel Sound"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20489], + "status": [true], + "title": ["Eastbourne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c31f7e38-729c-4dc5-978e-a159c3d699c1"] + }, + "sort": ["Eastbourne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20572:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eastern-ranges-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade the Special Building, as well as the Junior and Senior Wing buildings and administration areas.", + "We are building an inclusive senior playground, including new play and sensory equipment and synthetic turf.", + "We revamped\u00a0the upper primary playground\u00a0(Years 3-6)\u00a0at Eastern Ranges School, adding equipment to create an outdoor sensory play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $5.701 million.", + "In Round 7 of the Inclusive Schools Fund, the project received $200,000", + "In 2019, $80,599 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Eastern Ranges School" + ], + "field_latitude": ["-37.88042006", "-37.88042006", "-37.87968"], + "field_latitude_longitude_value": ["-37.88042006,145.2849193"], + "field_latitude_value": ["-37.88042006"], + "field_longitude": ["145.2849193", "145.2849193", "145.28622"], + "field_longitude_value": ["145.2849193"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["D2-01-5309", "D1-01-5309", "01-5309"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 7", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q2 2024", "Q3 2020"], + "field_start_date": ["Q2 2022", "Q4 2021", "Q4 2019"], + "field_status_name": ["Design", "Construction", "Complete"], + "field_street_address": ["56 Dorset Rd"], + "field_suburb": ["Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20572], + "status": [true], + "title": ["Eastern Ranges School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c689bed5-060c-496f-8701-9cf40e8d6e1e"] + }, + "sort": ["Eastern Ranges School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20324:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eastwood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school create a natural outdoor play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $56,230" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Eastwood Primary School" + ], + "field_latitude": ["-37.8181149502129"], + "field_latitude_longitude_value": [ + "-37.8181149502129,145.247768300008" + ], + "field_latitude_value": ["-37.8181149502129"], + "field_longitude": ["145.247768300008"], + "field_longitude_value": ["145.247768300008"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["01-4702"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Alexandra Road"], + "field_suburb": ["Ringwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20324], + "status": [true], + "title": ["Eastwood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8a54694a-e0de-42fa-be48-6e9c2091437c"] + }, + "sort": ["Eastwood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25401:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/echuca-early-childhood-community-hub"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We are partnering with Sandhurst Catholic Early Childhood Education and Care to build an integrated children's centre, which will offer 3 kindergarten rooms as well as maternal child health and allied health services. The kindergarten will provide 99 kindergarten places to the community and help local children access 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Building Blocks Capacity Grant, $4,908,004 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Echuca Early Childhood Community Hub" + ], + "field_latitude": ["-36.13749447178"], + "field_latitude_longitude_value": [ + "-36.13749447178,144.724350249076" + ], + "field_latitude_value": ["-36.13749447178"], + "field_longitude": ["144.724350249076"], + "field_longitude_value": ["144.724350249076"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3564"], + "field_project_code": ["15-ECH"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["88 Wilkinson Drive"], + "field_suburb": ["Echuca"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25401], + "status": [true], + "title": ["Echuca Early Childhood Community Hub"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["0e77ee30-454c-42d0-adbd-f2da4aa3118a"] + }, + "sort": ["Echuca Early Childhood Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33832:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/echuca-primary-school-kindergarten-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Echuca Primary School.\u00a0This will provide additional kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Echuca Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-36.127600"], + "field_latitude_longitude_value": ["-36.127600,144.744230"], + "field_latitude_value": ["-36.127600"], + "field_longitude": ["144.744230"], + "field_longitude_value": ["144.744230"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3564"], + "field_project_code": ["15-EPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["297 Anstruther Street"], + "field_suburb": ["Echuca"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33832], + "status": [true], + "title": ["Echuca Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["025cd789-776c-4f9e-9e6b-8969acd38495"] + }, + "sort": ["Echuca Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20642:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/echuca-regeneration-project"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed building\u00a0Echuca Twin Rivers Primary School\u200b, and it welcomed its first students at the start of the 2018 school year.\u00a0 The new school merged Echuca South Primary School and Echuca West Primary School in the first stage of this project. In the second stage of the project, we built a new home for the\u00a0Echuca Specialist School on the same\u00a0site.\u200b \u200b", + "Stage 2 of the Echuca Regeneration Project is now complete. We built a new home for Echuca Twin Rivers\u00a0Specialist School which features indoor and outdoor learning environments, and spaces for arts, crafts, and music. We also continued the work\u00a0started in Stage 1 by\u00a0providing\u00a0additional facilities to Echuca Twin Rivers School,\u00a0located on the same site. This includes a Years 5\u20136 building, art room, canteen, and a gymnasium with\u00a0music areas shared with the specialist school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $11 million was allocated to the Echuca Regeneration Project.", + "In the 2019\u201320 State Budget, the regeneration received $16.72 million." + ], + "field_funding_type_name": [ + "New School", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Echuca Regeneration Project" + ], + "field_latitude": ["-36.14408", "-36.14408"], + "field_latitude_longitude_value": ["-36.14408,144.72404"], + "field_latitude_value": ["-36.14408"], + "field_longitude": ["144.72404", "144.72404"], + "field_longitude_value": ["144.72404"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3564"], + "field_project_code": ["01-5516", "D1-01-5516"], + "field_project_title": [ + "New School - Echuca Twin Rivers Primary School", + "Upgrade and Modernisation - Echuca Twin Rivers Primary School and Echuca Twin Rivers Specialist School" + ], + "field_q_complete": ["Q4 2017", "Q3 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["66 Wilkinson Drive"], + "field_suburb": ["Echuca"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20642], + "status": [true], + "title": ["Echuca Regeneration Project"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["27f9eae3-2128-4116-8704-afb23172ff74"] + }, + "sort": ["Echuca Regeneration Project"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20838:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edenbrook-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new secondary college in Pakenham. It opened in 2021 and helps\u00a0the growing local population get great education close to home. Enrolments\u00a0opened\u00a0for Year 7 in 2021, increasing by year level in each consecutive year.\u00a0 Johanna Walker was appointed as the first principal.\u00a0 School name Edenbrook\u00a0Secondary College\u00a0was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. The school is named\u00a0after the nearby Edenbrook wetlands. We consulted with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input. Facilities The college opened with the\u00a0following permanent buildings (which can cater for a maximum enrolment of 500 students): visual arts building a learning community science, technology, engineering and maths building 2 outdoor play courts. The school will be equipped with temporary administration facilities (housed within the visual arts building) that include reception, combined principal and vice principal office, sick bay and general staff office and staff room.\u00a0", + "\u200bWe built an additional stage of the\u00a0college. We constructed: an administration building 2 soccer pitches a performing arts and physical education building\u00a0with a competition-grade gym a learning neighbourhood outdoor play courts and\u00a0a car park. This additional stage allows the school to\u00a0cater for 1,200 students.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for this school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools.", + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for this school. In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Edenbrook Secondary College." + ], + "field_latitude": ["-38.078779"], + "field_latitude_longitude_value": ["-38.078779,145.444058"], + "field_latitude_value": ["-38.078779"], + "field_longitude": ["145.444058"], + "field_longitude_value": ["145.444058"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["01-8224", "D1-01-8224"], + "field_project_title": [ + "New School", + "New School - Additional Stage" + ], + "field_q_complete": ["Q1 2021", "Q1 2023"], + "field_start_date": ["Q2 2018", "Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["133 Henry Rd"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20838], + "status": [true], + "title": ["Edenbrook Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3dcbfbc9-1a65-49dd-ad7a-09a4555e07e4"] + }, + "sort": ["Edenbrook Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33015:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edenhope-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Edenhope College" + ], + "field_latitude": ["-37.03342876"], + "field_latitude_longitude_value": ["-37.03342876,141.2985627"], + "field_latitude_value": ["-37.03342876"], + "field_longitude": ["141.2985627"], + "field_longitude_value": ["141.2985627"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3318"], + "field_project_code": ["01-5432"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["40-48 Lake Street"], + "field_suburb": ["Edenhope"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33015], + "status": [true], + "title": ["Edenhope College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["8775d7df-ac4b-407c-b8cb-ee7be990db2f"] + }, + "sort": ["Edenhope College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28661:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edenhope-early-childhood-service"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the bathroom and laundry. We will also increase storage and make the centre more accessible for all kindergarten children and their families.", + "We redeveloped the outdoor area to create accessible spaces for children of all abilities. Children can now move more easily between outdoor and indoor areas. The upgrade also helps staff run long day care sessions." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $342199.77 was allocated to the project.", + "In the 2022-23 Building Blocks Improvement Grants $70,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Edenhope Early Childhood Service." + ], + "field_latitude": ["-37.03667658"], + "field_latitude_longitude_value": ["-37.03667658,141.2996351"], + "field_latitude_value": ["-37.03667658"], + "field_longitude": ["141.2996351"], + "field_longitude_value": ["141.2996351"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3318"], + "field_project_code": ["15-762", "D1-15-762"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q2 2024", "Q2 2023"], + "field_start_date": ["Q4 2022", "Q4 2022"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["52 Langford St"], + "field_suburb": ["Edenhope"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28661], + "status": [true], + "title": ["Edenhope Early Childhood Service"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["9592a33e-239e-4ee6-b8a1-54f8f38d8efb"] + }, + "sort": ["Edenhope Early Childhood Service"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20573:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edgars-creek-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Wollert. It opened in 2021 and helps\u00a0the growing local population get great education close to home. Ann Turner-Calleri was appointed as the first principal. Enrolments are now open for Prep to Year 6.\u00a0 Your new school includes: 2 learning neighbourhoods an arts, science and food technology building an\u00a0administration building outdoor play courts a performing arts and physical education building a sports field. We supported the build of a\u00a0kinder\u00a0next to the school. This may\u00a0help local\u00a0children make\u00a0a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children. Further information on the school, including enrolment,\u00a0can be found on its\u00a0official Facebook page. School name Edgars Creek\u00a0Primary School\u00a0was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. The school is named after nearby Edgars Creek. The school is located next to\u00a0Edgars Creek Secondary College. We consulted\u00a0with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was provided in the 2017\u201318 State Budget to buy land in this area for a new school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Edgars Creek Primary School." + ], + "field_latitude": ["-37.609825"], + "field_latitude_longitude_value": ["-37.609825,145.003208"], + "field_latitude_value": ["-37.609825"], + "field_longitude": ["145.003208"], + "field_longitude_value": ["145.003208"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Edgars Creek Primary School \u2013 new school now open" + ], + "field_postcode": ["3750"], + "field_project_code": ["01-5310"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Macedon Pde"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20573], + "status": [true], + "title": ["Edgars Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cc8193c2-722d-48c9-8157-595bbdbf7770"] + }, + "sort": ["Edgars Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20734:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edgars-creek-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe built\u00a0the new Edgars Creek Secondary College to meet rapidly-increasing enrolment demand in Epping North. The school will accommodate 1,100 students in Years 7-12.\u200b The college is\u00a0part of a wider education and community precinct that\u2019s being\u00a0planned for the area. This will also incorporate a primary school, community activity centre and a council reserve. \u200b \u200b \u200b Facilities The school features a two-storey, state-of-the-art STEM building. This houses science labs and flexible break-out spaces upstairs, and material tech and digital technology learning spaces downstairs. All are designed for contemporary teaching and learning approaches, with a focus on interdisciplinary project-based learning across Design, Technology and the Sciences. We have also created a\u00a0presentation space with central tiered seating that doubles\u00a0as a gathering spot for important meetings and ceremonies. There is\u00a0also\u00a0an administration and library resource centre, which is\u00a0shared with the community for professional development programs. The VSBA has\u00a0worked\u00a0closely with the City of Whittlesea to deliver a school that is an important piece of community infrastructure. Other shared benefits include a community sports oval. This is\u00a0part of a precinct with two grounds supporting community club development of Australian rules football and cricket, as well as being used by the\u00a0school for sports, PE classes and group activities. The oval is\u00a0full-sized AFL-grade, and includes sports training lights, coaches\u2019 boxes, sports field fencing and a cricket pitch. \u00a0", + "We have completed the second stage of Edgars Creek Secondary College. We built a sports hall, learning community and performing arts building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2016-17 State Budget allocated $12 million to this project. This is in addition to funding from the previous budget to purchase land for the school. An extra $4.7 million has been allocated from the Victorian Government\u2019s Shared Facilities Fund.", + "In the 2019\u201320 State Budget, the school received $22.8 million." + ], + "field_funding_type_name": [ + "New School", + "Shared Facilities Fund", + "New School" + ], + "field_landing_page_summary": [ + "Learn more about the build of Edgars Creek Secondary College" + ], + "field_latitude": ["-37.61165", "-37.60385"], + "field_latitude_longitude_value": ["-37.61165,145.00552"], + "field_latitude_value": ["-37.61165"], + "field_longitude": ["145.00552", "145.09016"], + "field_longitude_value": ["145.00552"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["01-7081", "D1-01-7081"], + "field_project_title": [ + "New School, Shared Facilities Fund", + "New School - Stage 2" + ], + "field_q_complete": ["Q2 2018", "Q1 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2 Steen Avenue"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20734], + "status": [true], + "title": ["Edgars Creek Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e2b31e01-2ed8-4e99-8087-5e4e467c687c"] + }, + "sort": ["Edgars Creek Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19992:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edi-upper-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a multipurpose sensory garden with plants, water pipes, a sand play area, outdoor musical instruments and seating areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $91,500 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Edi Upper Primary School" + ], + "field_latitude": ["-36.706471"], + "field_latitude_longitude_value": ["-36.706471,146.448811"], + "field_latitude_value": ["-36.706471"], + "field_longitude": ["146.448811"], + "field_longitude_value": ["146.448811"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3678"], + "field_project_code": ["01-1422"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["832 Edi-Cheshunt Rd"], + "field_suburb": ["Edi Upper"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19992], + "status": [true], + "title": ["Edi Upper Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1723974f-d67e-4018-bf0c-ce554ef6b71d"] + }, + "sort": ["Edi Upper Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21279:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edinburgh-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Edinburgh Early Learning Centre, creating 22 additional places in the kindergarten for local families. We improved the overall quality of the learning environment and helped local children access 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Grants Capacity Building stream, the children's centre received $600,000" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Edinburgh Early Learning Centre" + ], + "field_latitude": ["-37.785151369498642"], + "field_latitude_longitude_value": [ + "-37.785151369498642,145.35092213414379" + ], + "field_latitude_value": ["-37.785151369498642"], + "field_longitude": ["145.35092213414379"], + "field_longitude_value": ["145.35092213414379"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3140"], + "field_project_code": ["15-4611"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Expansion" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["47 Edinburgh Rd"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21279], + "status": [true], + "title": ["Edinburgh Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8a4d828f-f6c6-4331-baee-e5ac733c005e"] + }, + "sort": ["Edinburgh Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20223:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/edithvale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities, including refurbishing classrooms and facilities that were in poor condition, and landscaping across the front of the\u00a0school. The works also included refurbishing and extending the library to create a new STEM (science, technology, engineering and maths)\u00a0facility, as well as the modernising the library entrance.", + "We\u00a0replaced\u00a0an old\u00a0building containing asbestos with a new architecturally-designed permanent modular building with new classrooms and designated arts and crafts spaces. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. Edithvale Primary School is benefiting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "\u200bWe\u00a0built\u00a0an outdoor sensory play space to provide a quiet, tactile area for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $750,000 was allocated to the school.", + "In the 2019\u201320 State Budget, the school received $671,821 through the Permanent Modular School Buildings Program.", + "In 2019, $100,056 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Edithvale Primary School" + ], + "field_latitude": ["-38.037640", "-38.037640,"], + "field_latitude_longitude_value": ["-38.037640,145.113754"], + "field_latitude_value": ["-38.037640"], + "field_longitude": ["145.113754", "145.113708"], + "field_longitude_value": ["145.113754"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["01-3790", "D1-01-3790", "D2-01-3790"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2020", "Q2 2020", "Q3 2021"], + "field_start_date": ["Q2 2018", "Q2 2019", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Edithvale Rd"], + "field_suburb": ["Edithvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20223], + "status": [true], + "title": ["Edithvale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c7bebe0f-8b21-41a7-9145-c83c6005d405"] + }, + "sort": ["Edithvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33016:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eildon-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Eildon Primary School" + ], + "field_latitude": ["-37.233967"], + "field_latitude_longitude_value": ["-37.233967,145.906761"], + "field_latitude_value": ["-37.233967"], + "field_longitude": ["145.906761"], + "field_longitude_value": ["145.906761"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3713"], + "field_project_code": ["01-3931"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["45 High Street"], + "field_suburb": ["Eildon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33016], + "status": [true], + "title": ["Eildon Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["f246017b-f98c-434f-bbfe-dc0752554faa"] + }, + "sort": ["Eildon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21237:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eilleen-taylor-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Moira Shire Council upgraded Eilleen Taylor Kindergarten,\u00a0increasing\u00a0its licensed capacity and enhancing\u00a0the flexibility of the space.\u00a0 \u00a0 \u200b \u00a0 The office, kitchen and foyer were refurbished, and the verandah partially enclosed to provide a covered play space. A break-out space is now\u00a0available for early childhood professionals to work privately with children.\u00a0 Accessibility was also\u00a0enhanced, with a new accessible door into the foyer. Additional bench space in the kitchen\u00a0now\u00a0provides an opportunity to involve children in food preparation activities.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-2018 Children's Facilities Capital Program $135,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Eilleen Taylor Kindergarten" + ], + "field_latitude": ["-35.91863"], + "field_latitude_longitude_value": ["-35.91863,145.65158"], + "field_latitude_value": ["-35.91863"], + "field_longitude": ["145.65158"], + "field_longitude_value": ["145.65158"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3644"], + "field_project_code": ["15-298"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["5 Hay Av"], + "field_suburb": ["Cobram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21237], + "status": [true], + "title": ["Eilleen Taylor Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9562f7ce-d2f0-45d4-afa3-d2fd36b02362"] + }, + "sort": ["Eilleen Taylor Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20735:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elevation-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new secondary school for Craigieburn. \u200b\u200b\u200bElevation Secondary College is a\u00a0supported inclusion school. This means the school has been designed to support a higher number of students with a disability than a typical mainstream school. Included across the school are facilities that provide additional support, so that all students have access to the same learning and play.\u00a0\u00a0 We built the school in multiple stages. The first stage included a building for\u00a0specialist subjects (chemistry), a learning community (classrooms), administration building and hard courts.\u00a0 Enrolments opened for Year 7 in 2020, increasing by year level in each consecutive year. Visit the school's website for more information on their enrolment policy. This project, designed by Billard Leece Partnership, was a finalist for \u2018Best School Project Above $10 million\u2019 in the\u00a02020 Victorian School Design Awards. School name Elevation Secondary College\u00a0was originally known by the interim name of Craigieburn South Secondary School while it was being planned and built. The new name reflects its location on Elevation Boulevard, Craigieburn. The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable.", + "We built the final stage of Elevation Secondary College, which allows the school to enrol more local students and offer them broader learning facilities. We added new learning neighbourhoods, a gymnasium and performing arts building, more sports hard courts and completed landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017\u201318 State Budget allocated funding to buy land in this area for a new school. The school received an additional $24 million in the 2018-19 State Budget for construction. In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools.", + "In the 2021\u201322 State Budget, the school received $25.83 million." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Elevation Secondary College" + ], + "field_latitude": ["-37.59907", "-37.5982508"], + "field_latitude_longitude_value": ["-37.59907,144.889456"], + "field_latitude_value": ["-37.59907"], + "field_longitude": ["144.889456", "144.8894349"], + "field_longitude_value": ["144.889456"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["First day at Elevation Secondary College"], + "field_postcode": ["3064"], + "field_project_code": ["01-7082", "D1-01-7082"], + "field_project_title": [ + "New School - First Stage", + "New School - Next Stage" + ], + "field_q_complete": ["Q1 2020", "Q1 2023"], + "field_start_date": ["Q2 2017", "Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["199 Elevation Boulevard"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20735], + "status": [true], + "title": ["Elevation Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8fe7e2c8-824b-4ed4-ad6e-5c4ee9c93633"] + }, + "sort": ["Elevation Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20891:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elisabeth-murdoch-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build\u00a0a retreat to reduce anxiety and stress. It is fitted\u00a0with mindfulness activities, comfortable furniture and meeting rooms,\u00a0allowing students to schedule times to talk with teachers and the wellbeing team." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $164,300 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Elisabeth Murdoch College" + ], + "field_latitude": ["-38.159291"], + "field_latitude_longitude_value": ["-38.159291,145.19018"], + "field_latitude_value": ["-38.159291"], + "field_longitude": ["145.19018"], + "field_longitude_value": ["145.19018"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3910"], + "field_project_code": ["01-8722"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["80 Warrandyte Rd"], + "field_suburb": ["Langwarrin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20891], + "status": [true], + "title": ["Elisabeth Murdoch College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c91b1e7-c039-4fde-af5c-f49cfe822daf"] + }, + "sort": ["Elisabeth Murdoch College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20084:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ellinbank-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We installed two new water tanks, and upgraded the main classroom block.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015-16, the school received $15,000 through the school improvement fund. In 2016-17, the school received $60,000 through the School Pride and Sports Fund." + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ellinbank Primary School" + ], + "field_latitude": ["-38.24024"], + "field_latitude_longitude_value": ["-38.24024,145.93592"], + "field_latitude_value": ["-38.24024"], + "field_longitude": ["145.93592"], + "field_longitude_value": ["145.93592"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3821"], + "field_project_code": ["01-2189"], + "field_project_title": [ + "School Pride and Sports Fund, School Improvement Fund" + ], + "field_status_name": ["Complete"], + "field_street_address": ["13 Community Place"], + "field_suburb": ["Ellinbank"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20084], + "status": [true], + "title": ["Ellinbank Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["35fb0614-1051-4919-90af-36819a260b96"] + }, + "sort": ["Ellinbank Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20006:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elmore-primary-school"], + "changed": ["2023-10-02T15:03:37+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. We refurbished the admin area, library and art room in Block A." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.198 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Elmore Primary School" + ], + "field_latitude": ["-36.496799"], + "field_latitude_longitude_value": ["-36.496799,144.608948"], + "field_latitude_value": ["-36.496799"], + "field_longitude": ["144.608948"], + "field_longitude_value": ["144.608948"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3558"], + "field_project_code": ["01-1515"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["36 Michie Street"], + "field_suburb": ["Elmore"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20006], + "status": [true], + "title": ["Elmore Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["54b25e82-a626-4489-8880-9a87aa0df35c"] + }, + "sort": ["Elmore Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21345:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elonera-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the preschool.We installed a building with 33 places. It will help accommodate the roll-out of subsidised kindergarten for 3-year-olds.", + "Elonera Preschool upgraded and extended the bathroom facilities, replaced the existing windows with large stacking sliding doors and created an indoor/outdoor classroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $742,000 was allocated to the project.", + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $63,629 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Early Learning Facilities Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Elonera Preschool." + ], + "field_latitude": ["-37.992362976074219", "-37.99218"], + "field_latitude_longitude_value": [ + "-37.992362976074219,145.07542419433594" + ], + "field_latitude_value": ["-37.992362976074219"], + "field_longitude": ["145.07542419433594", "145.08842"], + "field_longitude_value": ["145.07542419433594"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["D1-15-903", "15-903"], + "field_project_title": [ + "Building Blocks Capacity Grant - Expansion", + "Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q2 2023", "Q1 2020"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["85 Davey St"], + "field_suburb": ["Parkdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21345], + "status": [true], + "title": ["Elonera Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["120f80e2-5151-44db-a573-6233169dcfd5"] + }, + "sort": ["Elonera Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20085:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elphinstone-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at Elphinstone Primary School, including refurbishing classrooms and facilities in poor condition.\u00a0\u00a0", + "We refurbished\u00a0the toilets to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $221,000 was allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $63,120" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Elphinstone Primary School" + ], + "field_latitude": ["-37.10506", "-37.1050562"], + "field_latitude_longitude_value": ["-37.10506,144.33308"], + "field_latitude_value": ["-37.10506"], + "field_longitude": ["144.33308", "144.333083"], + "field_longitude_value": ["144.33308"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3448"], + "field_project_code": ["01-220", "D1-01-220"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2019", "Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["26 Wright St"], + "field_suburb": ["Elphinstone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20085], + "status": [true], + "title": ["Elphinstone Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d61a14c8-8d83-438d-835e-153855b6941c"] + }, + "sort": ["Elphinstone Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20139:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elsternwick-primary-school"], + "changed": ["2023-09-11T14:39:55+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and resurfaced the oval.", + "We are building an indoor inclusive learning space, including new sensory equipment.", + "We are partially refurbishing the hall and gym student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $324,165.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In the 2022\u201323 State Budget the project received $469,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Elsternwick Primary School." + ], + "field_latitude": ["-37.891877550003", "-37.8905368", "-37.891416"], + "field_latitude_longitude_value": [ + "-37.891877550003,144.996948200054" + ], + "field_latitude_value": ["-37.891877550003"], + "field_longitude": ["144.996948200054", "144.9973795", "144.997293"], + "field_longitude_value": ["144.996948200054"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3186"], + "field_project_code": ["01-2870", "D1-01-2870", "D2-01-2870"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2023", "Q4 2023", "Q4 2023"], + "field_start_date": ["Q4 2020", "Q2 2021", "Q2 2022"], + "field_status_name": ["Complete", "Construction", "Construction"], + "field_street_address": ["Murphy St"], + "field_suburb": ["Brighton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20139], + "status": [true], + "title": ["Elsternwick Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["46bdf38c-ecd7-4059-b5d3-391617639984"] + }, + "sort": ["Elsternwick Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20788:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eltham-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at the school. We will upgrade and modernise the science areas to give students better learning opportunities.", + "We redeveloped Eltham High School's sports facilities\u00a0in partnership with Nillumbik Shire Council. We\u00a0installed lighting at the sports oval and increased the number of multi-sport courts to include six tennis courts and four netball courts. We also resurfaced two existing outdoor netball/basketball courts.\u00a0 To complement these facilities we also built\u00a0new clubrooms with unisex change facilities, a canteen, storage, undercover area, and improved car parking for the sports complex. For more information visit the Shared Facilities Fund. \u200b \u00a0 Previous Projects A previous modernisation project\u00a0was completed at Eltham High School\u00a0in two stages.\u00a0 Stage 1\u00a0delivered an update to the performance arts centre, including the installation of ranked seating, completion of audio visual fitout, curtains and acoustic treatment. This was completed in August 2016. Stage 2\u00a0redeveloped the school's science and maths facilities. It also included general facility improvement across the whole school, including new carpets, painting and blinds in learning spaces, renovations of toilet blocks in Block F, new fencing, a locker pavilion and landscaping around Block A.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $8.94 million", + "In the 2017-18 State Budget, $1.5 million was allocated to this school for capital works and $3.37 million through the Shared Facilities Fund. In the 2016-17 State Budget, $12 million was allocated to schools for planning, including Eltham High School." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Eltham High School" + ], + "field_latitude": ["-37.724079"], + "field_latitude_longitude_value": ["-37.724079,145.142166"], + "field_latitude_value": ["-37.724079"], + "field_longitude": ["145.142166"], + "field_longitude_value": ["145.142166"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["D1-01-7805", "01-7805"], + "field_project_title": [ + "Upgrade and Modernisation - Science Facilities", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2026", "Q2 2020"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["30-60 Withers Way"], + "field_suburb": ["Eltham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20788], + "status": [true], + "title": ["Eltham High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d58ffaa7-c675-4cda-8595-b3478755ab27"] + }, + "sort": ["Eltham High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20272:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eltham-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0toilets at Eltham North Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $450,000." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Eltham North Primary School" + ], + "field_latitude": ["-37.6997"], + "field_latitude_longitude_value": ["-37.6997,145.15086"], + "field_latitude_value": ["-37.6997"], + "field_longitude": ["145.15086"], + "field_longitude_value": ["145.15086"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["01-4212"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["35-47 Wattletree Rd"], + "field_suburb": ["Eltham North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20272], + "status": [true], + "title": ["Eltham North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["65eec766-98b1-4ebd-a6f0-b98cee0ac2a7"] + }, + "sort": ["Eltham North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20072:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eltham-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created a nature play space for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $112,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Eltham Primary School." + ], + "field_latitude": ["-37.7252431366604"], + "field_latitude_longitude_value": [ + "-37.7252431366604,145.151789208891" + ], + "field_latitude_value": ["-37.7252431366604"], + "field_longitude": ["145.151789208891"], + "field_longitude_value": ["145.151789208891"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["01-209"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Dalton St"], + "field_suburb": ["Eltham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20072], + "status": [true], + "title": ["Eltham Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c0e1a7fd-28b7-4454-9e11-c25acc540b65"] + }, + "sort": ["Eltham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20789:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elwood-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We developed an arts garden to improve the learning environment and character of the school.", + "We built\u00a0a 3-storey modular classroom block.\u200b", + "We upgraded Elwood College. A new 2-storey building\u00a0includes learning spaces for Visual Arts, Technology and Food Technology as well as a VCE centre with direct connection to the library and resource centre. A centrally-located library and resource area\u00a0has been\u00a0connected to the existing 3-storey building via a bridge. The 3-storey building (Block G) now\u00a0houses a reconfigured administration area\u00a0and\u00a0a language centre. It has been renovated to provide more flexible learning spaces for Years 7 to 9. Outside works now provide new hardcourts, a courtyard, seating, landscaping and covered access to the science and technology building.\u200b\u200b\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $280,165.", + "The 2018\u201319 State Budget allocated $600,000 to the school.", + "The 2015\u201316 State Budget allocated $10.23 million to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Elwood College." + ], + "field_latitude": ["-37.8823668", "-37.88154"], + "field_latitude_longitude_value": ["-37.8823668,144.9853798"], + "field_latitude_value": ["-37.8823668"], + "field_longitude": ["144.9853798", "144.97881"], + "field_longitude_value": ["144.9853798"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3184"], + "field_project_code": ["D2-01-7810", "D1-01-7810", "01-7810"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q4 2022", "Q3 2019", "Q2 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["101 Glenhuntly Rd"], + "field_suburb": ["Elwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20789], + "status": [true], + "title": ["Elwood College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b5ddd310-89d4-476a-9add-f69e4063f149"] + }, + "sort": ["Elwood College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20240:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/elwood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We delivered\u00a0a new architect-designed modular building to Elwood Primary School to replace older classrooms. The new\u00a0building will feature classrooms, a breakout area and toilet facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $328,296 from the Minor Capital Works Fund.", + "In the 2017-18 State Budget, $1,741,000 was allocated to the school" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Elwood Primary School" + ], + "field_latitude": ["-37.881505", "-37.87958"], + "field_latitude_longitude_value": ["-37.881505,144.988364"], + "field_latitude_value": ["-37.881505"], + "field_longitude": ["144.988364", "144.99331"], + "field_longitude_value": ["144.988364"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3184"], + "field_project_code": ["D1-01-3942", "01-3942"], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2025", "Q4 2018"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Scott Street"], + "field_suburb": ["Elwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20240], + "status": [true], + "title": ["Elwood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["49eeede0-97ec-4a2b-9b18-a1eb91d83452"] + }, + "sort": ["Elwood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20886:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/emerald-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade and modernise this college. We will complete the remaining stages of the school's master plan.", + "We upgraded Block A, Block C (admin and library) and Block D. We undertook maintenance and roof works to Block E. The upgrades help the school to: create a dynamic teaching environment with spaces that offer flexibility for team teaching remove\u00a0congestion in corridors by providing designated locker spaces create welcoming and inviting staff hubs that foster creativity and community encourage staff and students\u2019 wellbeing", + "\u200b\u200bWe\u00a0upgraded and modernised\u00a0Emerald Secondary College. \u200b These works\u00a0developed an\u00a0Inclusion and Learning Centre, modernised\u00a0the library and redeveloped the\u00a0technology and performing arts areas.\u00a0We delivered an enlarged and re-equipped canteen and expanded the facilities within the performing arts building.\u00a0 The project also included the repair and upgrade of storm water drains, pipes, roofs, windows and doors.\u00a0The upgraded facilities ensures\u00a0that all students' physical, intellectual, mental health, social and overall wellbeing needs are supported.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $8.77 million", + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $558,000 in planning funding. In the 2020-21 State Budget, the school received $5.018 million.", + "In the 2015-16 State Budget, $1.5 million was allocated to the school. A further $500,000 was allocated to the school from the 2017-18 Planned Maintenance Program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Emerald Secondary College" + ], + "field_latitude": ["-37.953716278076172", "-37.92459"], + "field_latitude_longitude_value": [ + "-37.953716278076172,145.55406188964844" + ], + "field_latitude_value": ["-37.953716278076172"], + "field_longitude": ["145.55406188964844", "145.45873"], + "field_longitude_value": ["145.55406188964844"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3782"], + "field_project_code": ["D2-01-8707", "D1-01-8707", "01-8707"], + "field_project_title": [ + "Upgrade and Modernisation - 2023\u201324 Funding", + "Upgrade and Modernisation \u2013 Blocks A, C and D", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2026", "Q1 2023", "Q1 2018"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["425 Belgrave-gembrook Rd"], + "field_suburb": ["Emerald"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20886], + "status": [true], + "title": ["Emerald Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["88ca0f80-74e3-46ff-88e4-ebec859cd0c8"] + }, + "sort": ["Emerald Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20402:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/emerson-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We developed a master plan for the school with the initial project funding. With the recent funding, we will deliver this master plan and build new administration and learning areas, and a library.\u00a0 This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget, $17.2 million was allocated to schools across the State for planning. This included funding for this school. From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $1.56 million. in planning funding. In the 2020-21 State Budget, the school received $14.04 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Emerson School" + ], + "field_latitude": ["-37.9702"], + "field_latitude_longitude_value": ["-37.9702,145.20786"], + "field_latitude_value": ["-37.9702"], + "field_longitude": ["145.20786"], + "field_longitude_value": ["145.20786"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["01-4918"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Construction"], + "field_street_address": ["1430 Heatherton Road"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20402], + "status": [true], + "title": ["Emerson School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["05babe76-d146-4245-aa2c-8d50b857f6d1"] + }, + "sort": ["Emerson School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35066:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/emma-mclean-kindergarten-and-daycare"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-19T11:01:14+10:00"], + "field_about_project_processed": [ + "We are expanding Emma McLean Kindergarten and Daycare with a new 3-room modular building. This will give children better spaces to learn and provide up to 75 extra kindergarten places for local families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the Victorian Government and Hobsons Bay City Council. The Victorian Government has invested $9.95 million to support 5 projects. These will deliver up to 379 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Emma McLean Kindergarten and Daycare" + ], + "field_latitude": ["-37.82752819"], + "field_latitude_longitude_value": ["-37.82752819,144.8863121"], + "field_latitude_value": ["-37.82752819"], + "field_longitude": ["144.8863121"], + "field_longitude_value": ["144.8863121"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3015"], + "field_project_code": ["15-1413"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular Kinder" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["71 Hope Street"], + "field_suburb": ["Spotswood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35066], + "status": [true], + "title": ["Emma McLean Kindergarten and Daycare"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2b691454-eb0e-4a29-95f7-1dd4546b9383"] + }, + "sort": ["Emma McLean Kindergarten and Daycare"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21037:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/emmanuel-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Emmanuel College to build a new library and staff building at the Point Cook campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 was allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Emmanuel College" + ], + "field_latitude": ["-37.83205"], + "field_latitude_longitude_value": ["-37.83205,144.84161"], + "field_latitude_value": ["-37.83205"], + "field_longitude": ["144.84161"], + "field_longitude_value": ["144.84161"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["02-1654"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Foxwood Drive"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21037], + "status": [true], + "title": ["Emmanuel College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["71df76d7-45de-4559-955c-1b7bf0a9531e"] + }, + "sort": ["Emmanuel College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21110:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/emmanuel-college-inc-warrnambool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to refurbish 2 science laboratories, create one new science lab, and convert 2 learning areas into a further 2 additional science labs. We also helped refurbish and create general learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Emmanuel College Inc. (Warrnambool)." + ], + "field_latitude": ["-38.3708489"], + "field_latitude_longitude_value": ["-38.3708489,142.4778474"], + "field_latitude_value": ["-38.3708489"], + "field_longitude": ["142.4778474"], + "field_longitude_value": ["142.4778474"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["02-33"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["37 Ardlie St"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21110], + "status": [true], + "title": ["Emmanuel College Inc. (Warrnambool)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["230e7ad4-cdf7-46e8-9ab7-58bbf20bc814"] + }, + "sort": ["Emmanuel College Inc. (Warrnambool)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20693:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/endeavour-hills-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new specialist school in Endeavour Hills. It opened in 2022 and helps the growing local population get great education close to home.\u00a0This school provides educational programs for students with disability and high needs who have autism or an intellectual disability ranging from mild to profound.\u00a0The school welcomes students aged from 5 to 18. Susan Coull was appointed as the first principal of the school. Endeavour Hills Specialist School was chosen as the school name following community consultation. We consulted with the community on the School's name from 11 June to 25 June 2021. The school is named after the suburb it is located in. Facilities The school has the following facilities: two early years learning neighbourhoods two middle years learning neighbourhoods a senior years learning neighbourhood community hub building with a competition-grade gymnasium administration building an outdoor play full-sized court three outdoor play half-sized courts a Victoria Federation-sized soccer pitch car parking bus turning circle and connected bus shelter dedicated drop-off and pick-up zone four mini-bus parking bays. The administration building has space for administration, library and staff facilities, with opportunity for the school to facilitate staff training and conferences. The community hub building includes a competition-grade physical education gymnasium and associated amenities, a fitness area, space for performing music and art, a multi-purpose space, a food preparation kitchen and dining, and student and staff amenities.\u00a0 The landscaping of the school encompasses a series of outdoor learning areas and play spaces connected with each learning community building, offering a diverse range of activities, including half-sized hardcourts. Elsewhere on the site are a full-size hardcourt and a sports oval. Each learning neighbourhood includes two specialist spaces: a dry lab and a wet lab. The dry lab supports media and communications, drama and physical activities. The wet lab is for art, science, home-craft and technology studies. Enrolments For more information about enrolling at the school, please email endeavour.hills.ss@education.vic.gov.au" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the State for planning. This includes funding for the school.In 2020, the school shared in $438.6 million of funding for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Endeavour Hills Specialist School." + ], + "field_latitude": ["-37.978875"], + "field_latitude_longitude_value": ["-37.978875,145.24343"], + "field_latitude_value": ["-37.978875"], + "field_longitude": ["145.24343"], + "field_longitude_value": ["145.24343"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/EndeavourHillsSS_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["01-5590"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["12-38 Amalfi Dr"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20693], + "status": [true], + "title": ["Endeavour Hills Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["92e3b557-d6d9-4402-8525-9f66e4aa8ec6"] + }, + "sort": ["Endeavour Hills Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21264:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/enid-rogers-jubilee-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "UnitingCare Ballarat built two new kinder rooms, a kitchen, admin space, toilet facilities and public meeting space for community use.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015-16 Children's Facilities Capital Program $345,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Enid Rogers Jubilee Kindergarten" + ], + "field_latitude": ["-37.54299"], + "field_latitude_longitude_value": ["-37.54299,143.83116"], + "field_latitude_value": ["-37.54299"], + "field_longitude": ["143.83116"], + "field_longitude_value": ["143.83116"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["15-41"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Forest Street"], + "field_suburb": ["Wendouree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21264], + "status": [true], + "title": ["Enid Rogers Jubilee Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f38c58c-741e-4a8e-b1f0-643e1c67ce02"] + }, + "sort": ["Enid Rogers Jubilee Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33254:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/epalock-crescent-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-06-07T16:07:09+10:00"], + "field_about_project_processed": [ + "We\u2019re rebuilding Epalock Crescent Kindergarten in partnership with Brimbank City Council. The new 2-room modular kindergarten will be built at the current site. It will offer an extra 33 approved kindergarten places for local children. The existing building will be demolished in 2024 to make way for the new building which will open in Term 1, 2025. Children enrolled at Epalock Crescent Kindergarten in 2024 will be offered a place at a nearby centre. For further information about enrolments Contact Brimbank City Council by email kindergarten@brimbank.vic.gov.au or visit the Brimbank City Council website (https://www.brimbank.vic.gov.au/childcare-and-education/kindergarten)" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the State Government and Brimbank City Council. The Victorian Government has provided $13.35 million in funding to support 6 projects that will deliver 448 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Epalock Crescent Kindergarten" + ], + "field_latitude": ["-37.76087804"], + "field_latitude_longitude_value": ["-37.76087804,144.8058859"], + "field_latitude_value": ["-37.76087804"], + "field_longitude": ["144.8058859"], + "field_longitude_value": ["144.8058859"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["15-ECK"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten" + ], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["15 Epalock Crescent"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33254], + "status": [true], + "title": ["Epalock Crescent Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["fbe3bd35-287f-4476-bc8a-92be047b17b2"] + }, + "sort": ["Epalock Crescent Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20039:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eppalock-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a sensory play space focused around a sandpit and free play environment with interactive sculptural elements. The project includes decking, a water feature, orchard and shade sails." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Eppalock Primary School" + ], + "field_latitude": ["-36.841773"], + "field_latitude_longitude_value": ["-36.841773,144.387727"], + "field_latitude_value": ["-36.841773"], + "field_longitude": ["144.387727"], + "field_longitude_value": ["144.387727"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["01-1788"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["149 Patons Rd"], + "field_suburb": ["Axe Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20039], + "status": [true], + "title": ["Eppalock Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["83a5176d-5cb7-4d8a-a76f-d3e92fef3fab"] + }, + "sort": ["Eppalock Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20790:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/epping-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a\u00a0building with\u00a0general purpose classrooms and a wellbeing area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget $3 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Epping Secondary College" + ], + "field_latitude": ["-37.646610"], + "field_latitude_longitude_value": ["-37.646610,145.046814"], + "field_latitude_value": ["-37.646610"], + "field_longitude": ["145.046814"], + "field_longitude_value": ["145.046814"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3076"], + "field_project_code": ["01-7813"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Mcdonalds Rd"], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20790], + "status": [true], + "title": ["Epping Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0aaedfb3-9649-4f44-9a64-de5b181544e8"] + }, + "sort": ["Epping Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20095:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/epsom-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most.", + "\u200bWe\u00a0undertook\u00a0a major modernisation project, completed in the first half of 2018,\u00a0to replace school portables with purpose-built facilities.\u00a0 The project won\u00a0the category for\u00a0'Best School Project between $1 million and $5 million' at the\u00a02018 Victorian\u00a0School\u00a0Design Awards.\u00a0 New facilities include a multi-purpose hall, and a main building with: \u200b reception and admin areas,\u00a0 library, meeting rooms,\u00a0 breakout spaces and quiet areas,\u00a0 art room,\u00a0 flexible teaching and learning spaces, canteen\u200b.\u00a0\u00a0 View transcript", + "We used this funding to create an inclusive and sensory learning space.\u200b", + "We constructed a shade cover over the school's basketball courts and delivered a new sports storage shed." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $573,000.", + "In the 2015\u201316 State Budget, $5.7 million was allocated to the school.", + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund.", + "In the 2019\u201320 State Budget, the school received $500,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Epsom Primary School" + ], + "field_latitude": [ + "-36.703338623046875", + "-36.7051", + "-36.7051", + "-36.70535" + ], + "field_latitude_longitude_value": [ + "-36.703338623046875,144.30870056152344" + ], + "field_latitude_value": ["-36.703338623046875"], + "field_longitude": [ + "144.30870056152344", + "144.31438", + "144.31438", + "144.31434" + ], + "field_longitude_value": ["144.30870056152344"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": [ + "D3-01-2367", + "01-2367", + "D1-01-2367", + "D2-01-2367" + ], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": ["TBC", "Q2 2018", "Q1 2018", "Q3 2020"], + "field_start_date": ["Q4 2020", "Q2 2019"], + "field_status_name": ["Planning", "Complete", "Complete", "Complete"], + "field_street_address": ["Howard St"], + "field_suburb": ["Epsom"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20095], + "status": [true], + "title": ["Epsom Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["11f2763f-8102-4847-b6e6-c7a735067656"] + }, + "sort": ["Epsom Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20091:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eskdale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We replaced roof sheeting, guttering and spouting. We also undertook minor ceiling repairs to the school's main building. The work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We refurbished a toilet block, including roof works, to provide modern and comfortable amenities for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $193,526", + "In the 2022\u201323 State Budget the project received $120,397 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $340,165." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Eskdale Primary School." + ], + "field_latitude": ["-36.465266", "-36.465266", "-36.4652767"], + "field_latitude_longitude_value": ["-36.465266,147.251247"], + "field_latitude_value": ["-36.465266"], + "field_longitude": ["147.251247", "147.251247", "147.2510372"], + "field_longitude_value": ["147.251247"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3701"], + "field_project_code": ["D2-01-2318", "D1-01-2318", "01-2318"], + "field_project_title": [ + "Inclusive Schools Fund - Round 9", + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2023", "Q3 2022"], + "field_start_date": ["Q4 2023", "Q2 2022", "Q4 2020"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["3790 Omeo Hwy"], + "field_suburb": ["Eskdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20091], + "status": [true], + "title": ["Eskdale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a40ac43a-e01f-4916-84f1-55413e09a7ac"] + }, + "sort": ["Eskdale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22604:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/essendon-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at an interim site at\u00a0Essendon Keilor College.It provides new kindergarten places in an area experiencing high demand for kindergarten services.Building the kindergarten at an interim site allowed us to quickly deliver local kindergarten places in time for the beginning of Term 1 2023.The interim kindergarten includes two kindergarten rooms offering 66 places for local 3- and 4-year-old children. It also includes a Maternal and Child Health room and a dedicated outdoor learning space.This kindergarten supports the delivery of\u00a0Free Kinder for 3- and 4-year-olds across Victoria." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 Budget, this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Essendon Interim Kindergarten." + ], + "field_latitude": ["-37.75466022"], + "field_latitude_longitude_value": ["-37.75466022,144.9040501"], + "field_latitude_value": ["-37.75466022"], + "field_longitude": ["144.9040501"], + "field_longitude_value": ["144.9040501"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Building the interim kindergarten allowed us to quickly deliver new kindergarten places in an area experiencing high demand for kindergarten services. It meant that families\u00a0could\u00a0access a local kindergarten service from the beginning of Term 1, 2023.", + "It\u2019s important for the students at Essendon Keilor College to have open outdoor spaces to enjoy for learning and recreation. The school space used for the interim kindergarten will be returned to the school as soon as we are able.", + "Kindergarten applications are allocated by Moonee Valley City Council through a\u00a0 Central Registration Service\u00a0Portal . For further information relating to this process, please contact the Moonee Valley City Council Central Registration Team by email\u00a0 kinderenrol@mvcc.vic.gov.au \u00a0or call\u00a0 9343 8888 .", + "No. The kindergarten has a separate entrance to Essendon Keilor College . The facility has been designed to early childhood regulations and includes an engaging external learning space and boundary fencing for added privacy. The kindergarten is maintained and operated as an entirely separate service.", + "No. Kindergarten children enjoy their own dedicated play space. The entire kindergarten facility is screened by a tall fence and landscaped for added privacy.", + "The car park for the interim kindergarten is located at 29 Thomson Street (Corner of Thomson and McCracken Streets). The entry is from Thomson Street and exit via McCracken Street.", + "In 2022 we identified the site at 2-4 McCracken Street as a potential location. The site is owned by the Minister for Education and is subject to a restrictive covenant. In early 2023 the Department applied to Moonee Valley City Council to vary the restrictive covenant to build a kindergarten.\u00a0 Following objections from beneficiaries to vary the covenant, the Department\u2019s application was denied. The department is currently considering what next steps are available.", + "We held an information session on Wednesday, 26 April 2023. The purpose of this session was to inform beneficiaries and answer questions about a proposed site for the permanent kindergarten at 2-4 McCracken Street, Essendon. This site is owned by the Minister for Education and is currently used for car parking. If you\u2019d like to receive updates about the project you can sign up to our mailing list ." + ], + "field_paragraph_accordion_name": [ + "Why did you build an interim kindergarten at Essendon Keilor College?", + "Why not just make the interim location the permanent site for the kinder?", + "How do I enrol my child?", + "Do kindergarten children and their families need to access the kindergarten via the secondary school?", + "Do the kindergarten play areas and secondary school outdoor facilities overlap?", + "What car parking facilities are provided?", + "What sites are being considered for the permanent kindergarten?", + "Was there a community information session?" + ], + "field_paragraph_body": [ + "Subscribe\u00a0to our mailing list for updates on this project." + ], + "field_postcode": ["3040"], + "field_project_code": ["15-EKCK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["McCracken St"], + "field_suburb": ["Essendon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22604], + "status": [true], + "title": ["Essendon Interim Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9d64c5be-78d9-47e6-b6da-02890ef6a923"] + }, + "sort": ["Essendon Interim Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20920:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/essendon-keilor-college"], + "changed": ["2023-09-21T14:44:07+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded and provided new facilities at the Essendon and Niddrie campuses of\u00a0Essendon Keilor College (formerly\u00a0Essendon East Keilor District College). This\u00a0included building\u00a0a new science, technology, engineering\u200b and mathematics (STEM) learning centre at\u00a0the Niddrie campus, and expanding and refurbishing a heritage\u00a0assembly hall at Essendon\u00a0for performing arts use. \u00a0 \u200b", + "We upgraded\u00a0and provided new facilities at the Essendon and Niddrie campuses of Essendon Keilor College (formerly Essendon East Keilor District College). At the Niddrie campus, we\u00a0constructed a new STEM learning centre, and undertook significant landscaping to\u00a0better use\u00a0space.", + "We are refurbishing the toilets in the school's library building and making repairs to the ceiling in the men's gym change rooms. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We are continuing our work at this school, and planning a further upgrade to the East Keilor campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $10 million was allocated to the school.", + "In the 2015\u201316 State Budget, $10 million was allocated to the school.", + "In the 2022\u201323 State Budget the project received $287,627 from the Minor Capital Works Fund.", + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Planning" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Essendon Keilor College." + ], + "field_latitude": [ + "-37.75114", + "-37.75114", + "-37.73970794", + "-37.73970794" + ], + "field_latitude_longitude_value": ["-37.75114,144.86624"], + "field_latitude_value": ["-37.75114"], + "field_longitude": [ + "144.86624", + "144.86624", + "144.8697108", + "144.8697108" + ], + "field_longitude_value": ["144.86624"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "Planning" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Essendon Keilor College - Essendon Campus." + ], + "field_postcode": ["3033"], + "field_project_code": [ + "01-8806", + "D1-01-8806", + "D2-01-8806", + "D3-01-8806" + ], + "field_project_title": [ + "Upgrade and Modernisation - Essendon Campus", + "Upgrade and Modernisation - Niddrie Campus", + "Minor Capital Works Fund - Niddrie Campus", + "Planning for an Upgrade and Modernisation \u2013 East Keilor Campus" + ], + "field_q_complete": [ + "Q2 2019", + "Q4 2018", + "Q4 2023", + "Subject to future funding" + ], + "field_start_date": ["Q2 2022", "Q3 2023"], + "field_status_name": [ + "Complete", + "Complete", + "Construction", + "Planning" + ], + "field_street_address": ["Quinn Gr"], + "field_suburb": ["Keilor East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20920], + "status": [true], + "title": ["Essendon Keilor College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8cfd9033-fa00-42ba-92c7-a2f68b9734da"] + }, + "sort": ["Essendon Keilor College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20252:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/essendon-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are replacing the current student toilet block with a new construction to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "\u200bWe\u00a0upgraded\u00a0the school oval: laying synthetic turf and completing associated landscaping works.\u00a0", + "We built\u00a0an inclusive outdoor learning and sensory play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $882,627 from the Minor Capital Works Fund.", + "In the 2018\u201319 State Budget, $411,300 was allocated to the school through the School Pride and Sports Fund. In the 2019\u201320 State Budget, a further $440,621 was allocated to the school through the School Pride and Sports Fund.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Essendon North Primary School" + ], + "field_latitude": ["-37.741516", "-37.741516", "-37.74052"], + "field_latitude_longitude_value": ["-37.741516,144.903193"], + "field_latitude_value": ["-37.741516"], + "field_longitude": ["144.903193", "144.903193", "144.90352"], + "field_longitude_value": ["144.903193"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3041"], + "field_project_code": ["D2-01-4015", "01-4015", "D1-01-4015"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2019", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q4 2018", "Q4 2019"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["112 Keilor Rd"], + "field_suburb": ["Essendon North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20252], + "status": [true], + "title": ["Essendon North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cce9c11d-67bc-4a3a-8f18-008ec6e5f8d6"] + }, + "sort": ["Essendon North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32439:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/essendon-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-04-12T14:49:55+10:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We built a new administration and senior primary learning neighbourhood. We also refurbished existing buildings, including Block A and Block B." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2014-15 State Budget, $4.979 million was allocated to this project. In the 2017-18 State Budget, an additional $766,000 was allocated to this project. The school also received $62,000 in Planned Maintenance Program Funding." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Essendon Primary School" + ], + "field_latitude": ["-37.753095"], + "field_latitude_longitude_value": ["-37.753095,144.921042"], + "field_latitude_value": ["-37.753095"], + "field_longitude": ["144.921042"], + "field_longitude_value": ["144.921042"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3040"], + "field_project_code": ["D1-01-483", "01-483"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q4 2018"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["38 Raleigh Street"], + "field_suburb": ["Essendon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32439], + "status": [true], + "title": ["Essendon Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["ae083190-76c2-4b19-a69c-7d56fa1b4aa8"] + }, + "sort": ["Essendon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20396:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/essex-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded outdoor areas across the school to improve drainage, prevent erosion and improve the amenity of hard surface landscaping across the school.", + "We built a sensory and meditation garden with a wheelchair-height water play feature made from natural materials. The meditation area is\u00a0a raised wooden platform with screens and a thatched roof." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $257,625.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Essex Heights Primary School" + ], + "field_latitude": ["-37.8629613007625", "-37.862991"], + "field_latitude_longitude_value": [ + "-37.8629613007625,145.116470749714" + ], + "field_latitude_value": ["-37.8629613007625"], + "field_longitude": ["145.116470749714", "145.115635"], + "field_longitude_value": ["145.116470749714"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["D1-01-4903", "01-4903"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2022", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["22-30 Essex Rd"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20396], + "status": [true], + "title": ["Essex Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e54b338b-04d8-45eb-8fb0-a53983f112bf"] + }, + "sort": ["Essex Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21360:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Eucalyptus-Parade-Kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Whittlesea City Council to deliver\u00a0a new modular building to Eucalyptus Parade in preparation for the roll-out of subsidised kindergarten for 3-year-olds. The building provides this growing community with an additional 66 kindergarten places." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Eucalyptus Parade Kindergarten" + ], + "field_latitude": ["-37.5391267"], + "field_latitude_longitude_value": ["-37.5391267,144.9946276"], + "field_latitude_value": ["-37.5391267"], + "field_longitude": ["144.9946276"], + "field_longitude_value": ["144.9946276"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Explore more about kindergartens"], + "field_postcode": ["3064"], + "field_project_code": ["15-DEPK"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular Kindergarten Building" + ], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["40 Eucalyptus Pde"], + "field_suburb": ["Donnybrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21360], + "status": [true], + "title": ["Eucalyptus Parade Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4115465b-98c4-42da-8570-f31708c96007"] + }, + "sort": ["Eucalyptus Parade Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23330:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/euroa-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We expanded the bike track as well as the sand and water play areas. The upgrade encourages more social interaction between the children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $82,969 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Euroa Kindergarten" + ], + "field_latitude": ["-36.75216146"], + "field_latitude_longitude_value": ["-36.75216146,145.5731494"], + "field_latitude_value": ["-36.75216146"], + "field_longitude": ["145.5731494"], + "field_longitude_value": ["145.5731494"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3666"], + "field_project_code": ["15-529"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["46A Kirkland Ave"], + "field_suburb": ["Euroa"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23330], + "status": [true], + "title": ["Euroa Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e51f1bb3-d140-406a-8b15-4d27063ffbba"] + }, + "sort": ["Euroa Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20030:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/euroa-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the administration building and student toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Euroa Primary School." + ], + "field_latitude": ["-36.7562595"], + "field_latitude_longitude_value": ["-36.7562595,145.5711229"], + "field_latitude_value": ["-36.7562595"], + "field_longitude": ["145.5711229"], + "field_longitude_value": ["145.5711229"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3666"], + "field_project_code": ["01-1706"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Clifton St"], + "field_suburb": ["Euroa"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20030], + "status": [true], + "title": ["Euroa Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5574f485-795e-4064-9599-e72ca6584aac"] + }, + "sort": ["Euroa Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20791:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/euroa-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. Euroa Secondary College\u00a0is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget $950,000 was allocated to the school. In the 2019-20 State Budget, the school received $3.178 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Euroa Secondary College" + ], + "field_latitude": ["-36.757610"], + "field_latitude_longitude_value": ["-36.757610,145.565125"], + "field_latitude_value": ["-36.757610"], + "field_longitude": ["145.565125"], + "field_longitude_value": ["145.565125"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3666"], + "field_project_code": ["01-7820"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["26 Campbell St"], + "field_suburb": ["Euroa"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20791], + "status": [true], + "title": ["Euroa Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["91331698-ee3b-4844-a587-ebfe5e839e27"] + }, + "sort": ["Euroa Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21339:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/evesham-road-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Evesham Road Kindergarten\u00a0upgraded\u00a0their outdoor area to create a space full of discovery and learning, as well as matching the facilities natural interior environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $152,711 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Evesham Road Kindergarten" + ], + "field_latitude": ["-37.96977"], + "field_latitude_longitude_value": ["-37.96977,145.06823"], + "field_latitude_value": ["-37.96977"], + "field_longitude": ["145.06823"], + "field_longitude_value": ["145.06823"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["15-885"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["75 Evesham Road"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21339], + "status": [true], + "title": ["Evesham Road Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["98203a4b-28d7-4c40-9e68-d6660bb543bf"] + }, + "sort": ["Evesham Road Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28655:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ewing-kindergarten-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor play area. Our work will include new edging and retaining walls around garden areas to make the playground safer. We will also add new sandpits and equipment to make the playground more accessible for children of all abilities. The changes will help the kinder offer new experiences so that children can learn about sustainability and Indigenous culture." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $112,610.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ewing Kindergarten Inc." + ], + "field_latitude": ["-37.87290469"], + "field_latitude_longitude_value": ["-37.87290469,145.0493257"], + "field_latitude_value": ["-37.87290469"], + "field_longitude": ["145.0493257"], + "field_longitude_value": ["145.0493257"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3145"], + "field_project_code": ["elc-806"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["32A Manning Rd"], + "field_suburb": ["Malvern East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28655], + "status": [true], + "title": ["Ewing Kindergarten Inc."], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["cebd5c08-e6ec-4708-9c34-a575e5ef805d"] + }, + "sort": ["Ewing Kindergarten Inc."] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20190:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/exford-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade and modernise the school, completing the remaining stages of the school's master plan.\u00a0 Works include a competition grade gym and double-storey learning centre which will\u00a0house\u00a0art, music and general-purpose classrooms. We will refurbish and repurpose relocatable classrooms to include a library and STEM spaces.", + "We upgraded Exford Primary School, including\u00a0new classrooms, administration and\u00a0school entry as well as staff facilities\u00a0and amenities.", + "\u200b\u200bWe funded this project, delivered by\u00a0the water authority, which provided the school with permanent sewer and town water connections." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $25.325 million.", + "In the 2019\u201320 State Budget, the school received $6.246 million.", + "In 2020, a further $2.42 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Exford Primary School" + ], + "field_latitude": ["-37.7431759638661", "-37.74528"], + "field_latitude_longitude_value": [ + "-37.7431759638661,144.535936795255" + ], + "field_latitude_value": ["-37.7431759638661"], + "field_longitude": ["144.535936795255", "144.55873"], + "field_longitude_value": ["144.535936795255"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["D2-01-3423", "01-3423", "D1-01-3423"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Upgrade and Modernisation - Water and Sewerage Works" + ], + "field_q_complete": ["Q3 2024", "Q3 2022", "Q3 2022"], + "field_start_date": ["Q4 2020", "Q2 2019"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["1137 Exford Rd"], + "field_suburb": ["Exford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20190], + "status": [true], + "title": ["Exford Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["55e45a08-b5a0-418e-988f-a6627b020634"] + }, + "sort": ["Exford Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21431:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eynesbury-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0built a new kinder in Eynesbury. The kinder is\u00a0on the same site as Eynesbury Primary School.\u00a0 The new centre provides kinder places and includes a maternal child health office." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019-2020 Children's Facilities Capital Program $1,695,872 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Eynesbury Early Learning Centre" + ], + "field_latitude": ["-37.789557"], + "field_latitude_longitude_value": ["-37.789557,144.545930"], + "field_latitude_value": ["-37.789557"], + "field_longitude": ["144.545930"], + "field_longitude_value": ["144.545930"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["ELC-ES"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Eynesbury Rd"], + "field_suburb": ["Eynesbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21431], + "status": [true], + "title": ["Eynesbury Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ff266652-9629-40c8-bb8a-64a2987b3e23"] + }, + "sort": ["Eynesbury Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20574:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eynesbury-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Eynesbury. It opened in 2021 and help the growing local population get great education close to home. Your new school includes the following facilities: 2 learning neighbourhoods arts, science and food technology building administration building outdoor play courts performing arts and physical education building sports field.\u00a0 We supported the build of\u00a0a\u00a0kinder\u00a0on the same site as the\u00a0school. This may\u00a0help local\u00a0children make\u00a0a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children. Phillip Coloca has been appointed as the first principal.\u00a0Enrolments are now open for Prep to Year 6.\u00a0 Further information on the school, including enrolment,\u00a0can be found on its\u00a0official Facebook page. School name Eynesbury\u00a0Primary School\u00a0was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. The school is named after the suburb it is located in. This is the first new primary school to be built in Eynesbury. We consulted with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was provided in the 2017\u201318 State Budget to buy land in this area for a new school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Eynesbury Primary School." + ], + "field_latitude": ["-37.790356"], + "field_latitude_longitude_value": ["-37.790356,144.547715"], + "field_latitude_value": ["-37.790356"], + "field_longitude": ["144.547715"], + "field_longitude_value": ["144.547715"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["01-5311"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["756 Eynesbury Rd"], + "field_suburb": ["Eynesbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20574], + "status": [true], + "title": ["Eynesbury Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e60de2f0-3562-4f30-9f86-23bc1c83f1aa"] + }, + "sort": ["Eynesbury Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21116:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fcj-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to refurbish learning areas, secondary school specialist spaces and student amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020-21 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at FCJ College" + ], + "field_latitude": ["-36.5527342"], + "field_latitude_longitude_value": ["-36.5527342,145.9754884"], + "field_latitude_value": ["-36.5527342"], + "field_longitude": ["145.9754884"], + "field_longitude_value": ["145.9754884"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3672"], + "field_project_code": ["02-384"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["36 Arundel Street"], + "field_suburb": ["BENALLA"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21116], + "status": [true], + "title": ["FCJ College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7195b002-1ed1-4fd6-90d4-d83b1780fec3"] + }, + "sort": ["FCJ College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21362:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/froebel-carlton-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build Australia's first not-for-profit workplace early childhood education and care service. The new FROEBEL Carlton Early Learning Centre is a sustainable, multi-level, engineered timber building. It provides employees and students of the University of Melbourne, and employees of the university's innovation precinct 'Melbourne Connect', with kindergarten and childcare. Additional capacity will be available to the wider community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $1 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at FROEBEL Carlton Early Learning Centre." + ], + "field_latitude": ["-37.800090789794922"], + "field_latitude_longitude_value": [ + "-37.800090789794922,144.96708679199219" + ], + "field_latitude_value": ["-37.800090789794922"], + "field_longitude": ["144.96708679199219"], + "field_longitude_value": ["144.96708679199219"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/VSDA_Webtile_FROEBELCarlton.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3053"], + "field_project_code": ["15-FCELC"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["700 Swanston St"], + "field_suburb": ["Carlton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21362], + "status": [true], + "title": ["FROEBEL Carlton Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3df6b81d-548d-4e17-8fd9-ea99d4483bb3"] + }, + "sort": ["FROEBEL Carlton Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23315:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/froebel-fitzroy-north-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We refurbished the space by updating the rubber areas and timber decking. We refreshed the turf and irrigation system and added new plants. We also transformed one of the sandpits into a mud pit.", + "We replaced the roof and box gutter." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $69,990 was allocated to the project.", + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $54,061 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at FROEBEL Fitzroy North Early Learning Centre" + ], + "field_latitude": ["-37.77870976"], + "field_latitude_longitude_value": ["-37.77870976,144.9829926"], + "field_latitude_value": ["-37.77870976"], + "field_longitude": ["144.9829926"], + "field_longitude_value": ["144.9829926"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3068"], + "field_project_code": ["D1-15-5395", "15-5395"], + "field_project_title": [ + "Building Blocks Improvement Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2023", "Q2 2023"], + "field_start_date": ["Q4 2022", "Q1 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["138 Barkly St"], + "field_suburb": ["Fitzroy North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23315], + "status": [true], + "title": ["FROEBEL Fitzroy North Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7210da70-2156-4906-a38f-5c89ed8fb71b"] + }, + "sort": ["FROEBEL Fitzroy North Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20126:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fairfield-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0facilities to accommodate enrolment growth at Fairfield Primary School. The new facilities, which\u00a0include a\u00a0two-storey building next to the main campus on Wingrove Street,\u00a0allow for\u00a0an extra\u00a0200 local\u00a0students. We\u00a0also demolished old classrooms at the Langridge Street campus, and\u00a0replaced them\u00a0with landscaped play areas.\u00a0", + "\u200bWe have upgraded and modernised\u00a0facilities at Fairfield Primary School to accommodate enrolment growth.\u200b\u200b We\u00a0demolished an existing classroom building next to the main administration building and replaced it with a\u00a0new, two-storey permanent modular building. It is\u00a0the home of six new learning spaces, a common area for students to gather,\u00a0toilets and a lift. This project, designed by Fleetwood and NBRS Architecture, was\u00a0the winner of 'Best Primary Project'\u00a0in the2019 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $12 million was allocated to schools across the state for planning. This included funding for Fairfield Primary School. In the 2019-20 State Budget, the school received $7 million.", + "In the 2017-18 State Budget Update, $2.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Fairfield Primary School" + ], + "field_latitude": ["-37.778141"], + "field_latitude_longitude_value": ["-37.778141,145.021072"], + "field_latitude_value": ["-37.778141"], + "field_longitude": ["145.021072"], + "field_longitude_value": ["145.021072"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3078"], + "field_project_code": ["01-2711", "D1-01-2711"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2 and 3", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q2 2021", "Q1 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Langridge Street"], + "field_suburb": ["Fairfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20126], + "status": [true], + "title": ["Fairfield Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["334d4b86-0d2d-4948-a0e8-06abc306212e"] + }, + "sort": ["Fairfield Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20792:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fairhills-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including the auditorium, and the science and technology facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $8.071 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Fairhills High School" + ], + "field_latitude": ["-37.87321"], + "field_latitude_value": ["-37.886772155761719"], + "field_longitude": ["145.259037"], + "field_longitude_value": ["145.2479248046875"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3180"], + "field_project_code": ["01-7823"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Scoresby Road"], + "field_suburb": ["Knoxfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20792], + "status": [true], + "title": ["Fairhills High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["73143448-fc5d-4355-92f0-e1ee4e4df31c"] + }, + "sort": ["Fairhills High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20397:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fairhills-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are installing a new full-size basketball/multipurpose court with a shade structure to provide a shaded outdoor sports area at the school.", + "We are undertaking repairs to the school's sewerage and stormwater systems. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $496,125.", + "In the 2022\u201323 State Budget the project received $98,509 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Fairhills Primary School" + ], + "field_latitude": ["-37.8696", "-37.8696"], + "field_latitude_longitude_value": ["-37.8696,145.264799"], + "field_latitude_value": ["-37.8696"], + "field_longitude": ["145.264799", "145.264799"], + "field_longitude_value": ["145.264799"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["01-4906", "D1-01-4906"], + "field_project_title": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund \u2013 2022\u201323 State Budget" + ], + "field_q_complete": ["Q1 2024", "Q4 2023"], + "field_start_date": ["Q4 2020", "Q2 2022"], + "field_status_name": ["Construction", "Construction"], + "field_street_address": ["Manuka Dr"], + "field_suburb": ["Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20397], + "status": [true], + "title": ["Fairhills Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5d2150f2-08ce-4198-8466-9cb2778626d2"] + }, + "sort": ["Fairhills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21283:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fairy-hills-kindergarten-association-inc"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bFairy Hills Kindergarten upgraded its building to provide all-abilities access for indoor and outdoor play. \u00a0 \u200b \u00a0 The works provided a seamless, fully accessible connection between indoor and outdoor play spaces, with improved bathrooms, art and water stations. The inclusive playground allows children of all ability levels to play together using inclusive and adaptive play equipment.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Fairy Hills Kindergarten Association Inc" + ], + "field_latitude": ["-37.77825"], + "field_latitude_longitude_value": ["-37.77825,145.03992"], + "field_latitude_value": ["-37.77825"], + "field_longitude": ["145.03992"], + "field_longitude_value": ["145.03992"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3079"], + "field_project_code": ["15-4807"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Thyer Rd"], + "field_suburb": ["Ivanhoe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21283], + "status": [true], + "title": ["Fairy Hills Kindergarten Association Inc"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["90408d08-dce6-4855-89dc-858c66545440"] + }, + "sort": ["Fairy Hills Kindergarten Association Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20467:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/falls-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised this school. We worked with school leaders to ensure this work helped them achieve their educational goals." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.453 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Falls Creek Primary School" + ], + "field_latitude": ["-36.862995147705078"], + "field_latitude_longitude_value": [ + "-36.862995147705078,147.27940368652344" + ], + "field_latitude_value": ["-36.862995147705078"], + "field_longitude": ["147.27940368652344"], + "field_longitude_value": ["147.27940368652344"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3699"], + "field_project_code": ["01-5067"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Slalom St"], + "field_suburb": ["Falls Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20467], + "status": [true], + "title": ["Falls Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bab2e64f-ed03-4a38-abc6-f49b97040758"] + }, + "sort": ["Falls Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21340:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/farm-road-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Farm Road Preschool expanded the indoor learning space and office to cater for additional kindergarten places for three and four-year-olds. They relocated the children's bathroom and refurbished the building, including painting, floor finishings and lighting." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $345,750 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Farm Road Preschool" + ], + "field_latitude": ["-37.96293"], + "field_latitude_longitude_value": ["-37.96293,145.08114"], + "field_latitude_value": ["-37.96293"], + "field_longitude": ["145.08114"], + "field_longitude_value": ["145.08114"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["15-886"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["47 Farm Rd"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21340], + "status": [true], + "title": ["Farm Road Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2ffa09ba-9358-4575-8e57-2bf497610874"] + }, + "sort": ["Farm Road Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20204:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fawkner-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are further upgrading the school, constructing a new administration building.", + "We completed a number of improvements at the school, including replacing carpet, fixing the damaged\u00a0roof, replacing doors, painting and proving a new window and bench in the general office." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $7.8 million.", + "In the 2017-18 State Budget, $352,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Fawkner Primary School" + ], + "field_latitude": ["-37.690803527832031", "-37.71672"], + "field_latitude_longitude_value": [ + "-37.690803527832031,144.96038818359375" + ], + "field_latitude_value": ["-37.690803527832031"], + "field_longitude": ["144.96038818359375", "144.97747"], + "field_longitude_value": ["144.96038818359375"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3060"], + "field_project_code": ["D1-01-3590", "01-3590"], + "field_project_title": [ + "Upgrade and Modernisation - Administration Building", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q4 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Lorne Street"], + "field_suburb": ["Fawkner"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20204], + "status": [true], + "title": ["Fawkner Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6d6d16e5-8fb3-4d73-aa41-1f779eca2993"] + }, + "sort": ["Fawkner Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20968:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/featherbrook-p-9-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Featherbrook P-9 College opened in first term 2017 and will serve the rapidly growing residential areas in the suburb of Point Cook.\u00a0 The school will accommodate up to\u00a0550 students, and was delivered by the Learning Communities Victoria (LCV) consortium. \u200b Facilities\u00a0 The school\u00a0was designed with the local community in mind and\u00a0is a gathering place for local families and residents to enjoy community, arts, sports and recreation programs.\u200b Facilities include:\u200b\u200b an additional multi-purpose space that\u00a0can be used by the school during school hours and\u00a0 by the YMCA out of school hours to provide a range of community services and programs an expanded gymnasium built to Netball Victoria standards a kitchen to allow for food technology and community cooking programs embedded environmental sustainability education via the CERES ResourceSmart Schools program initiative conference and meeting rooms for local community use\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for the Public Private Partnership (PPP) Project across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Featherbrook P-9 College" + ], + "field_latitude": ["-37.9011"], + "field_latitude_longitude_value": ["-37.9011,144.7289"], + "field_latitude_value": ["-37.9011"], + "field_longitude": ["144.7289"], + "field_longitude_value": ["144.7289"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Featherbrook P-9 College Community BBQ"], + "field_postcode": ["3030"], + "field_project_code": ["01-8899"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["281 Boardwalk Blvd"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20968], + "status": [true], + "title": ["Featherbrook P-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["79ff98d6-422b-40c3-99cf-e4edc23ba3b6"] + }, + "sort": ["Featherbrook P-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22605:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/felltimber-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We renovated Felltimber Children's Service so local children can attend an extra year of funded kindergarten, starting when they are 3 years old. We expanded the bathrooms, modified the kitchen and improved the acoustics. We also created an extra play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Felltimber Children's Centre" + ], + "field_latitude": ["-36.13563188"], + "field_latitude_longitude_value": ["-36.13563188,146.8639245"], + "field_latitude_value": ["-36.13563188"], + "field_longitude": ["146.8639245"], + "field_longitude_value": ["146.8639245"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["15-3139"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["189 Melrose Drive"], + "field_suburb": ["West Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22605], + "status": [true], + "title": ["Felltimber Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["df302b9e-17b0-4904-aea5-67b51925e037"] + }, + "sort": ["Felltimber Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21432:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fern-street-childrens-centre"], + "changed": ["2023-12-06T14:22:19+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped Fern St Children's Centre build a new integrated children's centre. The centre offers:kindergarten for 3 and 4-year-oldslong day careplaygroupsfamily support servicesmaternal and child health support." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Fern Street Children's Centre" + ], + "field_latitude": ["-37.96475"], + "field_latitude_longitude_value": ["-37.96475,145.02021"], + "field_latitude_value": ["-37.96475"], + "field_longitude": ["145.02021"], + "field_longitude_value": ["145.02021"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["ELC-FSCC"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q4 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["Fern Street"], + "field_suburb": ["Black Rock"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21432], + "status": [true], + "title": ["Fern Street Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["88f515a9-97d6-4cc6-8f42-8cbae0930278"] + }, + "sort": ["Fern Street Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20176:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ferny-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play.", + "\u200bWe built a new roof for the school\u2019s outdoor basketball\u00a0court. The school\u00a0has limited covered outdoor space, that makes playing outdoor sports a challenge in poor weather. The new roof has created additional play space and shelter for students and helps them stay active all year round.\u00a0It\u00a0features\u00a0reversible netball/basketball poles, lighting and additional storage.\u200b\u200b Project Funding As part of the Education State vision, the Victorian Government has set a goal to increase pride and confidence in government schools.\u00a0 The School Pride and Sports\u00a0Fund is one way of achieving that goal. Funding is provided\u00a0for minor refurbishment and upgrade projects that will help students, teachers and the community to feel proud of their school.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000.", + "In 2016\u201317 the school received a further $285,194 from the School Pride Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ferny Creek Primary School" + ], + "field_latitude": ["-37.8842124", "-37.88395"], + "field_latitude_longitude_value": ["-37.8842124,145.3347256"], + "field_latitude_value": ["-37.8842124"], + "field_longitude": ["145.3347256", "145.33398"], + "field_longitude_value": ["145.3347256"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3786"], + "field_project_code": ["d1-3228", "01-3228"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2024", "Q2 2018"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["School Rd"], + "field_suburb": ["Ferny Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20176], + "status": [true], + "title": ["Ferny Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a2847438-1695-4613-8da3-47bac44a4d63"] + }, + "sort": ["Ferny Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20540:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/findon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to enclose Year 1 and 2 learning areas and raise the roof line." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $200,000 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Findon Primary School" + ], + "field_latitude": ["-37.66496"], + "field_latitude_longitude_value": ["-37.66496,145.053"], + "field_latitude_value": ["-37.66496"], + "field_longitude": ["145.053"], + "field_longitude_value": ["145.053"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3082"], + "field_project_code": ["01-5244"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Cuthbert Dr"], + "field_suburb": ["Mill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20540], + "status": [true], + "title": ["Findon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c25316bd-4018-4621-b730-91fd0dda8398"] + }, + "sort": ["Findon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21197:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fish-creek-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Fish Creek Kindergarten has upgraded its early learning facilities: created an entrance space promoting family engagement\u00a0 constructed a communal consulting room to provide private meeting space for families and support services\u00a0 established\u00a0a new sensory alcove supporting children's mental health and wellbeing\u00a0 upgraded their existing kitchen to engage children in a sustainable kitchen program\u00a0 applied\u00a0ramps for strollers and wheelchair access\u00a0 upgraded and relocated bathrooms as well as adding an accessible toilet." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $147,894 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Fish Creek Kindergarten" + ], + "field_latitude": ["-38.69182"], + "field_latitude_longitude_value": ["-38.69182,146.08261"], + "field_latitude_value": ["-38.69182"], + "field_longitude": ["146.08261"], + "field_longitude_value": ["146.08261"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3959"], + "field_project_code": ["15-1184"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Ryan St"], + "field_suburb": ["Fish Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21197], + "status": [true], + "title": ["Fish Creek Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["752a820b-0e6d-4695-9ae5-4cca4a269271"] + }, + "sort": ["Fish Creek Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20155:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fish-creek-and-district-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered\u00a0a new architect-designed modular building to the school to replace the Main Building.\u00a0 Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.\u00a0 The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $758,000. \u00a0" + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Fish Creek and District Primary School" + ], + "field_latitude": ["-38.694279"], + "field_latitude_longitude_value": ["-38.694279,146.082077"], + "field_latitude_value": ["-38.694279"], + "field_longitude": ["146.082077"], + "field_longitude_value": ["146.082077"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3959"], + "field_project_code": ["01-3028"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Foster Rd"], + "field_suburb": ["Fish Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20155], + "status": [true], + "title": ["Fish Creek and District Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d6133db6-57e8-46c3-9deb-090aa497653e"] + }, + "sort": ["Fish Creek and District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33003:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fishermans-bend-primary-school-interim-name"], + "changed": ["2023-08-21T13:59:09+10:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are building a new primary school in Port Melbourne. It will open in 2026 with places for up to 650 students. This will help the growing local population get a great education close to home. The school will open for enrolments for students in Prep to Grade 6.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Fishermans Bend Primary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3207"], + "field_project_code": ["01-FBPS"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33003], + "status": [true], + "title": ["Fishermans Bend Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["837db7ee-166f-4dbc-9517-f858d6d4eeb0"] + }, + "sort": ["Fishermans Bend Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20002:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fitzroy-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school by completely refurbishing Block A and carrying out minor works to Block B." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $900,000. In 2020, the school received $8.1 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Fitzroy North Primary School" + ], + "field_latitude": ["-37.78382"], + "field_latitude_longitude_value": ["-37.78382,144.9846"], + "field_latitude_value": ["-37.78382"], + "field_longitude": ["144.9846"], + "field_longitude_value": ["144.9846"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3068"], + "field_project_code": ["01-1490"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Construction"], + "field_street_address": ["Fergie Street"], + "field_suburb": ["Fitzroy North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20002], + "status": [true], + "title": ["Fitzroy North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["309869c3-6c79-4807-bf51-27c27f69abec"] + }, + "sort": ["Fitzroy North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20297:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fitzroy-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We are upgrading and modernising the school to provide new facilities for students and staff, including: Block A (heritage building) upgrade learning spaces, shared learning, art and specialist spaces and staff areas, including accessibility and compliance upgrades throughout\u00a0\u00a0 Block B new passenger lift new main switchboard and distribution boards upgrade\u00a0north and south stairs to ensure building code compliance upgrade ground and first-floor toilets by replacing existing fixtures and fittings, including accessible toilets" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2020\u201321 State Budget, the school received $9.272 million." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Fitzroy Primary School" + ], + "field_latitude": ["-37.7996027"], + "field_latitude_longitude_value": ["-37.7996027,144.9815114"], + "field_latitude_value": ["-37.7996027"], + "field_longitude": ["144.9815114"], + "field_longitude_value": ["144.9815114"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3065"], + "field_project_code": ["D1-01-450", "01-450"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q4 2023"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Planning", "Construction"], + "field_street_address": ["319 George Street"], + "field_suburb": ["Fitzroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20297], + "status": [true], + "title": ["Fitzroy Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9c92b3d8-7371-4474-8182-fdd10e140ffa"] + }, + "sort": ["Fitzroy Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33032:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fleetwood-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are upgrading the school's toilets and water fountains. We will also upgrade the school's fencing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $310,000" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Fleetwood Primary School" + ], + "field_latitude": ["-38.039305"], + "field_latitude_longitude_value": ["-38.039305,145.318095"], + "field_latitude_value": ["-38.039305"], + "field_longitude": ["145.318095"], + "field_longitude_value": ["145.318095"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["01-4407"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["97 Fleetwood Drive"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33032], + "status": [true], + "title": ["Fleetwood Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["42af3732-3419-40c1-9d56-b9ccebd9e532"] + }, + "sort": ["Fleetwood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21467:en", + "_score": null, + "_ignored": [ + "field_paragraph_body.keyword", + "field_paragraph_accordion_body.keyword" + ], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/flemington-education-plan"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Flemington Education Plan. Work on the plan began in 2018. Its vision is for the Flemington community to have high-quality, seamless education from birth that fosters positive health and wellbeing and the capacity to succeed. We work with two primary schools, a special school and secondary school, connecting and supporting them to share their expertise and resources. The schools involved in the plan are:\u00a0\u00a0\u00a0 Ascot Vale Heights\u00a0School Debney Meadows Primary School Flemington Primary School Mount Alexander 7\u201312 College" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the State for planning. This includes funding for the Flemington Education Plan. The Victorian Government has invested over $32 million in this plan for new, and more modern, school buildings." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Flemington Education Plan" + ], + "field_latitude": ["-37.788240"], + "field_latitude_longitude_value": ["-37.788240,144.930500"], + "field_latitude_value": ["-37.788240"], + "field_longitude": ["144.930500"], + "field_longitude_value": ["144.930500"], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "The Victorian Government recognises the importance of rejuvenating and transforming education in Melbourne\u2019s inner north-west and announced the Flemington Education Plan in the 2018\u201319 State Budget. The plan aims to ensure that all learners have access to excellent educational opportunities. Schools involved include Flemington Primary School, Debney Meadows Primary School, Mount Alexander College and Ascot Vale Special School. The Department of Education and Training is working with these local schools, Moonee Valley City Council, other key partners to develop the plan and ensure it meets the diverse needs of the community and the educational requirements of all local students. While the Flemington Education Plan is being developed, the 4 schools are exploring opportunities to share resources and leverage each other\u2019s strengths. This includes working together to develop a range of shared programs and approaches to improve teaching and learning.", + "We engaged with students, teachers, parents and community members from Flemington and the surrounding area from 2 May to 14 June 2019. We did this via an online survey, 13 workshops and two pop-up community events. Through our engagement we asked the community to identify the top things that contribute to a good school, what barriers exist for them in achieving a quality education, and what additional support would help to better provide a quality education. This report provides a summary of what we heard from the community during this engagement.", + "411 online survey responses 30,497 people reached through social media 13 workshops with 267 teachers, staff, students and parents 3326 individual comments received 3800 postcards distributed to 25 locations 37.6% of survey respondents clicked through from Facebook Survey respondents: 18.25% were parents of preschool-aged children and 30.23% were from a culturally diverse background 2 community pop-up sessions at an early learning centre and farmers market", + "\u201cA good school is one that helps students to reach their full potential, whatever that might be, and to engage with the world and their community. It's not just about \u2018excellence\u2019 or \u2018results\u2019. It's about respect for others and appreciating the world, and stimulating an interest in it.\u201d \u201cGood teachers, engaged parents, inviting physical environment, good facilities, processes to solve problems with students/teachers/ behaviour/bullying, safe environment, broader learning opportunities for science, the arts etc\u201d \u201cA good school is about learning to live a full and interesting, but responsible and contributing, life!\u201d What makes a good school? Online survey respondents believe that good schools are safe, inclusive and well equipped, where teachers and students are encouraged to interact via a curriculum that focuses on individual student needs. The most commonly expressed themes were: students need a place where they feel confident, included and protected there is an emphasis on excellent teaching schools also need good quality facilities for learning to take place a school\u2019s values and culture are a key factor student-focused learning. During the workshops, students were asked \u2018what makes a good school?\u2019. Students participating in the workshops across all the schools believe good facilities, teaching and school culture were all factors that make a good school. The most common themes mentioned were: facilities that meet a good standard for everyone student-centred learning and teaching positive and inclusive school culture and values good teachers up-to-date technology Number of comments: Safe & supportive environment/community involvement: slightly above 351 Qualified/Committed teachers: slightly below 300 Pedagogy/curriculum: 150 Good infrastructure/amenities: slightly below 150 School culture/value: below 150 Student-centric learning/teaching: below 150 What factors contribute to a quality education? For this question participants were asked via digital and paper survey to rank a range of factors, with the results below representing the average ranking for each option across all the participants. To be as inclusive as possible, for this question visual aides were used to assist people who do not speak English as a first language. This enabled participants to answer the questions visually. Consistent with the previous question, teaching, good facilities, a safe and inclusive environment and student centric learning were all seen as important to good learning outcomes. That these results are reflective of the question about \u2018what makes a good school\u2019 reinforces that respondents feel that a \u2018good school\u2019 and \u2018quality education\u2019 are very closely related. Number of comments: Quality teaching: slightly above 10 School that is safe and secure: slightly above 8 Good quality school facilities: 8 Individual learning catering for students: 8 Student voice and leadership: slightly below 8 Innovative curriculum (specialty courses): a little more below 8. Top factors when choosing school When choosing a school at any level, there are common features that parents and students are looking for. As we have heard consistently throughout this consultation, teachers are viewed as very important along with accessibility from home, good facilities and the reputation of the school. As students get older, they value subject choice and specialty subjects more highly. The list below shows the results of participants ranking their top six factors when choosing a school from a list of options. Teachers Close to home Facilities/physical environment of school School reputation Subject choice Principal What do you value about your school? Both students and parents contributed to this question, with quite different priorities. Facilities and teachers were the most valuable for all respondents, while students value subject choices and their fellow students highly. The top survey responses were: experienced, high quality teachers (both parents and students) a sense of community surrounding the school (important for parents) choice of subjects (important for students) a positive and inclusive school culture (important for parents). \u201cGreat teachers who make an effort to connect with parents, fantastic extra curricular program (particularly sport and music), strong focus on culture and personal resilience.\u201d \u201cWe truly believe in and act on student voice. It\u2019s such an intimate and diverse community, and we are truly challenging what education could be.\u201d \u201cThe hard work of staff and sense of community.\u201d Barriers to a quality education \u201cResourcing of teachers and speciality teachers, bureaucracy about processes at school and generic responses rather than a specific response\u201d Of the relatively low numbers of respondents answering this question, the vast majority did not believe there were any particular impediments to their child\u2019s education. However, those who did identify areas indicated a lack of quality teachers and inadequate facilities as issues. In the workshops, the following themes emerged: Concern about a perceived lack of engagement between the schools in question and local community and industry Funding for a range of facilities, property and staffing More assistance for children with additional needs Access within the school for allied health services What are the barriers to quality of education for your child? Number of responses: No barriers identified: above 65 Lack of quality teaching: 30 Poor infrastructure amenities: slightly above 20 Poor funding: slightly above 20 Lack of local government schools: slightly above 20 Distruptive student behaviours: slightly below 20 Some respondents indicated that additional help with learning/teaching in the classroom and wellbeing services would help support their child obtain a quality education. A subsequent question asked what wellbeing services would be helpful. Mental health support and counselling were the top answers. What would support you/your child and family to obtain a quality education? Number of responses: Addition support at school: above 140 Wellbeing services: slightly below 140 Links to industry and pathways to jobs: 80 Teacher\u2019s aide: 60 Early learning services: 60 Career services: slightly below 60", + "The online survey and workshop participants in the consultation reflected the diversity of the Flemington area. There was a mix of parents, teachers and students of different ages and from different schools and parts of the area. Around two thirds of survey participants indicated that they spoke a language other than English at home. I am a... Number of responses: Parents/guardian or a child/children currently attending: 180 School students: slightly above 120 Parent/gardian a preschool child/children: 70 Teacher: slightly above 20 Not answered: 10 Community member: slightly below 10 Family member: 5 Service provider: 3 Do you speak a language other than English at home? Pie chart:\u00a0 Yes: 3/4 No: 1/4 Not answered: Less than 1/4 Where do you live? Number of responses: Flemington: almost 150 Ascot Vale: almost 80 Kensington: around 30 Mooney Ponds: around 30 North Melbourne around 30 Travancore: around 30 Brunswick: around 20 Footscray: around 15 Pascoe Vale: \u00a0around 10 Yarraville: less than 10 Preston: less than 10 Melbourne: less than 10 Maribyrnong: less than 10 Carlton: less than 10 Others: less than 10 N/A: around 25 What school do you attend? Number of responses: Mount Alexander College: \u00a0around 130 Daycare/kinder: \u00a0around 90 Flemington Primary School: slightly above 50 Kensington Primary School: \u00a0around 30 Debney Meadows Primary School: \u00a0around 25 Ascot Vale Primary School: \u00a0about 20 North Melbourne Primary School: about 10 Mooney Ponds Primary School: \u00a0less than 10 Other: nearly 50 Workshop participants At each school, workshops were held with staff (the majority being teaching staff), students (often the leadership) and parents. During the pre-engagement phase, school principals were asked the most appropriate ways to engage their school community and each workshop was tailored to the occasion and participant numbers.", + "Your feedback will help inform the development of the Flemington Education Plan. While this work progresses, the four schools will continue to work together in and beyond 2020, to help ensure the Flemington Education Plan is developed to meet the future education needs of the local community.", + "You can access a designed version of this report." + ], + "field_paragraph_accordion_name": [ + "About the Flemington Education Plan", + "About the engagement", + "Engagement snapshot", + "What we heard", + "About the participants", + "Next steps", + "Designed report" + ], + "field_paragraph_body": [ + "For more information on learning programs and partnerships this plan is delivering, please visit the Department of Education and Training . This is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to others across the state, please visit the VSBA education plans page. For all other queries contact education.plans@edumail.vic.gov.au ." + ], + "field_paragraph_title": ["Engaging with the community"], + "field_postcode": ["3031"], + "field_project_code": ["EP-F"], + "field_project_title": ["Education Plan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21467], + "status": [true], + "title": ["Flemington Education Plan"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["689c6125-7356-4670-b51c-42cb7e1a56a2"] + }, + "sort": ["Flemington Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20106:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/flemington-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's playground and other grounds. This school is part of the Flemington Education Plan. Its vision is to give the local community high-quality, seamless education from birth. This will foster positive health and wellbeing and the capacity to succeed." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $127,000 in planning funding. In the 2020\u201321 State Budget, the school received $1.147 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Flemington Primary School." + ], + "field_latitude": ["-36.996555328369141"], + "field_latitude_longitude_value": [ + "-36.996555328369141,144.30545043945312" + ], + "field_latitude_value": ["-36.996555328369141"], + "field_longitude": ["144.30545043945312"], + "field_longitude_value": ["144.30545043945312"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3031"], + "field_project_code": ["01-250"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Mt Alexander Rd"], + "field_suburb": ["Flemington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20106], + "status": [true], + "title": ["Flemington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["51a8cf38-116f-4de5-a86c-e4875f341cba"] + }, + "sort": ["Flemington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28128:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/flinders-christian-community-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school build the 'Joshua Centre'. The specialist facility will include 5 learning areas, 2 therapy rooms, an outdoor therapy area and covered outdoor learning spaces. The 'Joshua Centre' will also house administration and meeting spaces, student and staff amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1.5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Flinders Christian Community College." + ], + "field_latitude": ["-38.26312065560391"], + "field_latitude_longitude_value": [ + "-38.26312065560391,145.16720543961213" + ], + "field_latitude_value": ["-38.26312065560391"], + "field_longitude": ["145.16720543961213"], + "field_longitude_value": ["145.16720543961213"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3913"], + "field_project_code": ["01-1876"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["155 Mornington-Tyabb Rd"], + "field_suburb": ["Tyabb"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28128], + "status": [true], + "title": ["Flinders Christian Community College"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["c72db2a1-33de-42f5-8127-8d45e41ba60c"] + }, + "sort": ["Flinders Christian Community College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28659:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/flinders-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor play and learning areas. Children will be able to learn while exploring natural landscapes or playing with others in a mud kitchen or bush hut. They will experience Indigenous culture and be able to relax alongside running water." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $174,383.80 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Flinders Preschool." + ], + "field_latitude": ["-38.47430349"], + "field_latitude_longitude_value": ["-38.47430349,145.0148495"], + "field_latitude_value": ["-38.47430349"], + "field_longitude": ["145.0148495"], + "field_longitude_value": ["145.0148495"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3929"], + "field_project_code": ["15-546"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["62 Bass St"], + "field_suburb": ["Flinders"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28659], + "status": [true], + "title": ["Flinders Preschool"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["06964ef5-81d1-44aa-801d-6c7895875c58"] + }, + "sort": ["Flinders Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20053:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/footscray-city-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are restoring and modernising Block C. It will complement the gym, music and performing arts building, which we completed in 2019.Block C is the main teaching block at the school, and we will retain the historical importance the building has for the school community.Footscray City Primary School is part of the Footscray Learning Precinct. The precinct champions excellence in learning and teaching in Melbourne\u2019s inner west at all stages of education. It builds on the richness and diversity of the community and provides opportunities for learning in new ways.We held workshops with the school which identified 3 key priorities for the design, including:\u00a0student-led learningwellbeingcollaboration.We will upgrade Block C to suit the school\u2019s education model. This includes creating 5 dedicated learning communities, each with:\u00a03 to 4 general purpose classrooms\u00a0a resource intensive learning space\u00a0breakout gathering spaces.Flexible learning spaces\u00a0New classrooms will be flexible. Students will be able to learn in a traditional classroom environment or collaborate in open adjoining spaces. This will create options for individual and group learning.Revamped office and reception\u00a0We will move administration areas to the centre of the building, creating a clear entry for visitors. There will be new meeting rooms and staff breakout areas.Access for allWe will install a lift so people of all abilities can access the upper levels. Each level will have accessible bathrooms.Outdoor learning spaces\u00a0There will be open space around the main building for outdoor learning and play.There will be a garden with food planters to get children interested in growing their own food and learning about food production.", + "We built a new competition-size\u00a0gym at Footscray City Primary School. The new facility also includes music and performing arts areas and a new canteen.Footscray City Primary school forms a part of the new\u00a0Footscray Learning Precinct, which will link, expand and upgrade schools across Melbourne\u2019s inner west and integrate learning at all levels, from early childhood to university.\u200b\u200b\u200b", + "We built an inclusive playground with synthetic grass, new play equipment and a water feature." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $13.428 million.", + "$15.436 million was allocated over three State Budgets to develop school facilities for the precinct.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Footscray City Primary School." + ], + "field_latitude": ["-37.8065162", "-37.806499", "-37.8065162"], + "field_latitude_longitude_value": ["-37.8065162,144.8994315"], + "field_latitude_value": ["-37.8065162"], + "field_longitude": ["144.8994315", "144.899384", "144.8994315"], + "field_longitude_value": ["144.8994315"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "\ufeff\ufeffFind out more about the kindergarten next to Footscray City Primary School.", + "Footscray City Primary School upgrade \u2013 Design release \u00a0" + ], + "field_postcode": ["3011"], + "field_project_code": ["D1-01-1912", "01-1912", "D2-01-1912"], + "field_project_title": [ + "Upgrade and Modernisation - Block C", + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q2 2024", "Q3 2019", "Q4 2022"], + "field_start_date": ["Q2 2021", "Q2 2021"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["10 Hyde Street"], + "field_suburb": ["Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20053], + "status": [true], + "title": ["Footscray City Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bd90923c-c3f9-48b4-a7cb-6dd73a6eaa09"] + }, + "sort": ["Footscray City Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20795:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/footscray-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the main block of this campus. This campus is part of the Footscray Learning Precinct, which champions excellence in learning and teaching in Melbourne's inner west at all stages of education. The precinct builds on the richness and diversity of the community and provides opportunities for learning in new ways. Learn more about how the precinct is transforming local education for Footscray. Learn how education plans offer extra support for students to reach their full potential.", + "We transformed Footscray City College into Kinnear Campus \u2212 the new senior secondary campus of Footscray High School. We upgraded the campus' science, technology, engineering and maths (STEM) facilities.\u00a0 This campus is part of the Footscray Learning Precinct, which champions excellence in learning and teaching in Melbourne's inner west at all stages of education. The precinct builds on the richness and diversity of the community and provides opportunities for learning in new ways. Learn more about how the precinct is transforming local education for Footscray. Learn how education plans offer extra support for students to reach their full potential.", + "We built a new co-educational junior secondary campus for Footscray High School. In 2021, Pilgrim Campus opened for Year 7 and 8 students. In 2022, the campus will open for Year 9 students. This campus is part of the Footscray Learning Precinct, which champions excellence in learning and teaching in Melbourne's inner west at all stages of education. The precinct builds on the richness and diversity of the community and provides opportunities for learning in new ways. Learn more about how the precinct is transforming local education for Footscray. Learn how education plans offer extra support for students to reach their full potential.", + "We built a new 3-storey building for Footscray High School \u2013 Barkly Campus. We also refurbished the BER building and expanded the Design, Arts, Technology and Science (DATS) facility. The two buildings link to provide an integrated DATS facility. In 2021, Barkly Campus opened for Year 7 and 8 students. In 2022, the campus will open for Year 9 students. This campus is part of the Footscray Learning Precinct, which champions excellence in learning and teaching in Melbourne's inner west at all stages of education. The precinct builds on the richness and diversity of the community and provides opportunities for learning in new ways. Learn more about how the precinct is transforming local education for Footscray. Learn how education plans offer extra support for students to reach their full potential." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $25.289 million.", + "In the 2019\u201320 State Budget, the Kinnear Year 10-12 Campus received $4.123 million.", + "In the 2018\u201319 State Budget, funding of $29.275 million was allocated to the new Pilgrim Year 7-9 Campus.", + "In the 2019\u201320 State Budget, this campus received $16.123 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "New School Campus", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the build of Footscray High School." + ], + "field_latitude": ["-37.798393249511719", "-37.790468"], + "field_latitude_longitude_value": [ + "-37.798393249511719,144.89944458007812" + ], + "field_latitude_value": ["-37.798393249511719"], + "field_longitude": ["144.89944458007812", "144.894399"], + "field_longitude_value": ["144.89944458007812"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "New school", + "School upgrade" + ], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Those visiting and studying at Kinnear can look forward to a refreshed exterior of the central learning hub. The new student entry will welcome and connect from the canteen to a rejuvenated civic square and garden beds for the school community to enjoy, collaborate and reflect. It will be a space suited to address an assembly and a place for community to celebrate. There will be a focus on improving accessibility and safety for all learners. We will replace existing uneven brick paving with an accessible sealed pathway and provide external lighting across main pathways. Kinnear Campus Principal Vicki Tentzoglidis says \u201cWe are very excited to be part of the Footscray Learning Precinct upgrade to the Kinnear Campus and look forward to continuing to provide a world-class education for our local community. The design of the Kinnear Campus will reflect a young adult learning state\u2013of\u2013the\u2013art centre that creates pathways for all our students.\u201d", + "We are improving the internal conditions of the main learning hub so that Kinnear students have the facilities they need to learn and feel prepared for the next step in their education journey. The layout of each floor will be renovated so there is an improved natural flow between subject specialist rooms and allow for more spaces for student collaboration. Facility improvements will include: a redeveloped staff lounge and administration area an expanded and modernised kitchen and canteen area a revitalised library reconfigured level 1 classrooms into more flexible learning spaces upgraded amenities across the campus. Through these facilities, Kinnear will equip students with the habits and curiosity they need in further education. Year 10 student Elisabeth says \u201cI am excited about the new building works happening at the senior campus. I greatly look forward to finishing my secondary education in a state\u2013of\u2013the\u2013art new building with facilities that will provide my year level, and many to come, with valuable and amazing opportunities.\u201d", + "Removal of the existing relocatable buildings enables the campus layout to be more open than ever before. Students and the community will have access to enhanced outdoor spaces that encourages an active lifestyle \u2013 a key priority of Kinnear. New outdoor spaces will flow from the learning hub \u2013 allowing for a smooth transition from indoor to outdoor learning. We have worked with School Counsellor, Uncle Keith, to allow space for Indigenous planting as part of the campus\u2019 sustainability program. This work is in addition to creating spaces for yarning circles to embed Indigenous culture further into the campus \u2013 a priority for the Footscray Learning Precinct.", + "The library\u2019s vision is to nurture an ongoing love of reading in the community, to support the teaching and learning of the school curriculum, to celebrate diversity and creativity, and to promote social justice. The campus library will provide a vast range of digital and print resources, hosting events and activities and offering professional support. Staff will cultivate a sense of curiosity in students and encourage them to be critical and creative thinkers. The library website and catalogue will be available 24/7 from anywhere with an internet connection. They will host a variety of digital resources to support teaching, learning and recreational reading, as well as study and research tips and referencing advice. Online resources and databases Fiction books Non-fiction and reference books Film and video Multimedia Clubs and activities Newspapers and magazines", + "Pilgrim Campus will have an innovative STEAM curriculum (Science, Technology, Engineering, Arts and Maths) in which students tackle real-world, local problems alongside teachers and community members. Realising this vision involves utilising the expertise of STEAM education leaders in Australia and around the world, as well as empowering Footscray High teachers to innovate locally. It will foster strong connections between students and their community, by working together on \u2018problems that matter\u2019 in our local area. The Pilgrim Campus STEAM program will collaborate closely with STEAM initiatives throughout the Footscray Learning Precinct.", + "The school\u2019s administration facilities will be centrally located at the front of the campus, making access easy for parents and students.", + "Today\u2019s students are likely to have four or five different careers in their working lives. So, to thrive in the 21st century, our young people need more than today\u2019s knowledge. They need to think critically, creatively and laterally; be comfortable working in teams; and be inspired to continue learning beyond school and university. Pilgrim Campus will provide dynamic and flexible spaces that support students to learn in a variety of ways. These spaces can be rearranged to create distinct learning areas for different activities such as class instruction or discussion, working in smaller groups or independently, and collaboration on practical projects. Flexible spaces also allow teachers to occasionally combine their classes, creating additional opportunities for students and teachers to learn from each other.", + "Pilgrim Campus will combine hard play spaces (e.g. multisport courts) with grassed play areas. The indoor multipurpose gym located at Footscray City Primary School will be shared with Pilgrim Campus. Students may also use community recreation facilities in partnership with Melbourne Cricket Club and Victoria University. Yarraville Gardens has an oval, a cricket pitch and tennis courts, and is a 10 minute walk from the Pilgrim Campus. Victoria University provides some of the best sport and recreation facilities in the country, including a recently upgraded swimming pool." + ], + "field_paragraph_accordion_name": [ + "Welcoming school community to the heart of Kinnear Campus", + "Purposeful facilities with the gateway to further education", + "Enhancing outdoor spaces for learning and lifestyle", + "Library", + "STEAM", + "Administration", + "General learning spaces", + "External spaces" + ], + "field_paragraph_body": [ + "Footscray High School - Kinnear Campus | Design release", + "Footscray High School \u2013 Pilgrim Campus", + "Footscray High School \u2013 Barkly Campus" + ], + "field_paragraph_title": ["Design features", "Design features"], + "field_postcode": ["3011"], + "field_project_code": [ + "D4-01-7842", + "D2-01-7842", + "01-7842", + "D1-01-7842" + ], + "field_project_title": [ + "Upgrade and Modernisation - Kinnear Year 10-12 Campus - Stage 2", + "Upgrade and Modernisation - Kinnear Year 10-12 Campus", + "New School Campus - Pilgrim Year 7-9 Campus", + "Upgrade and Modernisation - Barkly Year 7-9 Campus" + ], + "field_q_complete": ["Q4 2023", "Q1 2021", "Q1 2021", "Q1 2021"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["1 Kinnear St"], + "field_suburb": ["Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20795], + "status": [true], + "title": ["Footscray High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7f608c4e-5f1a-4c53-a72c-9896c9696edf"] + }, + "sort": ["Footscray High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21468:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/footscray-learning-precinct"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Footscray Learning Precinct. Work began in 2015. The precinct creates new ways to champion excellence in learning and teaching. It creates new opportunities for students at every stage of education. It will provide a seamless path from early learning to adult education, making education more accessible for the Footscray community than ever before. As part of the precinct, we're building an integrated early learning centre \u2013 a community hub offering kindergarten as well as a range of health and wellbeing services for local families. We're also upgrading and modernising local primary schools, and we've created a new high school with three campuses. The Footscray Learning Precinct includes: Footscray High School Pilgrim Year 7\u20139 Campus Barkly Year 7\u20139 Campus Kinnear Year 10\u201312 Campus Footscray City Primary School Footscray Primary School Footscray Learning Precinct \u2013 Billy Button Children's Centre Community engagement In November 2016, over four weeks, the VSBA ran community engagement activities to ensure they had opportunities to express support or concerns about the proposed concept before the feasibility study was finalised. We found there was\u00a0a high level of support for the proposed concept. Throughout August 2017, we engaged with local students, teachers, parents and community members to ensure that their hopes, aspirations and concerns were identified and included in the design of the Footscray Learning Precinct.\u00a0Community feedback was provided to Hayball architects to help them develop a master plan for the precinct. You can access both of the above mentioned engagement reports by contacting us.\u00a0 Explore further For more information on learning programs and partnerships this precinct is delivering, please visit the Department of Education. This is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to others across the state, please visit the VSBA education plans page. For all other queries contact\u00a0education.plans@edumail.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$15.436 million was allocated over three State Budgets to develop school facilities for the precinct. The 2018\u201319 Budget invested a further $29.275 million for the new Pilgrim Campus, Footscray High School. In the 2019\u201320 State Budget, the precinct received an additional $20.246 million. From the 2020\u201321 Infrastructure Planning and Acceleration fund, Footscray Primary School was allocated $2.249 million in planning funding. In the 2020\u201321 State Budget, Footscray Primary School received at least $18.217 million from a pool of more than $85 million to expand seven schools in high-growth areas. In the 2020\u201321 State Budget, Kinnear Campus, Footscray High School received $25.289 million. In the 2021\u201322 State Budget, Footscray City Primary School received $13.428 million." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Footscray Learning Precinct" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["EP-FLP"], + "field_project_title": ["Education Plan"], + "field_suburb": [ + "Footscray, Seddon, Yarraville, Kingsville, West Footscray" + ], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21468], + "status": [true], + "title": ["Footscray Learning Precinct"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c0185077-510f-4891-9108-ce0303377ca5"] + }, + "sort": ["Footscray Learning Precinct"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20265:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/footscray-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised\u00a0Footscray North Primary School. New facilities will provide an extra 200 places for local students. State-of-the-art facilities, including a new two-storey learning, community and specialist centre, offer many benefits for students and teachers. Our rebuild includes a new Science, Technology, Engineering, the Arts and Maths (STEAM) space, canteen, hardcourts, gym and change rooms.", + "We built an outdoor learning area and sensory garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $16.13 million, which is a share in $130.1 million from the Established Areas Program.", + "In 2019, $111,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Footscray North Primary School" + ], + "field_latitude": ["-37.787750", "-37.78775"], + "field_latitude_longitude_value": ["-37.787750,144.884644"], + "field_latitude_value": ["-37.787750"], + "field_longitude": ["144.884644", "144.88465"], + "field_longitude_value": ["144.884644"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3011"], + "field_project_code": ["D1-01-4160", "01-4160"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2022", "Q1 2022"], + "field_start_date": ["Q2 2020", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["14 Rosamond Rd"], + "field_suburb": ["Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20265], + "status": [true], + "title": ["Footscray North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6c7e8dd2-67dc-42f4-9d4d-9adf32d9c00c"] + }, + "sort": ["Footscray North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20108:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/footscray-primary-school"], + "changed": ["2023-07-25T15:42:47+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and expanded Footscray Primary School. The works created an extra 200 enrolment places for local students. We built a covered outdoor learning area (COLA) building, and a two-storey learning hub, where various learning opportunities are now available, including the bilingual program.\u00a0 This school is part of the Footscray Learning Precinct, which champions excellence in learning and teaching in Melbourne's inner west at all stages of education. The precinct builds on the richness and diversity of the community and provides opportunities for learning in new ways. Learn more about how\u00a0the precinct\u00a0is transforming local education for Footscray. Learn how\u00a0education plans\u00a0offer extra support for students to reach their full potential." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $2.249 million in planning funding. In the 2020\u201321 State Budget, the school received at least $18.217 million from a pool of more than $85 million to expand seven schools in high-growth areas." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Footscray Primary School" + ], + "field_latitude": ["-37.798393249511719"], + "field_latitude_longitude_value": [ + "-37.798393249511719,144.89944458007812" + ], + "field_latitude_value": ["-37.798393249511719"], + "field_longitude": ["144.89944458007812"], + "field_longitude_value": ["144.89944458007812"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3011"], + "field_project_code": ["01-253"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Geelong Rd & Barkly St"], + "field_suburb": ["Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20108], + "status": [true], + "title": ["Footscray Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8ab1654d-f17d-44cf-b350-c770134e00a0"] + }, + "sort": ["Footscray Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20230:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/footscray-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade this school to give students better learning opportunities. We will build a competition-grade gymnasium, as well as food technology and music spaces.", + "We\u00a0delivered a new architect-designed modular building to the school to replace Building B with new classrooms and an art and craft room. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs.\u00a0They are sustainable and innovatively designed, with a comparable lifespan to bricks and mortar structures. The project at the school is part of\u00a0the\u00a0Permanent Modular School Buildings Program.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $9.4 million", + "In the 2017\u201318 State Budget, $1,988,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Footscray West Primary School" + ], + "field_latitude": ["-37.7935299"], + "field_latitude_longitude_value": ["-37.7935299,144.87551"], + "field_latitude_value": ["-37.7935299"], + "field_longitude": ["144.87551"], + "field_longitude_value": ["144.87551"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3012"], + "field_project_code": ["D1-01-3890", "01-3890"], + "field_project_title": [ + "Upgrade and Modernisation - Competition Grade Gymnasium, Food Technology and Music Spaces", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2026", "Q4 2018"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Argyle St"], + "field_suburb": ["West Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20230], + "status": [true], + "title": ["Footscray West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7ed75107-75ef-444e-8471-be7d3ec68724"] + }, + "sort": ["Footscray West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21230:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fordham-ave-kindergarten"], + "changed": ["2023-08-23T10:29:29+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We provided the kindergarten with a better space to support its indoor and outdoor program. These changes will help keep up with the changing needs of the children, families, and community of the kindergarten.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $300,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Fordham Avenue Kindergarten" + ], + "field_latitude": ["-37.839069366455078"], + "field_latitude_longitude_value": [ + "-37.839069366455078,145.07295227050781" + ], + "field_latitude_value": ["-37.839069366455078"], + "field_longitude": ["145.07295227050781"], + "field_longitude_value": ["145.07295227050781"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3124"], + "field_project_code": ["15-255"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["24 Fordham Av"], + "field_suburb": ["Camberwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21230], + "status": [true], + "title": ["Fordham Avenue Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eb795599-08c5-4271-a8fb-7c42debc5e6f"] + }, + "sort": ["Fordham Avenue Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33033:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/forest-hill-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We will complete upgrades to Block A, Block D and Block M. This will ensure students are learning in spaces fit for modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $10.9 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Forest Hill College" + ], + "field_latitude": ["-37.848519"], + "field_latitude_longitude_value": ["-37.848519,145.163728"], + "field_latitude_value": ["-37.848519"], + "field_longitude": ["145.163728"], + "field_longitude_value": ["145.163728"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3151"], + "field_project_code": ["01-8724"], + "field_project_title": [ + "Upgrade and Modernisation - Blocks A, D and M" + ], + "field_q_complete": ["Q3 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["178-180 Mahoneys Road"], + "field_suburb": ["Burwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33033], + "status": [true], + "title": ["Forest Hill College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["50c10bb0-53e1-4db0-8763-68139b46778f"] + }, + "sort": ["Forest Hill College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20411:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/forest-street-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including Block A. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.572 million.\u00a0In 2022 the school was allocated a further $279,251." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Forest Street Primary School." + ], + "field_latitude": ["-37.530979156494141"], + "field_latitude_longitude_value": [ + "-37.530979156494141,143.82597351074219" + ], + "field_latitude_value": ["-37.530979156494141"], + "field_longitude": ["143.82597351074219"], + "field_longitude_value": ["143.82597351074219"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3355"], + "field_project_code": ["01-4936"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Cnr Forest St & Hancock St"], + "field_suburb": ["Wendouree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20411], + "status": [true], + "title": ["Forest Street Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["95e221af-800b-432c-b15e-14840b9dea48"] + }, + "sort": ["Forest Street Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21184:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/forrest-learning-centre"], + "changed": ["2023-12-06T10:43:57+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the office and kitchen areas at the centre. We also provided extra storage space for learning materials and resources." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 20-21 Building Blocks Improvement Grant $85,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Forrest Learning Centre" + ], + "field_latitude": ["-38.5156354"], + "field_latitude_longitude_value": ["-38.5156354,143.714835"], + "field_latitude_value": ["-38.5156354"], + "field_longitude": ["143.714835"], + "field_longitude_value": ["143.714835"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3236"], + "field_project_code": ["15-1015"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Grant St"], + "field_suburb": ["Forrest"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21184], + "status": [true], + "title": ["Forrest Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9d055ce8-1db2-433f-b33b-15af15e70151"] + }, + "sort": ["Forrest Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22349:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/forrest-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:23:59+11:00"], + "field_about_project_processed": [ + "We refurbished the student and staff bathroom to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $297,401" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Forrest Primary School" + ], + "field_latitude": ["-38.516287"], + "field_latitude_longitude_value": ["-38.516287,143.714415"], + "field_latitude_value": ["-38.516287"], + "field_longitude": ["143.714415"], + "field_longitude_value": ["143.714415"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3236"], + "field_project_code": ["01-2708"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Grant Street"], + "field_suburb": ["Forrest"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22349], + "status": [true], + "title": ["Forrest Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["31daa7e1-e5a4-46df-bbb0-1218b5de815d"] + }, + "sort": ["Forrest Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20712:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/foster-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered\u00a0new architect-designed modular facilities to Foster Primary School to replace Block C and Block D (Multipurpose).\u00a0 Modular Facilities Our modular buildings require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.\u00a0 The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program\u200b.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $1,733,000." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Foster Primary School." + ], + "field_latitude": ["-38.657639"], + "field_latitude_longitude_value": ["-38.657639,146.202896"], + "field_latitude_value": ["-38.657639"], + "field_longitude": ["146.202896"], + "field_longitude_value": ["146.202896"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3960"], + "field_project_code": ["01-6221"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["75 Pioneer St"], + "field_suburb": ["Foster"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20712], + "status": [true], + "title": ["Foster Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["72600f9a-56d6-4d37-9424-0bf238fa40df"] + }, + "sort": ["Foster Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23332:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fountain-gate-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We refurbished the kindergarten. We upgraded the entry area, office space, and children's amenities.The centre can now offer an extra 33 kindergarten places to local 3 and 4-year-olds. We upgraded the condition of the centre and made it more welcoming. We improved safety and accessibility by updating signage, lighting and pathways." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $500,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Fountain Gate Kindergarten" + ], + "field_latitude": ["-38.00736936"], + "field_latitude_longitude_value": ["-38.00736936,145.2939652"], + "field_latitude_value": ["-38.00736936"], + "field_longitude": ["145.2939652"], + "field_longitude_value": ["145.2939652"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["15-105"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["12 Sylvanwood Cres"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23332], + "status": [true], + "title": ["Fountain Gate Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["78478422-d012-4a4f-8093-477e36277985"] + }, + "sort": ["Fountain Gate Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20469:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fountain-gate-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created outdoor sensory/learning spaces which are attached to current gallerias. These will be utilised for \u2018investigation time\u2019 and at other times for students with special needs. \u00a0", + "The School Pride and Sports Fund has extended the\u00a0car park at the school. As part of the Education State vision, the Victorian Government has set a goal to increase pride and confidence in government schools. The School Pride and Sports Fund is one way of achieving that goal. Funding is provided for projects totalling under $1million, which will help students, teachers and the community to feel proud of their school.\u00a0\u200b", + "We replaced the carpet throughout the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, $200,000 was allocated to the school as part of Round 2 of the Inclusive Schools Fund.", + "In the 2018\u201319 State Budget $100,000 was allocated to the school through the School Pride and Sports Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $272,165" + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "School Pride and Sports Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Fountain Gate Primary School" + ], + "field_latitude": ["-38.009869", "-38.00987", "-38.0101831832974"], + "field_latitude_longitude_value": ["-38.009869,145.295944"], + "field_latitude_value": ["-38.009869"], + "field_longitude": ["145.295944", "145.29596", "145.299942236005"], + "field_longitude_value": ["145.295944"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["01-5072", "D1-01-5072", "D2-01-5072"], + "field_project_title": [ + "Inclusive Schools Fund", + "School Pride and Sports Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2017", "Q2 2018", "Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Prospect Hill Rd"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20469], + "status": [true], + "title": ["Fountain Gate Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6a06534c-af64-4e5f-94d2-4a0dddf18170"] + }, + "sort": ["Fountain Gate Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20952:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fountain-gate-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe redeveloped the college.\u00a0We\u00a0refurbished and expanded the existing technology facilities to deliver a new science, technology, engineering and mathematics\u00a0(STEM)\u00a0centre.\u00a0 \u200b\u200b Facilities The works provide\u00a0the college with purpose-built learning spaces that promote creativity, innovation and critical thinking. The design responds to the school's priority to provide innovative curriculum that allow students to explore new and emerging sciences and technologies.\u00a0\u200b A range of flexible and adaptable learning spaces support different modes of learning\u00a0including: \u00a0 grouped learning neighbourhoods,\u00a0 quiet reflection spaces,\u00a0 a central gathering and breakout space,\u00a0 a meeting room with resources zone,\u00a0 integrated staff workspaces, and\u00a0 outdoor learning areas that provide enhanced indoor/outdoor connections.\u200b\u200b\u00a0", + "The funding was\u00a0used to help upgrade the school\u2019s weights room. As part of the Education State vision, the Victorian Government has set a goal to increase pride and confidence in government schools. The School Pride and Sports Fund is one way of achieving that goal. Funding is provided for upgrade projects totalling under $1 million, which will help students, teachers and the community to feel proud of their school. The fund also helps\u200b\u200b ensure more new gymnasiums are competition grade and can be used by community sporting clubs" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $4.5 million was allocated to this school.\u00a0 In the 2016\u201317 State Budget, the school shared in $12 million planning funding.", + "The school was allocated $200,000 from Round 3 of the School Pride & Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Fountain Gate Secondary College." + ], + "field_latitude": ["-38.00505", "-38.00505"], + "field_latitude_longitude_value": ["-38.00505,145.29521"], + "field_latitude_value": ["-38.00505"], + "field_longitude": ["145.29521", "145.29521"], + "field_longitude_value": ["145.29521"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["01-8870", "D1-01-8870"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2018", "Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["45 Josephine Av"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20952], + "status": [true], + "title": ["Fountain Gate Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fc8d4324-e8c7-45a5-a6b0-e8e13af97e6b"] + }, + "sort": ["Fountain Gate Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24594:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/frankston-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Frankston City Council plan several kindergarten building projects in 4 priority local areas. The council will develop plans for 5 projects and begin construction on one in 2022-23. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $141,250 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Frankston City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-FCC"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24594], + "status": [true], + "title": [ + "Frankston City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9973f2b7-77ba-477a-b077-be8d16e8580a"] + }, + "sort": [ + "Frankston City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20364:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/frankston-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0delivered\u00a0a new architect-designed modular building\u00a0containing general purpose classrooms and administration facilities at the school. It\u00a0replaces former Block A (West) and Block A (East), which were\u00a0demolished.\u00a0", + "We created\u00a0a kitchen garden and vegetable patch at the school.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $3.335 million was allocated to the school.", + "In the 2018\u201319 State Budget $50,000 was allocated to the school through the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Frankston Heights Primary School." + ], + "field_latitude": ["-38.16167", "-38.161724"], + "field_latitude_longitude_value": ["-38.16167,145.14673"], + "field_latitude_value": ["-38.16167"], + "field_longitude": ["145.14673", "145.146729"], + "field_longitude_value": ["145.14673"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["01-4815", "D1-01-4815"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2018", "Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["10 Kalmia St"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20364], + "status": [true], + "title": ["Frankston Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["70e0b61e-2110-45e9-bde6-75b668cf38ff"] + }, + "sort": ["Frankston Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20796:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/frankston-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade Frankston High School. As part of this upgrade, Block B and the west wing of Block A will be demolished. The remaining portion of Block A will have a minor refurbishment and the Arts Department will be relocated to Block C. This upgrade includes a new 2-storey administration and learning block and a food technology extension to the existing STEM building.", + "\u200bWe've\u00a0modernised Frankston High School, with new facilities including\u00a0a\u00a0STEM centre, a gymnasium with\u00a0a competition-grade court, and a\u00a0performing arts centre.\u200b", + "We built an indoor inclusive learning space for Frankston High School students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $15.129 million.", + "In the 2014\u201315 State Budget, the school received $8.5 million. The school also received $683,000 in School Pride and Sports Funding. An additional $1 million was allocated to the school in the 2017\u201318 State Budget.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Frankston High School" + ], + "field_latitude": ["-38.163960658009451", "-38.162156", "-38.15408"], + "field_latitude_longitude_value": [ + "-38.163960658009451,145.12800682483621" + ], + "field_latitude_value": ["-38.163960658009451"], + "field_longitude": ["145.12800682483621", "145.129706", "145.13251"], + "field_longitude_value": ["145.12800682483621"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["D2-01-7850", "01-7850", "D1-01-7850"], + "field_project_title": [ + "Upgrade and Modernisation - Blocks A and B", + "Upgrade and Modernisation, School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2024", "Q1 2020", "Q4 2021"], + "field_start_date": ["Q2 2021", "Q4 2019"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["97 Foot St"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20796], + "status": [true], + "title": ["Frankston High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["69b85701-f3cb-4c86-9623-2965d73f5561"] + }, + "sort": ["Frankston High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21461:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/frankston-north-education-plan"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Frankston North Education Plan. Work on the plan began in 2017. Its vision is for every child and family in the Frankston North community to succeed in learning and life \u2013 through access to better education and health and wellbeing programs from birth. We work with three local schools across early childhood, primary and secondary education, connecting and supporting them to share their expertise and resources. As part of this plan, we upgraded and modernised buildings at these schools. Students have better learning facilities, and their families have easier access to a range of health and wellbeing services. We also upgraded an early learning centre and built a new one. These are connected to the primary schools through the Our Place model \u2013 creating a one-stop-shop for families to get education, adult training, as well as health and other community services. The schools involved in the plan are: Aldercourt Primary School Mahogany Rise Primary School Monterey Secondary College For more information on learning programs and partnerships this plan is delivering, please visit the Department of Education. This is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to others across the state, please visit the VSBA education plans page. For all other queries contact education.plans@edumail.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, this project shared in $7 million planning funding. This project received an additional $15 million in the 2018\u201319 State Budget. In the 2019\u201320 State Budget, the project received a further $11.268 million." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Frankston North Education Plan" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3200"], + "field_project_code": ["EP_FN"], + "field_project_title": ["Education Plan"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_suburb": ["Frankston North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21461], + "status": [true], + "title": ["Frankston North Education Plan"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3fc62ab6-cd9b-4f96-a507-d6ada76715b4"] + }, + "sort": ["Frankston North Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19997:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/frankston-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We repaired the roof and concrete paving for the lower classrooms. We also completed ceiling repairs.", + "We helped the school refurbish toilets to improve amenity, cleanliness and hygiene.", + "\u200bWe have completed the refurbishment of the school's\u00a0two-storey art-deco building, replacing aging classrooms with new state-of-the-art facilities.\u00a0 \u200b We have reconfigured classrooms, created a break out\u00a0space, storage facilities and reading nook\u00a0between classrooms.\u00a0 Upgrades to classrooms will improve the functionality and usability\u00a0of ICT facilities, by giving students more room to use the technology and giving teachers good environments in which to operate the equipment and securely and conveniently store it. We\u00a0have\u00a0built an amphitheatre\u00a0hub space in the centre of the building\u00a0for students, teachers, parents and visitors to gather in a purpose-designed space.\u00a0 The teachers' workspaces have also been reconfigured so that teachers can share desk space to work collaboratively and close to classrooms. In addition, new outdoor learning spaces have been built to provide students with different and inviting spaces to play and learn.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $204,109 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $72,890.", + "In the 2015\u201316 State Budget, $800,000 was allocated to the school. In the 2016\u201317 State Budget, $50,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Frankston Primary School." + ], + "field_latitude": ["-38.14755735", "-38.1453366501009", "-38.14682"], + "field_latitude_longitude_value": ["-38.14755735,145.1240309"], + "field_latitude_value": ["-38.14755735"], + "field_longitude": ["145.1240309", "145.120292999858", "145.12345"], + "field_longitude_value": ["145.1240309"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["D2-01-1464", "D1-01-1464", "01-1464"], + "field_project_title": [ + "Minor Capital Works Fund \u2013 2022\u201323 State Budget", + "Minor Capital Works Fund", + "School Improvement Fund" + ], + "field_q_complete": ["Q3 2023", "Q3 2022"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Davey St"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19997], + "status": [true], + "title": ["Frankston Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["096d8c05-68cc-4bac-ada0-779aa9ba9125"] + }, + "sort": ["Frankston Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20493:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/frankston-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We delivered the next stage of the school's master plan.The school teaches students with a wide range, and varying degrees, of physical or intellectual disabilities. Our improvements have had a positive impact on all students attending the school.The new facilities include:junior and middle learning community classrooms and spacesspecialist areas for performing arts, music, and food technologya media hub and canteena school community hubupgraded administration and support spacesseparate parent and bus drop-off/pick-up zones and a new exit road.", + "We built\u00a0new 2 classroom buildings (with\u00a0amenities) and a connecting entry foyer." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $60,464.", + "In the 2020\u201321 State Budget, the school received $12.633 million.", + "In the 2018\u201319 State Budget $815,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Frankston Special Developmental School." + ], + "field_latitude": ["-38.143298", "-38.144584655761719", "-38.142933"], + "field_latitude_longitude_value": ["-38.143298,145.170197"], + "field_latitude_value": ["-38.143298"], + "field_longitude": ["145.170197", "145.12290954589844", "145.170441"], + "field_longitude_value": ["145.170197"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["d2-5143", "D1-01-5143", "01-5143"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation - Classrooms and Entry Foyer" + ], + "field_q_complete": ["Q2 2024", "Q3 2023", "Q4 2019"], + "field_start_date": ["Q4 2022", "Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Sassafras Dr"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20493], + "status": [true], + "title": ["Frankston Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d9369803-3f93-4939-83fe-d68bdfccd2b8"] + }, + "sort": ["Frankston Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21399:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fraser-rise-childrens-and-community-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Melton City Council have\u00a0built a new integrated children\u2019s centre. The centre is designed to provide services for children, families, young people and seniors, and\u00a0meets the needs of the culturally and linguistically diverse members of the newly established and rapidly growing suburb of Fraser Rise.\u00a0 \u200b Facilities The hub\u00a0includes kindergarten, occasional care, maternal and child health, early childhood services, family services, parenting support programs, playgroups and numerous community programs and activities.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u20132018 Children's Facilities Capital Program $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Fraser Rise Childrens and Community Hub." + ], + "field_latitude": ["-37.716890"], + "field_latitude_longitude_value": ["-37.716890,144.729430"], + "field_latitude_value": ["-37.716890"], + "field_longitude": ["144.729430"], + "field_longitude_value": ["144.729430"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3336"], + "field_project_code": ["ELC-14"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["46 City Vista Ct"], + "field_suburb": ["Fraser Rise"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21399], + "status": [true], + "title": ["Fraser Rise Childrens and Community Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fc71c43c-9457-46e5-a50c-844bacccd2fb"] + }, + "sort": ["Fraser Rise Childrens and Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28648:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/friendship-square-child-care-centre-co-op-ltd"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play and learning areas. Children can now learn while exploring natural landscapes or playing with others in a mud kitchen or bush hut. They can also experience Indigenous culture and relax alongside running water.", + "We improved the kindergarten. Our designs included indigenous influences and elements that support student wellbeing and development.\u00a0We connected indoor and outdoor play spaces to improve air flow, access and natural light. The toilets and change rooms are also now accessible from all playrooms.\u00a0Other works included:improved storage to encourage independent play and learningrenovated laundry and officesan updated kitchen with a \u2018breakfast bar\u2019 for cooking lessons." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $176,751.00 was allocated to the project.", + "In the 2022\u201323 Building Blocks Inclusion Grants, $199,800 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Friendship Square Child Care Centre Co-Op Ltd." + ], + "field_latitude": ["-37.95894571"], + "field_latitude_longitude_value": ["-37.95894571,145.0658197"], + "field_latitude_value": ["-37.95894571"], + "field_longitude": ["145.0658197"], + "field_longitude_value": ["145.0658197"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["15-4939", "D1-15-4939"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Inclusion Grant" + ], + "field_q_complete": ["Q3 2023", "Q3 2023"], + "field_start_date": ["Q4 2022", "Q2 2023"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["35 Friendship Sq"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28648], + "status": [true], + "title": ["Friendship Square Child Care Centre Co-Op Ltd"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0503fdeb-52e8-42d1-ab44-ccca56288457"] + }, + "sort": ["Friendship Square Child Care Centre Co-Op Ltd"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20525:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/furlong-park-school-deaf-children"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade and modernise the school, including delivering new general-purpose classrooms and refurbishing an existing building.", + "\u200bWe upgraded the roof of the school building, replaced the heating and cooling system, and completed general maintenance works (such as painting and minor carpentry). We also provided the school with the latest hearing augmentation equipment. The school received Roger SoundFields and accessories which provide students and teachers with improved speech understanding and enhanced learning conditions.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $9.429 million.", + "In the 2016\u201317 State Budget, $611,000 was allocated to the school. In the 2015\u201316 State Budget the school received $40,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Furlong Park School For Deaf Children" + ], + "field_latitude": ["-37.762611389160156", "-37.7612"], + "field_latitude_longitude_value": [ + "-37.762611389160156,144.83518981933594" + ], + "field_latitude_value": ["-37.762611389160156"], + "field_longitude": ["144.83518981933594", "144.82591"], + "field_longitude_value": ["144.83518981933594"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["D1-01-5214", "01-5214"], + "field_project_title": [ + "Upgrade and Modernisation - next stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["58-84 Furlong Rd"], + "field_suburb": ["Sunshine North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20525], + "status": [true], + "title": ["Furlong Park School For Deaf Children"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c61cd906-806e-47a3-b06c-7ab890742371"] + }, + "sort": ["Furlong Park School For Deaf Children"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20403:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/fyans-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We delivered a new architect-designed modular building to\u00a0Fyans Park Primary School\u00a0to replace the administration building with new general purpose classrooms, an art room, student toilets and a staff area. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $298,835", + "In the 2017\u201318 State Budget, $2,000,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Fyans Park Primary School" + ], + "field_latitude": ["-38.153799", "-38.1540899"], + "field_latitude_longitude_value": ["-38.153799,144.326861"], + "field_latitude_value": ["-38.153799"], + "field_longitude": ["144.326861", "144.32675"], + "field_longitude_value": ["144.326861"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["D1-01-4919", "01-4919"], + "field_project_title": [ + "Inclusive Schools Fund - Round 9", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2025", "Q2 2018"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["37 Cook St"], + "field_suburb": ["Newtown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20403], + "status": [true], + "title": ["Fyans Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b02dfc8b-3b48-49ba-be81-74540cc077a7"] + }, + "sort": ["Fyans Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20684:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gaayip-yagila-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school will receive new permanent buildings to provide space for an additional 300 students.", + "We built a new primary school in Mickleham. It opened in 2021 and helps the growing local population get great education close to home. Cassandra Hoggins was appointed as the first principal. Enrolments are now open for Prep to Year 6. Your new school includes the following facilities: 2 learning neighbourhoods administration building outdoor play courts performing arts and physical education building sports field. We supported the building of a\u00a0kinder\u00a0next to the\u00a0school. This may\u00a0help local\u00a0children make\u00a0a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Further information on the school, including enrolment,\u00a0can be found on its official Facebook page. School name Gaayip-Yagila\u00a0Primary School (pronounced\u00a0gaa-yip ya-gila)\u00a0was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. Gaayip-Yagila is from the Woi-wurrung language, as spoken by the Wurundjeri people, and means\u00a0'coming together to learn'.\u00a0\u00a0 We\u00a0consulted\u00a0with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $11.201 million.", + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for the\u00a0school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Gaayip-Yagila Primary School." + ], + "field_latitude": ["-37.528608", "-37.528398"], + "field_latitude_longitude_value": ["-37.528608,144.909089"], + "field_latitude_value": ["-37.528608"], + "field_longitude": ["144.909089", "144.90953"], + "field_longitude_value": ["144.909089"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["D1-01-5579", "01-5579"], + "field_project_title": ["New School - Expansion", "New School"], + "field_q_complete": ["Q4 2024", "Q1 2021"], + "field_start_date": ["Q2 2022", "Q2 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["115 Blackmore Rd"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20684], + "status": [true], + "title": ["Gaayip-Yagila Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5dd130cc-95dc-48c1-b814-a3f741e65f4f"] + }, + "sort": ["Gaayip-Yagila Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21047:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/galen-catholic-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to refurbish\u00a0the junior centre and construct\u00a0a library and associated areas.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1 million has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Galen Catholic College." + ], + "field_latitude": ["-36.33893"], + "field_latitude_longitude_value": ["-36.33893,146.31247"], + "field_latitude_value": ["-36.33893"], + "field_longitude": ["146.31247"], + "field_longitude_value": ["146.31247"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["02-1744"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2018"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["College St"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21047], + "status": [true], + "title": ["Galen Catholic College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["da236ad3-8872-49a1-9efb-6bf5b466c18b"] + }, + "sort": ["Galen Catholic College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21070:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/galilee-regional-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Galilee Regional Catholic Primary School to upgrade their existing building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019-20 capital funding program for non-government schools, $5,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Galilee Regional Catholic Primary School" + ], + "field_latitude": ["-37.83201"], + "field_latitude_longitude_value": ["-37.83201,144.96959"], + "field_latitude_value": ["-37.83201"], + "field_longitude": ["144.96959"], + "field_longitude_value": ["144.96959"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3205"], + "field_project_code": ["02-1941"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["301-319 Bank Street"], + "field_suburb": ["SOUTH MELBOURNE"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21070], + "status": [true], + "title": ["Galilee Regional Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cd59ba98-3b09-48b3-ad1d-b1836cccd954"] + }, + "sort": ["Galilee Regional Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21429:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ganbu-gulinj-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Ganbu Gulinj Community Centre (known as\u00a0Edgars Creek Community Centre in planning) is part of an education and community precinct in Epping North.\u00a0 The precinct is\u00a0fully integrated,\u00a0catering for the education, active recreation, social and community service needs of the local community. The centre is located next to Edgars\u00a0Creek Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project has received two grants from the Children's Facilities Capital Program, in 2016\u201317 for $649,311, and $1 million\u00a0in 2018\u201319." + ], + "field_funding_type_name": ["New Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ganbu Gulinj Community Centre." + ], + "field_latitude": ["-37.6104645"], + "field_latitude_longitude_value": ["-37.6104645,145.00342"], + "field_latitude_value": ["-37.6104645"], + "field_longitude": ["145.00342"], + "field_longitude_value": ["145.00342"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["ELC-ECCC"], + "field_project_title": ["New Integrated Children's Centre"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["55 Macedon Pde"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21429], + "status": [true], + "title": ["Ganbu Gulinj Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ebee2333-8c2e-4d42-b51e-d9b3a2134325"] + }, + "sort": ["Ganbu Gulinj Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21288:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gannawarra-shire-childrens-centre"], + "changed": ["2023-09-22T16:18:05+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded\u00a0the centre in preparation for the roll-out of subsidised kindergarten for 3-year-olds. This expansion of the current integrated children's centre will allow for the continued delivery of Long Day Care places and help accommodate increasing demand.", + "We upgraded the outdoor playground. The space is now more inclusive for children of all abilities. It allows for more sensory and exploratory play. A diverse range of experiences will help children with their learning and development." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $600,000 was allocated to the project.", + "In the 2021\u201322 Building Blocks Inclusion Grants, $199,690 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gannawarra Shire Children's Centre." + ], + "field_latitude": ["-35.7305137"], + "field_latitude_longitude_value": ["-35.7305137,143.9142577"], + "field_latitude_value": ["-35.7305137"], + "field_longitude": ["143.9142577"], + "field_longitude_value": ["143.9142577"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3579"], + "field_project_code": ["15-5016", "D1-15-5016"], + "field_project_title": [ + "Building Blocks Capacity Grant - Expansion", + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q1 2022", "Q3 2023"], + "field_start_date": ["Q4 2020", "Q3 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2 Murray St"], + "field_suburb": ["Kerang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21288], + "status": [true], + "title": ["Gannawarra Shire Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["53d6e119-6e4d-449a-8ff0-8e5a3a534aad"] + }, + "sort": ["Gannawarra Shire Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20232:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gardenvale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We built an indoor inclusive learning art room, including upgraded environment and interior works.", + "We refurbished toilet blocks at both campuses to improve accessibility, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 6 of the Inclusive Schools Fund, this project received $178,000.", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": [ + "Planning", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Gardenvale Primary School." + ], + "field_latitude": ["-37.902578", "-37.902578"], + "field_latitude_longitude_value": ["-37.902578,145.015392"], + "field_latitude_value": ["-37.902578"], + "field_longitude": ["145.015392", "145.015392"], + "field_longitude_value": ["145.015392"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3187"], + "field_project_code": ["D2-01-3897", "D1-01-3897", "01-3897"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q1 2023", + "Q4 2022" + ], + "field_start_date": ["Q2 2023", "Q2 2021", "Q4 2020"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["66 Landcox St"], + "field_suburb": ["Brighton East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20232], + "status": [true], + "title": ["Gardenvale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["26e16d6f-8c82-4bf1-aa06-b6856f5e26eb"] + }, + "sort": ["Gardenvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20680:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/garrang-wilam-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Truganina. It opened in 2021 and helps the growing local population get great education close to home. Natalie Nelson was\u00a0appointed as the first principal. Enrolments are now open for Prep to Year 6.\u00a0 Your new school includes the following facilities: 2 learning neighbourhoods administration building outdoor play courts performing arts and physical education building sports field.\u00a0 A\u00a0kinder is being planned\u00a0next to the school. This may\u00a0help local\u00a0children make\u00a0a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Further information on the school, including enrolment,\u00a0can be found on its\u00a0official Facebook page. School name Garrang Wilam Primary\u00a0School (pronounced ga-rung wil-em) was originally known by the interim\u00a0name of Truganina South East Primary\u00a0School while it was being planned and built. Garrang Wilam Primary School was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. Garrang Wilam is from the Woi-wurrung language, as spoken by the Wurundjeri people, and means\u00a0\u2018eucalyptus home\u2019. We consulted\u00a0with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Garrang Wilam Primary School." + ], + "field_latitude": ["-37.828128"], + "field_latitude_longitude_value": ["-37.828128,144.725178"], + "field_latitude_value": ["-37.828128"], + "field_longitude": ["144.725178"], + "field_longitude_value": ["144.725178"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-5574"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Canvas St"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20680], + "status": [true], + "title": ["Garrang Wilam Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3456b4ae-8ec6-4d6f-b1ee-c7db0ec635b2"] + }, + "sort": ["Garrang Wilam Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20601:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/geelong-east-primary-school"], + "changed": ["2023-07-26T15:57:02+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at the school by building new classrooms.", + "\u200bWe\u00a0upgraded\u00a0and modernised\u00a0Geelong East Primary School, including refurbishing classrooms and facilities in poor condition.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $3.39 million", + "In the 2017-18 State Budget, $1 million was allocated to the school" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Geelong East Primary School" + ], + "field_latitude": ["-38.175468"], + "field_latitude_longitude_value": ["-38.175468,144.382355"], + "field_latitude_value": ["-38.175468"], + "field_longitude": ["144.382355"], + "field_longitude_value": ["144.382355"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["D1-01-541", "01-541"], + "field_project_title": [ + "Upgrade and Modernisation - Classrooms", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2025", "Q4 2019"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["184 Boundary Road"], + "field_suburb": ["Geelong East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20601], + "status": [true], + "title": ["Geelong East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a1e1b31e-bc8c-4106-a4ab-159a5c29746f"] + }, + "sort": ["Geelong East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20797:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/geelong-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe\u00a0completed\u00a0a major school regeneration and modernisation which included\u00a0new staff\u00a0and teaching spaces, amenities and arts facilities.\u00a0 Facilities \u200bThe refurbishment included\u00a0upgrades in the following four buildings: C.A. Love Hall\u00a0gained new music and dance facilities which will enhance the school's reputation in the performing arts. The Kroger Building\u00a0gained\u00a0a new two-level extension featuring reception, administration, general\u00a0purpose classrooms, IT\u00a0workspaces, library, canteen, student facilities and a passenger lift. In the\u00a0Winstanley Building, we refurbished\u00a0general classrooms, staff offices, the technology centre and\u00a0utilities, and installed\u00a0a new lift. The R.J. Vague Wing\u00a0gained new art, media and visual communication facilities, as well as a\u00a0new link to the Kroger Building.\u200b School Design Awards This project, designed by McGlashan Everist, was a finalist for \u2018Best School Project Above $10 million\u2019 in the\u00a02020 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2014\u201315 State Budget, $8.5 million was allocated to the school. In the 2015\u201316 State Budget, $12 million was allocated to the school. In the 2019\u201320 State Budget, the school received $2.2 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Geelong High School" + ], + "field_latitude": ["-38.152800"], + "field_latitude_longitude_value": ["-38.152800,144.373800"], + "field_latitude_value": ["-38.152800"], + "field_longitude": ["144.373800"], + "field_longitude_value": ["144.373800"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["01-7855"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["385 Ryrie St"], + "field_suburb": ["East Geelong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20797], + "status": [true], + "title": ["Geelong High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["70d6818d-b3d6-49b3-844a-2a2b3dcddb84"] + }, + "sort": ["Geelong High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21177:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/geelong-lutheran-college"], + "changed": ["2023-09-06T15:55:31+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school build a new Year 11 and 12 Hub. The hub will include 12 general learning areas, break-out learning spaces and flexible rooms for smaller tutorial classes. The new Year 11 and 12 hub will also have a Year 12 common space, presentation room, outdoor learning areas and student and staff amenities.", + "\u200bThe completed project provided 2 senior science rooms, 5 general learning areas, a carpark extension and covered walkways. This project\u00a0also included landscaping and associated site works.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2.8 million.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2,040,029 was allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Geelong Lutheran College." + ], + "field_latitude": ["-38.231609"], + "field_latitude_longitude_value": ["-38.231609,144.338013"], + "field_latitude_value": ["-38.231609"], + "field_longitude": ["144.338013"], + "field_longitude_value": ["144.338013"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["d1-03-2056", "03-2056"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q4 2023", "Q1 2018"], + "field_start_date": ["Q4 2022", "Q3 2016"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["2\u201338 Burvilles Rd"], + "field_suburb": ["Armstrong Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21177], + "status": [true], + "title": ["Geelong Lutheran College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8df5fca8-7335-499a-ab5d-a3761731c868"] + }, + "sort": ["Geelong Lutheran College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20080:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/geelong-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive indoor learning space, including acoustic treatments.", + "We built a new gymnasium. The school can use it for many different purposes. We also completed landscaping, including a new grassed area and tiered seating.", + "We replaced roof sheeting, guttering and downpipe. We also refurbished the ceiling." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $179,180.", + "In the 2020\u201321 State Budget, the school received $2.301 million.", + "In Round 2 of the Minor Capital Works Fund, the project received $419,249." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Geelong South Primary School." + ], + "field_latitude": ["-38.156945", "-38.16644287109375", "-38.156945"], + "field_latitude_longitude_value": ["-38.156945,144.358566"], + "field_latitude_value": ["-38.156945"], + "field_longitude": ["144.358566", "144.36257934570312", "144.358566"], + "field_longitude_value": ["144.358566"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["D1-01-2143", "01-2143", "D2-01-2143"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q4 2023", "Q3 2023", "Q4 2023"], + "field_start_date": ["Q4 2021", "Q4 2020", "Q4 2021"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["200 Yarra St"], + "field_suburb": ["South Geelong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20080], + "status": [true], + "title": ["Geelong South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["081f452a-c8c1-4c96-90b2-6dbff6fd0891"] + }, + "sort": ["Geelong South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21490:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/geelong-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bSecondary school students from the Geelong area\u00a0have access to cutting-edge learning at the school, hosted by The Gordon Institute of TAFE. The school is be a high-tech learning environment. Its innovative education programs will link with local industry to deliver real world learning. Students from 23 partner schools in Geelong will access the school throughout the year for specialised programs. The school will emphasise the vital science, technology, engineering and mathematics skills needed for the 21st century. It\u00a0enhances the programs schools provide, and help prepare students for the jobs of the future. \u200b \u200b \u200b \u200b Site and host The Gordon Institute of TAFE is hosting\u00a0the Geelong Tech School at its central Geelong campus. The Director\u00a0of the Geelong Tech School is Leanne Collins.\u200b Industry and education focus The school has\u00a0an education focus aligned to industries that are predicted to experience strong economic and employment growth:\u200b professional, scientific and technical services health and social assistance transport, defence and construction technologies.\u200b Enrolment and partners \u200bSecondary students from 23\u00a0partner schools\u00a0have access to high-tech learning at the cutting edge school. School partners Bellarine Secondary College Belmont High School Christian College:\u00a0Bellarine campus\u200b, Highton\u00a0campus\u200b Institute of Senior Education\u00a0 Clonard College Covenant College Geelong Baptist College Geelong Grammar School Geelong High School Geelong Lutheran College Grovedale College Kardinia International College Lara Secondary College Matthew Flinders Girls Secondary College Newcomb Secondary College North Geelong Secondary College Northern Bay P-12 College Oberon High School Sacred Heart College Saint Ignatius College Geelong St Joseph's College Geelong Surf Coast Secondary College The Geelong College Western Heights Secondary College\u200b Other Partners\u200b Aust\u200bengg CSIRO Deakin University\u00a0 Ford Geelong Chamber of Commerce Geelong Manufacturing Council Geelong Region LLEN Regional Development Victoria\u200b Superinteractive" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Geelong Tech School." + ], + "field_latitude": ["-38.1567993164062"], + "field_latitude_longitude_value": [ + "-38.1567993164062,144.345504760742" + ], + "field_latitude_value": ["-38.1567993164062"], + "field_longitude": ["144.345504760742"], + "field_longitude_value": ["144.345504760742"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["TS-Ge"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "The Gordon Institute of TAFE, Central Geelong Campus, 2 Fenwick St" + ], + "field_suburb": ["Geelong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21490], + "status": [true], + "title": ["Geelong Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cffab937-6298-4ce9-9958-8a91b7e66c42"] + }, + "sort": ["Geelong Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27786:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gembrook-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $84,630." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gembrook Primary School" + ], + "field_latitude": ["-37.951638"], + "field_latitude_longitude_value": ["-37.951638,145.545319"], + "field_latitude_value": ["-37.951638"], + "field_longitude": ["145.545319"], + "field_longitude_value": ["145.545319"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3783"], + "field_project_code": ["01-2506"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["50 Main St"], + "field_suburb": ["Gembrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27786], + "status": [true], + "title": ["Gembrook Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["80d1b569-4780-4f57-8302-5eabde1f0e5e"] + }, + "sort": ["Gembrook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21358:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/generations-early-learning"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe helped build an early learning centre,\u00a0alongside\u00a0an\u00a0aged-care\u00a0residence. It\u00a0offers kindergarten places\u00a0for\u00a022\u00a0three-year-olds\u00a0and 22 four-year-olds.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019-20 Children's Facilities Capital Program $1,333,435.00 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Generations Early Learning" + ], + "field_latitude": ["-34.164468"], + "field_latitude_longitude_value": ["-34.164468,142.057094"], + "field_latitude_value": ["-34.164468"], + "field_longitude": ["142.057094"], + "field_longitude_value": ["142.057094"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3505"], + "field_project_code": ["15-CELC"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["3-15 Third Street"], + "field_suburb": ["Merbein"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21358], + "status": [true], + "title": ["Generations Early Learning"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dc9beb86-8093-4d5e-8f76-1c04b3563df1"] + }, + "sort": ["Generations Early Learning"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20350:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/george-street-primary-school-hamilton"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. The new building features a library, general purpose classroom, administration spaces, first aid room and\u00a0staff amenities. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "We\u00a0upgraded and modernised facilities at the school, including the refurbishment of classrooms and facilities that were in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $2.273 million through the Permanent Modular School Buildings Program.", + "In the 2018\u201319 State Budget $200,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at George Street Primary School - Hamilton" + ], + "field_latitude": ["-37.746368"], + "field_latitude_longitude_value": ["-37.746368,142.035568"], + "field_latitude_value": ["-37.746368"], + "field_longitude": ["142.035568"], + "field_longitude_value": ["142.035568"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3300"], + "field_project_code": ["D1-01-4777", "01-4777"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2021", "Q3 2019"], + "field_start_date": ["Q2 2019", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["32-48 George St"], + "field_suburb": ["Hamilton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20350], + "status": [true], + "title": ["George Street Primary School - Hamilton"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0e18e64a-874d-4a56-ac2b-6a9b8fb58137"] + }, + "sort": ["George Street Primary School - Hamilton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20688:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gilgai-plains-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Kalkallo. It opened in 2022 and helps the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Anthea Jamieson was appointed as the first principal of the school. The school was previously known by its interim name, Kalkallo Common Primary School, during the planning phase. We consulted with the community on the school's name from 11 June to 25 June 2021. Gilgai (pronounced gihl-guy) is a Woi wurrung word of the Wurundjeri people meaning small waterhole. Facilities The school has the following facilities: an administration building, which includes library, art, food and science learning spaces a performing arts and physical education building 2 learning neighbourhoods 2 outdoor hardcourts sports field bike shed playgrounds Design consultation In 2018, we consulted with local communities gaining new schools in Melbourne's fastest growing outer suburbs \u2013 including Gilgai Plains Primary School. We captured each local area's broad aspirations and used this feedback in our concept designs. During January and February 2020, we held a second round of engagement. We invited locals to share their ideas and the things that mattered most about their new school. Families wanted to see: a big courtyard area with native plants in their new school areas for socialising that students and parents could use before and after school areas for both individual and group learning spaces to be creative They also wanted art, music and outdoor play integrated into the school. Our consultation received strong and consistent feedback. Our architects used this to help shape your school's design. Kinder We helped expand the kinder next to Gilgai Plains Primary School. This may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children. This was provided in partnership with Hume City Council." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school shared in $438.6 million of funding for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Gilgai Plains Primary School." + ], + "field_latitude": ["-37.532269"], + "field_latitude_longitude_value": ["-37.532269,144.958592"], + "field_latitude_value": ["-37.532269"], + "field_longitude": ["144.958592"], + "field_longitude_value": ["144.958592"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/GilgaiPlainsPS_211207_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-5584"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Sequoia Dr"], + "field_suburb": ["Kalkallo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20688], + "status": [true], + "title": ["Gilgai Plains Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4d3f37aa-e6b5-4254-91cf-997670ac01d2"] + }, + "sort": ["Gilgai Plains Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21147:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gilson-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Gilson College to\u00a0complete works to\u00a0an inherited, unfinished two-storey building.\u00a0This\u00a0included the fit-out of the ground level to create a library, five general learning areas, amenities, associated staff office and storage space, as well as associated site works and landscaping.\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015-16 to 2018-19 Capital Funding Program for Non-Government Schools, $997,500 was allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gilson College" + ], + "field_latitude": ["-37.72335"], + "field_latitude_longitude_value": ["-37.72335,144.76316"], + "field_latitude_value": ["-37.72335"], + "field_longitude": ["144.76316"], + "field_longitude_value": ["144.76316"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3037"], + "field_project_code": ["03-1742"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["450 Taylors Road"], + "field_suburb": ["TAYLORS HILL"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21147], + "status": [true], + "title": ["Gilson College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e3dcd95c-6c51-4eda-8702-ccf05cda2205"] + }, + "sort": ["Gilson College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21433:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gilson-college-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a\u00a0new kindergarten\u00a0at Gilson College. The creation of a four-room centre will provide access to high quality learning environments from first steps in education, through to the end of Year 12." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gilson College Early Learning Centre" + ], + "field_latitude": ["-37.72335"], + "field_latitude_longitude_value": ["-37.72335,144.76316"], + "field_latitude_value": ["-37.72335"], + "field_longitude": ["144.76316"], + "field_longitude_value": ["144.76316"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3037"], + "field_project_code": ["ELC-GCELC"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["450 Taylors Road"], + "field_suburb": ["Taylors Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21433], + "status": [true], + "title": ["Gilson College Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d48db413-4f65-4dc0-af06-22028da8df45"] + }, + "sort": ["Gilson College Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21141:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gippsland-grammar"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Gippsland\u00a0Grammar to build\u00a0a Year 3/4 complex at the St Anne's campus.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-18 Capital Funding Program for Non-Government Schools, $889,870 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gippsland Grammar" + ], + "field_latitude": ["-38.09474"], + "field_latitude_longitude_value": ["-38.09474,147.06818"], + "field_latitude_value": ["-38.09474"], + "field_longitude": ["147.06818"], + "field_longitude_value": ["147.06818"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["03-1218"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["417 York Street"], + "field_suburb": ["SALE"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21141], + "status": [true], + "title": ["Gippsland Grammar"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a557f513-1fad-4eee-8660-fd24e383d197"] + }, + "sort": ["Gippsland Grammar"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21292:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/gippsland-lakes-community-health-childrens-centre" + ], + "changed": ["2023-07-11T14:21:05+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built covered walkways between the main building and the portable classrooms. We installed a verandah over the accessible ramp through to the carpark drop-off area. Not only will this make the centre more welcoming, it will allow solar panels to be installed in the future.\u00a0", + "In partnership with Gippsland Lakes Community Health, we upgraded Gippsland Lakes Community Health Children's Centre. The upgrade included: building and installing purpose-built modular kindergarten facilities increasing kindergarten capacity for three and four-year-olds. Modular kindergartens are relocatable buildings that can be produced in a matter of months and flexibly deployed where needed. This significantly reduces timelines and costs. The use of modular buildings helps deliver high-quality, long-lasting, purpose-built kindergarten infrastructure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $135,360 was allocated to this project.", + "In 2019\u201320, this project was allocated $377,845 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gippsland Lakes Community Health Children's Centre" + ], + "field_latitude": ["-37.873", "-37.873"], + "field_latitude_longitude_value": ["-37.873,148.00309"], + "field_latitude_value": ["-37.873"], + "field_longitude": ["148.00309", "148.00309"], + "field_longitude_value": ["148.00309"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3909"], + "field_project_code": ["D1-15-5191", "15-5191"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q2 2023", "Q1 2021"], + "field_start_date": ["Q3 2022", "Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["49B Coates Rd"], + "field_suburb": ["Lakes Entrance"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21292], + "status": [true], + "title": ["Gippsland Lakes Community Health Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f494aa1f-ef9e-458e-a2c5-f3f3d3329908"] + }, + "sort": ["Gippsland Lakes Community Health Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21491:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gippsland-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Secondary school students from the Gippsland (Latrobe Valley) area now have access to cutting-edge learning at the Gippsland Tech School, hosted by Federation Training at its Morwell campus. The Tech School is a high-tech learning environment. Its innovative education programs link with local industry to deliver real world learning. Students from eight partner schools in Gippsland are able to access the Tech School throughout the year for specialised programs. Gippsland Tech School emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future.\u200b The Gippsland Tech School will have an education focus aligned to industries that are predicted to experience strong economic and employment growth: Food and fibre Health New energy Advanced manufacturing.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Gippsland Tech School" + ], + "field_latitude": ["-38.23811"], + "field_latitude_longitude_value": ["-38.23811,146.4216"], + "field_latitude_value": ["-38.23811"], + "field_longitude": ["146.4216"], + "field_longitude_value": ["146.4216"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Cutting-edge learning at Gippsland Tech School" + ], + "field_postcode": ["3840"], + "field_project_code": ["TS-Gi"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Federation Training, Morwell Campus, Monash Way" + ], + "field_suburb": ["Morwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21491], + "status": [true], + "title": ["Gippsland Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["93f7dc34-19e6-47b3-b1c3-5dfaf3e23038"] + }, + "sort": ["Gippsland Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22650:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/girgarre-community-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We repainted the interior and exterior of the kindergarten. We also replaced damaged corrugated iron on the roof." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $136,500 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Girgarre Community Kindergarten" + ], + "field_latitude": ["-36.39827598"], + "field_latitude_longitude_value": ["-36.39827598,144.974606"], + "field_latitude_value": ["-36.39827598"], + "field_longitude": ["144.974606"], + "field_longitude_value": ["144.974606"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3624"], + "field_project_code": ["15-414"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["2 School Rd"], + "field_suburb": ["Girgarre"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22650], + "status": [true], + "title": ["Girgarre Community Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5dd6dc2e-6f6a-496d-86fc-06d696882825"] + }, + "sort": ["Girgarre Community Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21287:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/girrabanya-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The City of Ballarat upgraded the kindergarten to increase capacity and provide more kindergarten, day-care and occasional care places.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the Children's Facilities Capital Program $1.25 million was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Girrabanya Children's Centre" + ], + "field_latitude": ["-37.565311"], + "field_latitude_longitude_value": ["-37.565311,143.862885"], + "field_latitude_value": ["-37.565311"], + "field_longitude": ["143.862885"], + "field_longitude_value": ["143.862885"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["15-50"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["11B Steinfeld St"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21287], + "status": [true], + "title": ["Girrabanya Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["75130304-bc14-4ae3-b9fb-ca0aac3f3822"] + }, + "sort": ["Girrabanya Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20116:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gisborne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Gisborne Primary School.\u00a0 We built\u00a0a new community hub, competition-grade gymnasium, and administration building. We repurposed the old gym as a new learning hub and upgraded the playground facilities.", + "We upgraded\u00a0facilities at Gisborne Primary School.\u00a0 This included refurbishing\u00a0the Block C learning areas in order to ensure that students can\u00a0learn in facilities equipped for\u00a0delivering a\u00a0modern education.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget the school received $10 million.", + "The 2017-18 State Budget allocated $1.628 million to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Gisborne Primary School" + ], + "field_latitude": ["-37.490570"], + "field_latitude_longitude_value": ["-37.490570,144.588257"], + "field_latitude_value": ["-37.490570"], + "field_longitude": ["144.588257"], + "field_longitude_value": ["144.588257"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3437"], + "field_project_code": ["D1-01-262", "01-262"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q1 2022", "Q2 2019"], + "field_start_date": ["Q2 2018", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["35 Fisher Street"], + "field_suburb": ["Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20116], + "status": [true], + "title": ["Gisborne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3fc84426-574e-464f-8c1a-4acd6d04f444"] + }, + "sort": ["Gisborne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20799:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gisborne-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at the school. We'll build a trades hub, providing students with modern, innovative, hands-on learning spaces.", + "We are upgrading and modernising the school, including Block B. We will also build new basketball and netball towers. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $5.8 million", + "In the 2021\u201322 State Budget, the school received $12.928 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Gisborne Secondary College." + ], + "field_latitude": ["-37.4974429"], + "field_latitude_longitude_value": ["-37.4974429,144.5841521"], + "field_latitude_value": ["-37.4974429"], + "field_longitude": ["144.5841521"], + "field_longitude_value": ["144.5841521"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3437"], + "field_project_code": ["D1-01-7857", "01-7857"], + "field_project_title": [ + "Upgrade and Modernisation - Trades Hub", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2026", "Q4 2024"], + "field_start_date": ["Q2 2023", "Q2 2021"], + "field_status_name": ["Design", "Construction"], + "field_street_address": ["95 Melton Rd"], + "field_suburb": ["Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20799], + "status": [true], + "title": ["Gisborne Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["26dd195e-d981-4c3b-abdd-3c0105748625"] + }, + "sort": ["Gisborne Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20466:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gladesville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe redeveloped an indoor calm room into a modern, flexible, indoor and outdoor therapeutic\u00a0learning\u00a0space for students.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $117,300 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Gladesville Primary School" + ], + "field_latitude": ["-37.81007"], + "field_latitude_longitude_value": ["-37.81007,145.3257"], + "field_latitude_value": ["-37.81007"], + "field_longitude": ["145.3257"], + "field_longitude_value": ["145.3257"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3137"], + "field_project_code": ["01-5066"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Gladesville Dr"], + "field_suburb": ["Kilsyth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20466], + "status": [true], + "title": ["Gladesville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["638dbe74-735c-46f8-a526-6a65c0ead999"] + }, + "sort": ["Gladesville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20440:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gladstone-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new single level neighbourhood cluster with four\u00a0classrooms, teacher work spaces, withdrawal spaces and learning resources storage. This replaced older facilities, ensuring that students learn in facilities designed for modern education.", + "We upgraded and modernised facilities at Gladstone Park Primary School, including\u00a0constructing a new learning neighborhood consisting of classrooms, teacher work spaces and\u00a0withdrawal spaces.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $252,400. In 2020, the school received $2.27 million.", + "In the 2018-19 State Budget $1.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Gladstone Park Primary School" + ], + "field_latitude": ["-37.687880", "-37.687881"], + "field_latitude_longitude_value": ["-37.687880,144.887580"], + "field_latitude_value": ["-37.687880"], + "field_longitude": ["144.887580", "144.887573"], + "field_longitude_value": ["144.887580"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3043"], + "field_project_code": ["D1-01-5007", "01-5007"], + "field_project_title": [ + "Upgrade and Modernisation - Block B", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2021", "Q3 2020"], + "field_start_date": ["Q2 2019", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["15 - 25 South Circular Road"], + "field_suburb": ["Gladstone Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20440], + "status": [true], + "title": ["Gladstone Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dd59e667-aebb-4fb6-ae53-01a996476c4e"] + }, + "sort": ["Gladstone Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33017:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gladstone-park-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Gladstone Park Secondary College" + ], + "field_latitude": ["-37.689766"], + "field_latitude_longitude_value": ["-37.689766,144.890003"], + "field_latitude_value": ["-37.689766"], + "field_longitude": ["144.890003"], + "field_longitude_value": ["144.890003"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3043"], + "field_project_code": ["01-7858"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["14 - 36 Taylor Drive"], + "field_suburb": ["Gladstone Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33017], + "status": [true], + "title": ["Gladstone Park Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["c436738c-7578-42fc-a6eb-36f37d593da6"] + }, + "sort": ["Gladstone Park Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20476:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gladstone-views-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed\u00a0tired old classrooms and facilities at the school, including completing\u00a0major improvements to the school's junior wing\u00a0in the Senior Block." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.126 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Gladstone Views Primary School." + ], + "field_latitude": ["-37.68897"], + "field_latitude_longitude_value": ["-37.68897,144.89764"], + "field_latitude_value": ["-37.68897"], + "field_longitude": ["144.89764"], + "field_longitude_value": ["144.89764"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3043"], + "field_project_code": ["01-5093"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["195-227 Carrick Dr"], + "field_suburb": ["Gladstone Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20476], + "status": [true], + "title": ["Gladstone Views Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1fd8e8fe-d55a-419f-831b-9bae3f509af9"] + }, + "sort": ["Gladstone Views Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20246:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gladysdale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.187 million. In 2022, the school was allocated $0.446 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Gladysdale Primary School." + ], + "field_latitude": ["-37.8204746"], + "field_latitude_longitude_value": ["-37.8204746,145.6511429"], + "field_latitude_value": ["-37.8204746"], + "field_longitude": ["145.6511429"], + "field_longitude_value": ["145.6511429"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3797"], + "field_project_code": ["01-3982"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["550 Little Yarra Rd"], + "field_suburb": ["Gladysdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20246], + "status": [true], + "title": ["Gladysdale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b5d1d03b-e0cc-4a17-8275-9abb29ae8b7a"] + }, + "sort": ["Gladysdale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34243:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glass-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping the City of Boroondara plan to redevelop Glass Street Kindergarten. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Glass Street Kindergarten" + ], + "field_latitude": ["-37.793868"], + "field_latitude_longitude_value": ["-37.793868,145.060773"], + "field_latitude_value": ["-37.793868"], + "field_longitude": ["145.060773"], + "field_longitude_value": ["145.060773"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3102"], + "field_project_code": ["15-704"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["16A Glass Street"], + "field_suburb": ["Kew East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34243], + "status": [true], + "title": ["Glass Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["eac19a9e-7cce-408e-a562-cca7d17710f6"] + }, + "sort": ["Glass Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20885:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glen-eira-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We're building on our previous upgrades and modernisation at the school, this time adding new facilities that will allow it to offer places to an extra 250 local students. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We upgraded the school. This\u00a0included\u00a0refurbishing learning spaces in a flexible and connected way and grouping junior classes and senior classes together to give the students a sense of their own community. We also\u00a0extended\u00a0the sports centre with a single-court\u00a0competition-grade\u00a0gymnasium.\u200b The canteen was also\u00a0demolished and relocated.", + "We built\u00a0a sensory garden, adjacent to the wellbeing centre, that\u00a0incorporates a kitchen garden and outdoor dining area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received at least $6.577 million, with a further $10 million in 2023.", + "In the 2016\u201317 State Budget, $8.55 million was allocated to the school. In the 2015\u201316 State Budget, $950,000 was allocated to the school. The school also received $600,000 in School Pride and Sports Funding.", + "In 2018, $134,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glen Eira College" + ], + "field_latitude": ["-37.885197", "-37.88523"], + "field_latitude_longitude_value": ["-37.885197,145.037588"], + "field_latitude_value": ["-37.885197"], + "field_longitude": ["145.037588", "145.038"], + "field_longitude_value": ["145.037588"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3145"], + "field_project_code": ["D2-01-8704", "01-8704", "D1-01-8704"], + "field_project_title": [ + "Upgrade and Modernisation - Building Capacity", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q2 2018", "Q3 2019"], + "field_start_date": ["Q2 2021", "Q4 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["76 Booran Rd"], + "field_suburb": ["Caulfield East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20885], + "status": [true], + "title": ["Glen Eira College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e5f5955c-7630-435b-b095-248eadad03b1"] + }, + "sort": ["Glen Eira College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20219:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glen-huntly-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed the school by refurbishing the library and administration block. We also built a competition-grade gym.", + "We resurfaced the oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $500,000. In 2020, the school received $6.62 million.", + "In the 2017-18 State Budget, $309,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glen Huntly Primary School" + ], + "field_latitude": ["-37.89253", "-37.89253"], + "field_latitude_longitude_value": ["-37.89253,145.04581"], + "field_latitude_value": ["-37.89253"], + "field_longitude": ["145.04581", "145.04582"], + "field_longitude_value": ["145.04581"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3163"], + "field_project_code": ["D1-01-3703", "01-3703"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q1 2023", "Q2 2019"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Grange Road"], + "field_suburb": ["Glen Huntly"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20219], + "status": [true], + "title": ["Glen Huntly Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d7906c78-1269-435e-b1a0-d728a6f44897"] + }, + "sort": ["Glen Huntly Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19954:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glen-iris-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We upgraded the synthetic turf across the student play, recreation and physical education areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,847", + "In the 2020 Minor Capital Works Fund, the school was allocated $343,665." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glen Iris Primary School." + ], + "field_latitude": ["-37.860483", "-37.859767"], + "field_latitude_longitude_value": ["-37.860483,145.065894"], + "field_latitude_value": ["-37.860483"], + "field_longitude": ["145.065894", "145.065997"], + "field_longitude_value": ["145.065894"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3146"], + "field_project_code": ["D1-01-1148", "01-1148"], + "field_project_title": [ + "Inclusive Schools Fund - Round 9", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2022"], + "field_start_date": ["Q4 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["170 Glen Iris Rd"], + "field_suburb": ["Glen Iris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19954], + "status": [true], + "title": ["Glen Iris Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["efcd0384-5942-4ebd-9e13-51ac99190b84"] + }, + "sort": ["Glen Iris Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27787:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glen-katherine-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Glen Katherine Primary School" + ], + "field_latitude": ["-37.689982"], + "field_latitude_longitude_value": ["-37.689982,145.139837"], + "field_latitude_value": ["-37.689982"], + "field_longitude": ["145.139837"], + "field_longitude_value": ["145.139837"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["01-5260"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["39 Calendonia Dr"], + "field_suburb": ["Eltham North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27787], + "status": [true], + "title": ["Glen Katherine Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["de4ca7a6-ce67-4fab-9fea-19d95cd1eb09"] + }, + "sort": ["Glen Katherine Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20086:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glen-waverley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new school multi purpose space incorporating a single court\u00a0competition grade gym. The\u00a0funding also\u00a0facilitates planning for future works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $2 million was allocated to the school. The school also received $650,000 in School Pride and Sports Funding." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Glen Waverley Primary School" + ], + "field_latitude": ["-37.88496"], + "field_latitude_longitude_value": ["-37.88496,145.16475"], + "field_latitude_value": ["-37.88496"], + "field_longitude": ["145.16475"], + "field_longitude_value": ["145.16475"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-2219"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["356-380 Springvale Road"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20086], + "status": [true], + "title": ["Glen Waverley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["54d5bc91-58f7-4bae-8641-93b47ae28c58"] + }, + "sort": ["Glen Waverley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20617:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glen-waverley-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including blocks A and B. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $9.639 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Glen Waverley South Primary School." + ], + "field_latitude": ["-37.8969037001941"], + "field_latitude_longitude_value": [ + "-37.8969037001941,145.169547099925" + ], + "field_latitude_value": ["-37.8969037001941"], + "field_longitude": ["145.169547099925"], + "field_longitude_value": ["145.169547099925"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-5436"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Whites Lane"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20617], + "status": [true], + "title": ["Glen Waverley South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b157ca26-2c7b-41c2-a893-c768593ecc83"] + }, + "sort": ["Glen Waverley South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20421:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenallen-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Glenallen School has benefited from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million.With this funding we delivered the next stage of the school's master plan.\u00a0", + "We built\u00a0a new ramp to the entrance of\u00a0the school to improve safety and access. We also\u00a0refurbished\u00a0some of the bathroom facilities. \u00a0", + "We've\u00a0improved\u00a0facilities for staff and students. Works completed\u00a0include: refurbishing student toilets in the junior and senior school buildings upgrading the pool change rooms treating pool tiling to provide a non-slip surface\u00a0 installing secure storage cupboards for chemicals in classrooms.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $7.988 million.", + "The school received an additional $700,000 in the 2018\u201319 State Budget.", + "The 2016\u201317 State Budget, allocated $2 million to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glenallen School." + ], + "field_latitude": ["-37.882320404052734", "-37.887650"], + "field_latitude_longitude_value": [ + "-37.882320404052734,145.171630859375" + ], + "field_latitude_value": ["-37.882320404052734"], + "field_longitude": ["145.171630859375", "145.161896"], + "field_longitude_value": ["145.171630859375"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["D2-01-4968", "01-4968", "D1-01-4968"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q2 2023", "Q4 2019", "Q3 2018"], + "field_start_date": ["Q4 2020", "Q2 2016"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["7 Allen St"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20421], + "status": [true], + "title": ["Glenallen School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["82a6e454-e58b-445c-b8fe-7d71de3ea7a7"] + }, + "sort": ["Glenallen School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20442:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glendal-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to replace the carpet in the library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $67,805" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Glendal Primary School" + ], + "field_latitude": ["-37.8670814"], + "field_latitude_longitude_value": ["-37.8670814,145.1590212"], + "field_latitude_value": ["-37.8670814"], + "field_longitude": ["145.1590212"], + "field_longitude_value": ["145.1590212"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-5010"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["55 Nottingham Street"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20442], + "status": [true], + "title": ["Glendal Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1cfe5691-9798-47b2-9869-cf5955a7b5e8"] + }, + "sort": ["Glendal Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20951:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gleneagles-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a new VCE centre for the school.", + "We\u00a0built a synthetic soccer pitch with floodlighting and car parking\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $3.295 million.", + "This school received $415,000 from the Shared Facilities Fund. This school also received $502,000 in the 2017\u201318 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Gleneagles Secondary College" + ], + "field_latitude": ["-37.967414855957031", "-37.97338"], + "field_latitude_longitude_value": [ + "-37.967414855957031,145.26571655273437" + ], + "field_latitude_value": ["-37.967414855957031"], + "field_longitude": ["145.26571655273437", "145.27525"], + "field_longitude_value": ["145.26571655273437"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["D1-01-8869", "01-8869"], + "field_project_title": [ + "Upgrade and Modernisation - VCE Centre", + "Upgrade and Modernisation, Shared Facilities Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["58 Reema Blvd"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20951], + "status": [true], + "title": ["Gleneagles Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["395b8dc3-bd03-40de-9fd7-5bbff305057b"] + }, + "sort": ["Gleneagles Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20005:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenferrie-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe completed\u00a0roofworks on the BER building, drainage works throughout the site and maintenance works to the cottage building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019-20, the school received $330,000 for planned maintenance." + ], + "field_funding_type_name": ["Planned Maintenance Program"], + "field_landing_page_summary": [ + "Learn more about the improvements at Glenferrie Primary School" + ], + "field_latitude": ["-37.824158"], + "field_latitude_longitude_value": ["-37.824158,145.033630"], + "field_latitude_value": ["-37.824158"], + "field_longitude": ["145.033630"], + "field_longitude_value": ["145.033630"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3122"], + "field_project_code": ["01-1508"], + "field_project_title": ["Planned Maintenance Program"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["78-98 Manningtree Road"], + "field_suburb": ["Hawthorn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20005], + "status": [true], + "title": ["Glenferrie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c84a768e-fcdb-4626-83a9-745bd5914741"] + }, + "sort": ["Glenferrie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20463:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glengala-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to the school to replace the North Wing. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.", + "\u200bWe delivered a new architect-designed modular building to the school to replace the South Wing with a multi-purpose space and general purpose classrooms. Project Funding Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs.\u00a0 They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. \u200bThe school\u200b is one of the first schools to benefit from the\u00a0Permanent Modular School\u00a0Buil\u200bdings Program.\u200b School Design Awards This project, designed by Angeluuci Architects,\u00a0was a finalist in the\u00a02019 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $4,314,000.", + "In the 2017\u201318 State Budget, $1,500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glengala Primary School" + ], + "field_latitude": ["-37.79834", "-37.79834"], + "field_latitude_longitude_value": ["-37.79834,144.81204"], + "field_latitude_value": ["-37.79834"], + "field_longitude": ["144.81204", "144.81204"], + "field_longitude_value": ["144.81204"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["D1-01-5050", "01-5050"], + "field_project_title": [ + "Permanent Modular School Buildings Program - Round 3", + "Permanent Modular School Buildings Program - Round 1" + ], + "field_q_complete": ["Q2 2019", "Q2 2018"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Kermeen St"], + "field_suburb": ["Sunshine West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20463], + "status": [true], + "title": ["Glengala Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c25b0b32-9b99-470b-a5ca-5d83bf4af71e"] + }, + "sort": ["Glengala Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20140:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glengarry-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the student and staff bathrooms to improve amenity, cleanliness and hygiene.", + "We helped the school with landscaping that improves the functionality and appeal of several under-utilised areas across the school grounds.", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $499,674.", + "In the 2020 Minor Capital Works Fund the school was allocated $160,165.", + "In Round 8 of the Inclusive Schools Fund, the project received $188,840." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glengarry Primary School." + ], + "field_latitude": ["-38.127576", "-38.1278823454326", "-38.127576"], + "field_latitude_longitude_value": ["-38.127576,146.571338"], + "field_latitude_value": ["-38.127576"], + "field_longitude": ["146.571338", "146.570907751969", "146.571338"], + "field_longitude_value": ["146.571338"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3854"], + "field_project_code": ["D1-01-2888", "01-2888", "D2-2888"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Minor Capital Works Fund", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q3 2023", "Q4 2021", "Q1 2024"], + "field_start_date": ["Q4 2021", "Q4 2020", "Q4 2022"], + "field_status_name": ["Complete", "Complete", "Design"], + "field_street_address": ["Cairnbrook Rd"], + "field_suburb": ["Glengarry"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20140], + "status": [true], + "title": ["Glengarry Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3954c5b1-9cdb-42d3-a69a-de131739b6d4"] + }, + "sort": ["Glengarry Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20036:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenrowan-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the basketball and netball courts with a synthetic surface." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $168,165" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Glenrowan Primary School" + ], + "field_latitude": ["-36.4602645"], + "field_latitude_longitude_value": ["-36.4602645,146.2220885"], + "field_latitude_value": ["-36.4602645"], + "field_longitude": ["146.2220885"], + "field_longitude_value": ["146.2220885"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3675"], + "field_project_code": ["01-1742"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["40 Beaconsfield Parade"], + "field_suburb": ["Glenrowan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20036], + "status": [true], + "title": ["Glenrowan Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1823997e-b978-44f8-b3c5-70e0a1ce41e7"] + }, + "sort": ["Glenrowan Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21228:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenroy-central-kindergarten"], + "changed": ["2023-07-10T11:02:36+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new modular building to the kindergarten in preparation for the roll-out of subsidised kindergarten for 3-year-olds. The building provides families with an additional 33 kindergarten places, improves the outdoor play space, and helps cater for population growth in this community.", + "We upgraded the flooring and painted the centre. We also refurbished the ramp and play space connected to the modular building. This integrates outdoor spaces around the building to provide one continuous and connected kindergarten for three and 4-year-olds.", + "We refreshed wall and floor finishes in the existing modular kindergarten. We also aligned it with the new modular building. Our work creates a more inviting space for children, families and kindergarten staff." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream.", + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $148,093 was allocated to this project.", + "In the 2022-23 Building Blocks Improvement Grants $53,407 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Glenroy Central Kindergarten." + ], + "field_latitude": ["-37.7049569", "-37.70519393"], + "field_latitude_longitude_value": ["-37.7049569,144.9248259"], + "field_latitude_value": ["-37.7049569"], + "field_longitude": ["144.9248259", "144.9248754"], + "field_longitude_value": ["144.9248259"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["15-209", "D1-15-209", "D2-15-209"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular Kindergarten Building", + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q4 2022", "Q4 2022", "Q1 2023"], + "field_start_date": ["Q4 2021", "Q3 2021", "Q4 2022"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["10 Logan St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21228], + "status": [true], + "title": ["Glenroy Central Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4ff0f8a7-2043-4758-8c72-714b626b1ad1"] + }, + "sort": ["Glenroy Central Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20654:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenroy-central-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We upgraded the school oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $185,600.", + "In the 2020\u201321 State Budget, the school received $753,000." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glenroy Central Primary School." + ], + "field_latitude": ["-37.704276", "-37.704097747802734"], + "field_latitude_longitude_value": ["-37.704276,144.925037"], + "field_latitude_value": ["-37.704276"], + "field_longitude": ["144.925037", "144.92863464355469"], + "field_longitude_value": ["144.925037"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["d1-5542", "01-5542"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q1 2023"], + "field_start_date": ["Q4 2022", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["10 Logan St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20654], + "status": [true], + "title": ["Glenroy Central Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7a499eb3-664b-4f19-b763-f19d1be52c27"] + }, + "sort": ["Glenroy Central Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21460:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenroy-hub-early-years-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new integrated children's centre that will enable the Moreland community to access a high-quality learning environment, delivering kindergarten for\u00a0three and four-year-olds. The centre also provides long day care, maternal child health and other allied health services. Access to Glenroy Library is also provided, which includes a children's\u00a0library and a community garden. This project was known by the name of Wheatsheaf Hub Early Years while in planning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Glenroy Hub Early Years Centre" + ], + "field_latitude": ["-37.70585"], + "field_latitude_longitude_value": ["-37.70585,144.91826"], + "field_latitude_value": ["-37.70585"], + "field_longitude": ["144.91826"], + "field_longitude_value": ["144.91826"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["ELC-WSH"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": [ + "50 Wheatsheaf Road and Bridget Shortell Reserve" + ], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21460], + "status": [true], + "title": ["Glenroy Hub Early Years Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5fa930b7-35f7-4161-8d29-6e94c6b169f2"] + }, + "sort": ["Glenroy Hub Early Years Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28130:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenroy-private"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping build stage 1 of a new building. The building will include 12 general learning areas, 4 specialist classrooms, staff administration areas and student and staff amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Glenroy Private." + ], + "field_latitude": ["-37.69767758329574"], + "field_latitude_longitude_value": [ + "-37.69767758329574,144.92918178191889" + ], + "field_latitude_value": ["-37.69767758329574"], + "field_longitude": ["144.92918178191889"], + "field_longitude_value": ["144.92918178191889"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["01-2080"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["93 Daley St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28130], + "status": [true], + "title": ["Glenroy Private"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["5dde096f-7f75-4af1-bf90-08e74a413c7d"] + }, + "sort": ["Glenroy Private"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20962:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenroy-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space. This space includes shade sails, synthetic turf and seating.", + "We have built\u00a0a new senior and junior school, a state-of-the-art library (learning resource centre), administration centre and staff hub. This project replaced around half of the college's older buildings with high quality and sustainable, permanent modular buildings better suited for modern teaching and delivering 21st century education. Students have\u00a0gained\u00a0more subject choices, new opportunities and extra support to reach their full potential from the greater diversity of indoor and outdoor learning environments. College values - respect, integrity, achievement and teamwork \u2013 and school community consultation helped shape the designs. The innovative modular construction method allowed students and staff to enjoy\u00a0high quality, new surrounds in half the time of traditional building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000", + "In the 2019-20 State Budget, the school received $9.215 million." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glenroy Secondary College" + ], + "field_latitude": ["-37.7056717", "-37.705672"], + "field_latitude_longitude_value": ["-37.7056717,144.924879"], + "field_latitude_value": ["-37.7056717"], + "field_longitude": ["144.924879", "144.924879"], + "field_longitude_value": ["144.924879"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Glenroy College has a new senior and junior school, a state-of-the-art library (learning resource centre), administration centre and staff hub opening term one, 2021. We are replacing around half of the college\u2019s older buildings with architect-designed, permanent modular buildings. Glenroy College\u2019s $9.215 million modernisation project is part of the Victorian Government\u2019s $7.2 billion investment to build new schools and upgrade more than 1,460 existing ones. In 2018, they committed to continuing that record investment by opening 100 new schools by 2026. This school-building boom is supporting 9,000 construction jobs in Victoria. College values - respect, integrity, achievement and teamwork \u2013 and school community consultation helped shape the master plan and learning environment designs. It\u2019s the largest permanent modular, modernisation project being rolled-out by the Victorian School Building Authority this year. This innovative modular construction method will have students and staff enjoying high quality, new surrounds - in half the time of traditional building.", + "With a greater range of learning environments, students will gain more subject choices, new opportunities and extra support to reach their full potential in reading, maths, science, technology, hospitality, critical and creative thinking, the arts and physical education. These improvements will allow Glenroy College to enhance its whole-of-school approach \u2212 engaging and supporting the all-round development of students from junior through to their senior years. Glenroy College\u2019s new buildings will complement the school\u2019s existing specialist and sports facilities - providing students and staff with a series of connected precincts.\u00a0 These include: junior and senior learning centres learning resource centre (library) administration centre\u00a0 staff hub indoor gymnasium performing arts centre woodwork and food technology centre STEAM centre (science, technology, engineering, arts and maths) outdoor basketball and netball courts community garden expansive outdoor recreation areas.", + "Prominently located near the corner of Glenroy and Cardinal Roads, Glenroy College\u2019s new architecture will enhance the local streetscape and define the area\u2019s education precinct. Front of house The new administration centre will support teachers in offering a broad curriculum with improved access for students, families and visitors. A new way of learning Separate junior and senior learning centres will be made up of general and multipurpose teaching spaces with connections to specialist areas, helping students tailor individual pathways from a wide curriculum offering. Staff work areas co-located within the senior and junior learning centres will strengthen student-teacher bonds and increase opportunities for gaining feedback and support. Spaces for collaborative learning in \u2018neighbourhoods\u2019 and \u2018communities\u2019 will promote creativity and innovation. Junior learning centre with a small community feel The welcoming and nurturing junior learning centre is designed to help Years 7-9 students transition smoothly and thrive in their secondary school journey with the support they need. Senior learning centre empowering students We have designed the new senior learning centre to meet the learning and wider needs of Years 10-12 students in VCE and VCAL programs. As well as extending and supporting them academically, they will be able to access dedicated careers and wellbeing services. New facilities will support independent learning, empowering students to be engaged learners and leaders, and preparing them for tertiary or vocational education and future employment. Features Senior staff hub and shared staff/student kitchenette \u00b7 Year level homerooms and locker hubs\u00a0 Lecture style seating, smaller break-out spaces for tutorials, seminar and social spaces Outdoor learning and reflection spaces include decks and a private courtyard. Extended learning In the learning resource centre\u2019s flexible, multipurpose spaces, students can discover and participate in research, study, quiet reflection, reading, creation, tutorials, group meetings or discussions. Community gains The Glenroy community is set to have access to new meeting rooms in the college\u2019s library \u2013 which along with the popular gymnasium and performing arts centre is bookable for after-hours use. Building community The junior and senior learning communities are arranged around outdoor \u2018green campus hearts\u2019 (landscaped piazzas), one for junior and one for senior students. Centrally located, the campus hearts provide an inviting and safe place for school or casual gatherings, collaboration, eating, passive recreation and socialising. The great outdoors All indoor and outdoor spaces are considered as opportunities to inspire learning, enquiry and engagement. For improved health and wellbeing, each new learning environment opens onto or has an outdoor aspect. Inclusive design for student wellbeing The diversity of modern indoor and outdoor learning environments caters for students\u2019 different abilities and learning styles. Inclusive spaces create a secure and social experience for students and stronger sense of belonging. Examples include small to large classrooms; reflection nooks; one-on-one meeting rooms; breakout areas for pairs, individuals or small groups; university style tutorials through to outdoor courtyards, decks, gardens and piazzas. 21st century teaching We have designed the new staff hub to support teachers\u2019 professional development, collaboration and planning \u2013 somewhere to share ideas and resources. A separate lunch area for gatherings and quiet contemplation will offer respite from the staff workspaces within the senior and junior learning centres. To better support contemporary and evolving teaching methods, be more inclusive of all student abilities, and provide a better teaching experience, learning environments feature: comfortable, fresh modern materials and generous natural light diversity of space types and sizes opportunities for interaction, personalisation and collaboration learning neighbourhoods with breakout spaces and nooks for focus work or specialist education space for creative and flexible delivery of the curriculum \u00b7 collegiate workspaces and collaborative staff hubs \u00b7 agile spaces that can easily adapt to change.", + "The architect-designed, modular buildings are constructed in Victoria, off-site by specialist modular building manufacturers. When compared to traditional building methods, modular buildings can be delivered in half the time with less disruption to students, staff and learning programs. Making for exciting viewing, the buildings arrive on the school site, pre-built as \u2018modules\u2019 for permanent installation and interior fit-out by the builders. Sustainably designed and made, modular buildings make the most of natural light and cross-breezes. Together with thermal glazing, low-energy use lighting and quality materials \u2013 they provide comfortable and inspiring learning environments that are flexible and enduring.", + "Project design: FMSA Architecture Master plan: Crosier Scott Architects", + "Term one, 2019 & term one - 2020 Consultation with school community Term one, 2020 - Modernisation project plan released Term two, 2020 - Architect designs unveiled Term three, 2020 - Construction start (approximate) Term three and four, 2020 - Permanent modular buildings delivered, installed and fitted-out\u00a0 Term one, 2021 - New buildings open", + "You can access a designed brochure with this information:" + ], + "field_paragraph_accordion_name": [ + "Background", + "Greater choice and opportunities for students", + "Glenroy\u2019s education precinct", + "How modular construction brings quality buildings to students faster", + "Meet the designers", + "Timeline", + "Designed brochure" + ], + "field_paragraph_body": ["Design backgrounder"], + "field_postcode": ["3046"], + "field_project_code": ["D1-01-8893", "01-8893"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2023", "Q1 2021"], + "field_start_date": ["Q2 2021", "Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["120 Glenroy Road"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20962], + "status": [true], + "title": ["Glenroy Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2737c2fb-fdd5-428a-9cf3-c501e6f51d37"] + }, + "sort": ["Glenroy Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24989:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenroy-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $1.877 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Glenroy Specialist School" + ], + "field_latitude": ["-37.69935785"], + "field_latitude_longitude_value": ["-37.69935785,144.9205292"], + "field_latitude_value": ["-37.69935785"], + "field_longitude": ["144.9205292"], + "field_longitude_value": ["144.9205292"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["01-4915"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["208 Hilton St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24989], + "status": [true], + "title": ["Glenroy Specialist School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["547b8c8a-37aa-4fea-8341-3e14165d9b41"] + }, + "sort": ["Glenroy Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20361:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glenroy-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are significantly upgrading and modernising Glenroy West Primary School, adding new facilities that will allow it to offer places to an extra 200 local students. We will refurbish more than 70 per cent of the campus, giving the school a dispersed layout with three distinct learning neighbourhoods linked to outdoor classrooms. Other major improvements will include: a specialist learning centre and a large hall / administration building called the School Support Centre designing the new and refurbished buildings so they wrap around a central play and recreation area specific outdoor areas designed for a kitchen garden, inclusive playground (see 'Inclusive Schools Fund' section above) and a junior school playground a community meeting area at a relocated campus entry on Clovelly Avenue.", + "We are building an inclusive outdoor play and learning space that will engage our students in play-based learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $18.12 million, which is a share in $130.1 million from the Established Areas Program.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Glenroy West Primary School" + ], + "field_latitude": ["-37.705265", "-37.70551"], + "field_latitude_longitude_value": ["-37.705265,144.908707"], + "field_latitude_value": ["-37.705265"], + "field_longitude": ["144.908707", "144.91048"], + "field_longitude_value": ["144.908707"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["D1-01-4809", "01-4809"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q2 2024"], + "field_start_date": ["Q2 2020", "Q4 2019"], + "field_status_name": ["Construction", "Construction"], + "field_street_address": ["York St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20361], + "status": [true], + "title": ["Glenroy West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4bbcbf9b-33ad-4b29-9afe-478824883f58"] + }, + "sort": ["Glenroy West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21102:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/glowrey-catholic-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to upgrade the school. Works included: constructing 9 general learning areas and common learning areas extending the multipurpose hall completing outdoor works", + "We supported Glowrey\u00a0Catholic Primary\u00a0School to build the first stage of their\u00a0school.\u200b\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020-21 capital funding program for non-government schools, the school received $3 million.", + "$2,500,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Glowrey Catholic Primary School" + ], + "field_latitude": ["-37.6158227"], + "field_latitude_longitude_value": ["-37.6158227,145.0326422"], + "field_latitude_value": ["-37.6158227"], + "field_longitude": ["145.0326422"], + "field_longitude_value": ["145.0326422"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["D1-02-2226", "02-2226"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q4 2022", "Q1 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21102], + "status": [true], + "title": ["Glowrey Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["13b3fcfb-5da6-4a31-9cf5-6825d19b71ab"] + }, + "sort": ["Glowrey Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25465:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gold-street-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We're replacing the chain link cyclone fencing. This will reduce traffic noise and pollution coming from nearby Hoddle Street. We'll also reconfigure the front entrance to improve accessibility for children, staff and families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $132,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gold Street Children's Centre - Keele Street Campus" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3066"], + "field_project_code": ["15- 3493"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds - Keele Street Campus" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["177 Keele St"], + "field_suburb": ["Collingwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25465], + "status": [true], + "title": ["Gold Street Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["7cd5cdf5-909b-45ee-b7b7-7f77c8db7c25"] + }, + "sort": ["Gold Street Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26215:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/golden-plains-shire-council-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping Golden Plains Shire Council employ someone to oversee planning of 4 kindergarten building projects. This includes extending Teesdale Children's Centre and Haddon Kindergarten. This would create more kindergarten places for local 3 and 4-year-olds. The planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $60,747 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Golden Plains Shire Council Infrastructure Planning Project" + ], + "field_latitude": ["-38.05039116"], + "field_latitude_longitude_value": ["-38.05039116,144.1729939"], + "field_latitude_value": ["-38.05039116"], + "field_longitude": ["144.1729939"], + "field_longitude_value": ["144.1729939"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3331"], + "field_project_code": ["15-GPSC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["2 Pope St"], + "field_suburb": ["Bannockburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26215], + "status": [true], + "title": [ + "Golden Plains Shire Council Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["cb8b7aa7-2f69-4957-821c-5c856c128151"] + }, + "sort": ["Golden Plains Shire Council Infrastructure Planning Project"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21347:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/golden-square-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Golden Square Kindergarten in preparation for the roll-out of subsidised kindergarten for three-year-olds. This project increased the kindergarten's capacity by at least 66 places. The upgrade has provided a new classroom for three-year-olds, including the associated amenities, a painting and art clean-up sink area, an educators' planning room and a meeting room, along with other improvements.", + "We upgraded the bathroom at Golden Square Kindergarten. These works increased the number of children's toilets, repositioned the current accessible toilet and provided a new accessible toilet and change area for children with additional needs. We also upgraded fittings, floor coverings, skylights and solar panels." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $833,632 was allocated to the project.", + "In the 2020\u201321 Building Blocks Improvement Grant $160,291 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Golden Square Kindergarten" + ], + "field_latitude": ["-36.774186", "-36.774186"], + "field_latitude_longitude_value": ["-36.774186,144.2590734"], + "field_latitude_value": ["-36.774186"], + "field_longitude": ["144.2590734", "144.2590734"], + "field_longitude_value": ["144.2590734"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3555"], + "field_project_code": ["D1-15-92", "15-92"], + "field_project_title": [ + "Building Blocks Capacity Grant - Expansion", + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q4 2022", "Q1 2021"], + "field_start_date": ["Q4 2020", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["45 Panton St"], + "field_suburb": ["Golden Square"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21347], + "status": [true], + "title": ["Golden Square Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["01ca445a-7b54-456f-a65c-3bfd69bab023"] + }, + "sort": ["Golden Square Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21170:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/good-news-lutheran-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to construct a 2-storey junior primary school building for students in Years 1, 2, 3 and 4.", + "We supported Good News Lutheran College to\u00a0build\u00a0a 2-storey middle years building that incorporates:\u00a0 12 general learning areas collaborative learning and seminar spaces associated staff and storage spaces amenities and a lift\u200b. The project\u00a0also included a carpark\u00a0extension, landscaping and\u00a0installing\u00a0shade structures.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2,032,545 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Good News Lutheran College." + ], + "field_latitude": ["-37.8554598", "-37.85524"], + "field_latitude_longitude_value": ["-37.8554598,144.6675719"], + "field_latitude_value": ["-37.8554598"], + "field_longitude": ["144.6675719", "144.666"], + "field_longitude_value": ["144.6675719"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["D1-03-1957", "03-1957"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q3 2022", "Q4 2017"], + "field_start_date": ["Q4 2020", "Q4 2016"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["580 Tarneit Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21170], + "status": [true], + "title": ["Good News Lutheran College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6554351f-cee4-4e62-9439-1ccd1b9ad4dc"] + }, + "sort": ["Good News Lutheran College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21317:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/good-shepherd-early-childhood-services"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Lutheran Church of Australia, we upgraded\u00a0Good Shepherd Early Childhood Services.\u00a0 \u00a0 The upgrade included:\u00a0 \u00a0 increasing\u00a0kindergarten\u00a0capacity for 3 and 4-year-olds\u00a0\u00a0 renovating\u00a0bathroom and kitchen facilities\u00a0\u00a0 providing a\u00a0new consultation room for health and support services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 201920, this project was alloated $456,651 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Good Shepherd Early Childhood Services." + ], + "field_latitude": ["-37.73178"], + "field_latitude_longitude_value": ["-37.73178,142.0311"], + "field_latitude_value": ["-37.73178"], + "field_longitude": ["142.0311"], + "field_longitude_value": ["142.0311"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3300"], + "field_project_code": ["15-605"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["31 McArthur St"], + "field_suburb": ["Hamilton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21317], + "status": [true], + "title": ["Good Shepherd Early Childhood Services"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["32531464-5a54-4ce5-bfd1-3e9f500efaa4"] + }, + "sort": ["Good Shepherd Early Childhood Services"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26028:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-boronia"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-29T13:54:59+10:00"], + "field_about_project_processed": [ + "We are building an early learning centre with 2 kindergarten rooms and 3 day-care rooms. This will allow the centre to offer 44 places as part of the roll-out of funded kindergarten for 3-year-olds. This will give more local children 2 years of high-quality kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2022-23 Building Blocks Capacity Building Grants, $1,000,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Boronia" + ], + "field_latitude": ["-37.85787214"], + "field_latitude_longitude_value": ["-37.85787214,145.2819297"], + "field_latitude_value": ["-37.85787214"], + "field_longitude": ["145.2819297"], + "field_longitude_value": ["145.2819297"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3155"], + "field_project_code": ["15-GSB"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Facility" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["19 Iris Cres"], + "field_suburb": ["Boronia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26028], + "status": [true], + "title": ["Goodstart Boronia"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["d5cfc336-af25-499b-9798-048a1533d3bd"] + }, + "sort": ["Goodstart Boronia"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34245:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Goodstart Early Learning employ someone to plan new kindergartens across Victoria. They will also explore partnerships with schools and other providers. These partnerships may create new kindergartens or multi-use centres." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Goodstart Early Learning" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-GEL"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34245], + "status": [true], + "title": ["Goodstart Early Learning"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["6e738951-4e47-4992-989c-9b442c57143c"] + }, + "sort": ["Goodstart Early Learning"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21295:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-alfredton"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0the\u00a0facilities at the kindergarten. Works included new flooring, wall carpet and bathroom upgrades. We also upgraded the\u00a0playground by adding new sandpits, play equipment, activity areas and sensory experiences." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant, $237,699 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Alfredton." + ], + "field_latitude": ["-37.554946899414063"], + "field_latitude_longitude_value": [ + "-37.554946899414063,143.80085754394531" + ], + "field_latitude_value": ["-37.554946899414063"], + "field_longitude": ["143.80085754394531"], + "field_longitude_value": ["143.80085754394531"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["15-5238"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["91-93 Cuthberts Rd"], + "field_suburb": ["Alfredton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21295], + "status": [true], + "title": ["Goodstart Early Learning Alfredton"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cf7265d0-9d4e-494b-b398-61cd94c17d31"] + }, + "sort": ["Goodstart Early Learning Alfredton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32806:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-bendigo"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-08T20:55:05+10:00"], + "field_about_project_processed": [ + "We are renovating the outdoor space. This includes improving drainage, removing concrete and replacing the fence. We are improving sandpits, sensory garden beds, yarning circles and other outdoor spaces. This will create a better area for all children to play, learn and develop. Children of all abilities will be able to use new soft-fall rubber areas and a cubby. These improvements create a more inclusive and safer outdoor environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $199,528 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Bendigo." + ], + "field_latitude": ["-36.75876205"], + "field_latitude_longitude_value": ["-36.75876205,144.2885482"], + "field_latitude_value": ["-36.75876205"], + "field_longitude": ["144.2885482"], + "field_longitude_value": ["144.2885482"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["15-GSBen"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["10 McIvor Road"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32806], + "status": [true], + "title": ["Goodstart Early Learning Bendigo"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["b2967b02-ff9b-48ca-94f2-05a1aa258961"] + }, + "sort": ["Goodstart Early Learning Bendigo"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28674:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-berwick"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the kindergarten\u2019s outdoor play area. We will remove concrete and put in new sandpits, play equipment and sensory experiences. Inside the building, we will replace flooring, joinery and cabinetry. We will also paint and refurbish the kitchen and bathroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $500,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Berwick." + ], + "field_latitude": ["-38.04883451"], + "field_latitude_longitude_value": ["-38.04883451,145.3413956"], + "field_latitude_value": ["-38.04883451"], + "field_longitude": ["145.3413956"], + "field_longitude_value": ["145.3413956"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["elc-3564"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["1-5 Cheviot Av"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28674], + "status": [true], + "title": ["Goodstart Early Learning Berwick"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["f486a397-85a6-4aeb-bede-ce0cb60e1d32"] + }, + "sort": ["Goodstart Early Learning Berwick"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21298:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/goodstart-early-learning-centres-morwell-central-primary" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This is a new children's centre built on the grounds of Morwell Central Primary School. The centre offers\u00a0the Morwell community\u00a0high quality early\u00a0learning and kindergarten, as well as\u00a0family health services. Having the kindergarten and school together can\u00a0help local children make a smooth transition from pre-school, while reducing\u00a0the number of drop-offs for some parents with kinder and school-aged children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 Budget, this project shared in $10 million allocated to support Kindergarten on School sites. In the\u00a02018\u201319 Children's Facilities Capital Program Major Grants, $1,600,000 was also allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Centres - Morwell Central Primary" + ], + "field_latitude": ["-38.232909664965966"], + "field_latitude_longitude_value": [ + "-38.232909664965966,146.38196290015659" + ], + "field_latitude_value": ["-38.232909664965966"], + "field_longitude": ["146.38196290015659"], + "field_longitude_value": ["146.38196290015659"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3840"], + "field_project_code": ["15-5279"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["48 Commerical Rd"], + "field_suburb": ["Morwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21298], + "status": [true], + "title": [ + "Goodstart Early Learning Centres - Morwell Central Primary" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a8e18652-0581-4015-9f4e-5410d86e3383"] + }, + "sort": ["Goodstart Early Learning Centres - Morwell Central Primary"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28962:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-clifton-hill"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We upgraded and repainted the bathroom. We installed new toilets, sinks, partitions and cabinetry." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $53,732 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Clifton Hill" + ], + "field_latitude": ["-37.78538763"], + "field_latitude_longitude_value": ["-37.78538763,145.0008117"], + "field_latitude_value": ["-37.78538763"], + "field_longitude": ["145.0008117"], + "field_longitude_value": ["145.0008117"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3068"], + "field_project_code": ["15-328"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["101 Heidelberg Rd"], + "field_suburb": ["Clifton Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28962], + "status": [true], + "title": ["Goodstart Early Learning Clifton Hill"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["51582d4c-9f82-4d99-92fb-4d2f18210ac9"] + }, + "sort": ["Goodstart Early Learning Clifton Hill"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32802:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-eltham"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-08T20:55:05+10:00"], + "field_about_project_processed": [ + "We renovated the outdoor space. The works included improving drainage, removing concrete, and replacing the fence. We enhanced sandpits, sensory garden beds, yarning circles, and other outdoor spaces. Children of all abilities can now use new soft-fall rubber areas and a cubby.\u00a0The improvements provide a better area for all children to play, learn, and develop. They create a more inclusive and safer outdoor environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $198,511 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Eltham." + ], + "field_latitude": ["-37.71951993"], + "field_latitude_longitude_value": ["-37.71951993,145.1468344"], + "field_latitude_value": ["-37.71951993"], + "field_longitude": ["145.1468344"], + "field_longitude_value": ["145.1468344"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["15-504"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["816 Main Rd"], + "field_suburb": ["Eltham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32802], + "status": [true], + "title": ["Goodstart Early Learning Eltham"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["365e2b9c-b09d-401a-b775-1b6dbbe1a4ad"] + }, + "sort": ["Goodstart Early Learning Eltham"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28670:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-elwood"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the kindergarten\u2019s outdoor play area. We will remove concrete and put in new sandpits, play equipment and sensory experiences. Inside the building, we will replace flooring, joinery and cabinetry and install LED lighting. We will also paint and refurbish the kitchen and bathroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $562,511.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Elwood." + ], + "field_latitude": ["-37.87563013"], + "field_latitude_longitude_value": ["-37.87563013,144.9881235"], + "field_latitude_value": ["-37.87563013"], + "field_longitude": ["144.9881235"], + "field_longitude_value": ["144.9881235"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3184"], + "field_project_code": ["elc-gele"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["35 Tennyson St"], + "field_suburb": ["Elwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28670], + "status": [true], + "title": ["Goodstart Early Learning Elwood"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["108a3084-94d3-4a9f-ae83-26487ac4fa2e"] + }, + "sort": ["Goodstart Early Learning Elwood"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28667:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/goodstart-early-learning-endeavour-hills-hanna-drive" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded this kindergarten. Inside, we painted, upgraded floors, cabinetry and joinery and installed LED lighting. We also refurbished the kitchen and bathroom.In the outdoor play area, we removed concrete. We also added sandpits, play equipment and sensory experiences." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $500,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Endeavour Hills \u2013 Hanna Drive." + ], + "field_latitude": ["-37.97576899"], + "field_latitude_longitude_value": ["-37.97576899,145.2703022"], + "field_latitude_value": ["-37.97576899"], + "field_longitude": ["145.2703022"], + "field_longitude_value": ["145.2703022"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["15-5246"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["1-3 Hanna Dr"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28667], + "status": [true], + "title": [ + "Goodstart Early Learning Endeavour Hills \u2013 Hanna Drive" + ], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["aec4b808-d866-4902-9484-89989bbe1e94"] + }, + "sort": ["Goodstart Early Learning Endeavour Hills – Hanna Drive"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32807:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-epping-high-st"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-08T20:55:05+10:00"], + "field_about_project_processed": [ + "We renovated the outdoor space. The works included improving drainage, removing concrete, and replacing the fence. We improved sandpits, sensory garden beds, yarning circles, and other outdoor spaces. Children of all abilities can now use new soft-fall rubber areas and a cubby.The works provide a better area for all children to play, learn, and develop. The improvements also create a more inclusive and safer outdoor environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $199,767 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Epping High St." + ], + "field_latitude": ["-37.64804042"], + "field_latitude_longitude_value": ["-37.64804042,145.0263082"], + "field_latitude_value": ["-37.64804042"], + "field_longitude": ["145.0263082"], + "field_longitude_value": ["145.0263082"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3076"], + "field_project_code": ["15-GSEpp"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["792-796 High St"], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32807], + "status": [true], + "title": ["Goodstart Early Learning Epping High St"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["67de5cd6-bb1a-474e-a5d9-2fb1432386b1"] + }, + "sort": ["Goodstart Early Learning Epping High St"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24604:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/goodstart-early-learning-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping Goodstart Early Learning employ someone to oversee kindergarten planning and design. They will develop a series of kindergarten building projects to create more places for Victorian children. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Goodstart Early Learning Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-GEIPP"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24604], + "status": [true], + "title": [ + "Goodstart Early Learning Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1fedf9db-1d7e-4e6e-bcff-a259ae009891"] + }, + "sort": [ + "Goodstart Early Learning Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32803:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-langwarrin"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-08T20:55:05+10:00"], + "field_about_project_processed": [ + "We converted the storage area into a new bathroom with wide doorways. This provides improved access for children with mobility needs.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $107,898 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Langwarrin." + ], + "field_latitude": ["-38.1396271"], + "field_latitude_longitude_value": ["-38.1396271,145.2148449"], + "field_latitude_value": ["-38.1396271"], + "field_longitude": ["145.2148449"], + "field_longitude_value": ["145.2148449"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3910"], + "field_project_code": ["15-5458"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Raneen Dr"], + "field_suburb": ["Langwarrin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32803], + "status": [true], + "title": ["Goodstart Early Learning Langwarrin"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["524db2b7-2602-470c-b1a4-7f75f1051aba"] + }, + "sort": ["Goodstart Early Learning Langwarrin"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28669:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-melton-high-street"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the kindergarten\u2019s outdoor play area. We will remove concrete, improve drainage and put in new sandpits, play equipment and sensory experiences." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $318,929.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Melton \u2013 High Street." + ], + "field_latitude": ["-37.68409977"], + "field_latitude_longitude_value": ["-37.68409977,144.5761461"], + "field_latitude_value": ["-37.68409977"], + "field_longitude": ["144.5761461"], + "field_longitude_value": ["144.5761461"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["15-4816"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["443-445 High St"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28669], + "status": [true], + "title": ["Goodstart Early Learning Melton \u2013 High Street"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["50dbee18-9069-4df0-b02d-5c4b5ca9a715"] + }, + "sort": ["Goodstart Early Learning Melton – High Street"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21299:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/goodstart-early-learning-mildura-matthew-flinders-drive" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped upgrade the facilities at Goodstart Early Learning Mildura. The upgrade included new flooring, fresh paint throughout, new baby changing tables, upgraded toilets, new benchtops and improved lighting." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $175,190 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Mildura - Matthew Flinders Drive" + ], + "field_latitude": ["-34.197170257568359"], + "field_latitude_longitude_value": [ + "-34.197170257568359,142.16468811035156" + ], + "field_latitude_value": ["-34.197170257568359"], + "field_longitude": ["142.16468811035156"], + "field_longitude_value": ["142.16468811035156"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["15-5292"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Matthew Flinders Dr"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21299], + "status": [true], + "title": [ + "Goodstart Early Learning Mildura - Matthew Flinders Drive" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["77532d27-8d6e-409a-aeaf-58b75940fbb0"] + }, + "sort": ["Goodstart Early Learning Mildura - Matthew Flinders Drive"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28672:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-narre-warren-north"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the kindergarten\u2019s outdoor play area. We will remove concrete and put in new sandpits, play equipment and sensory experiences. Inside the building, we will replace flooring, joinery and cabinetry and install LED lighting. We will also paint and refurbish the kitchen and bathroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $436,888.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Narre Warren North." + ], + "field_latitude": ["-38.0022538"], + "field_latitude_longitude_value": ["-38.0022538,145.3124478"], + "field_latitude_value": ["-38.0022538"], + "field_longitude": ["145.3124478"], + "field_longitude_value": ["145.3124478"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["elc-3302"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["147-149 Kurrajong Rd"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28672], + "status": [true], + "title": ["Goodstart Early Learning Narre Warren North"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["df440c92-32f9-4f97-b2de-012d5b99a31e"] + }, + "sort": ["Goodstart Early Learning Narre Warren North"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/32801:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-new-gisborne"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-08T20:55:05+10:00"], + "field_about_project_processed": [ + "We are renovating the outdoor space. This includes improving drainage, removing concrete and replacing the fence. We are improving sandpits, sensory garden beds, yarning circles and other outdoor spaces. This will create a better area for all children to play, learn and develop. Children of all abilities will be able to use new soft-fall rubber areas and a cubby. These improvements create a more inclusive and safer outdoor environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $199,669 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning New Gisborne." + ], + "field_latitude": ["-37.46965981"], + "field_latitude_longitude_value": ["-37.46965981,144.5961322"], + "field_latitude_value": ["-37.46965981"], + "field_longitude": ["144.5961322"], + "field_longitude_value": ["144.5961322"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3438"], + "field_project_code": ["15-4995"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["12 Saunders Rd"], + "field_suburb": ["New Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [32801], + "status": [true], + "title": ["Goodstart Early Learning New Gisborne"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["b138fef8-eedd-440e-bc45-74a1edd68c26"] + }, + "sort": ["Goodstart Early Learning New Gisborne"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21434:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-rosanna"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Goodstart, we built Goodstart Rosanna. The kindergarten offers 8 learning spaces, including 3\u00a0dedicated kindergarten rooms for 3- and 4-year-olds. The additional spaces will cater to children under 3." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $1,500,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Rosanna." + ], + "field_latitude": ["-37.741025"], + "field_latitude_longitude_value": ["-37.741025,145.063781"], + "field_latitude_value": ["-37.741025"], + "field_longitude": ["145.063781"], + "field_longitude_value": ["145.063781"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["ELC-GR"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["21-27 Bellevue Av"], + "field_suburb": ["Rosanna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21434], + "status": [true], + "title": ["Goodstart Early Learning Rosanna"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f9eb8430-0b4d-4510-8bfd-4e3f76a53a35"] + }, + "sort": ["Goodstart Early Learning Rosanna"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31170:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-rosanna-banyule-road"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-14T21:09:11+11:00"], + "field_about_project_processed": [ + "We laid new turf in the kindergarten\u2019s yards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $62,612 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Rosanna Banyule Road" + ], + "field_latitude": ["-37.74247505"], + "field_latitude_longitude_value": ["-37.74247505,145.0821099"], + "field_latitude_value": ["-37.74247505"], + "field_longitude": ["145.0821099"], + "field_longitude_value": ["145.0821099"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["15-GSELRBR"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["93-97 Banyule Rd"], + "field_suburb": ["Rosanna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31170], + "status": [true], + "title": ["Goodstart Early Learning Rosanna Banyule Road"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["47c48b0d-654d-4eb5-94d6-4f33b50f6315"] + }, + "sort": ["Goodstart Early Learning Rosanna Banyule Road"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25460:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-rowville-liberty-avenue"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment and landscaping to make it more inclusive for children of all abilities and to better reflect the natural surroundings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $180,471 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Liberty Avenue Kindergarten" + ], + "field_latitude": ["-37.93298787"], + "field_latitude_longitude_value": ["-37.93298787,145.2415998"], + "field_latitude_value": ["-37.93298787"], + "field_longitude": ["145.2415998"], + "field_longitude_value": ["145.2415998"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3178"], + "field_project_code": ["15- 3078"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["77 Liberty Ave"], + "field_suburb": ["Rowville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25460], + "status": [true], + "title": ["Goodstart Early Learning Rowville \u2013 Liberty Avenue"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["9e173acc-6c16-4e7c-8e11-37687e3ea698"] + }, + "sort": ["Goodstart Early Learning Rowville – Liberty Avenue"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28957:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/goodstart-early-learning-roxburgh-park-david-munroe-drive" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We laid new turf in the kindergarten\u2019s yards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $57,340 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Roxburgh Park - David Munroe Drive" + ], + "field_latitude": ["-37.6391793"], + "field_latitude_longitude_value": ["-37.6391793,144.9299899"], + "field_latitude_value": ["-37.6391793"], + "field_longitude": ["144.9299899"], + "field_longitude_value": ["144.9299899"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["15-4474"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["30 David Munroe Dr"], + "field_suburb": ["Roxburgh Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28957], + "status": [true], + "title": [ + "Goodstart Early Learning Roxburgh Park - David Munroe Drive" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["96522f15-a12c-4534-8ce6-658c73347bd5"] + }, + "sort": ["Goodstart Early Learning Roxburgh Park - David Munroe Drive"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28671:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-traralgon-grey-street"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded this kindergarten. In the outdoor play area we:removed concreteadded sandpitsplay equipmentsensory experiences.Inside, we replaced flooring, joinery and cabinetry and installed LED lighting. We also painted and refurbished the kitchen and bathroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $500,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Traralgon \u2013 Grey Street." + ], + "field_latitude": ["-38.19194574"], + "field_latitude_longitude_value": ["-38.19194574,146.5226039"], + "field_latitude_value": ["-38.19194574"], + "field_longitude": ["146.5226039"], + "field_longitude_value": ["146.5226039"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["elc-5592"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["151 Grey St"], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28671], + "status": [true], + "title": ["Goodstart Early Learning Traralgon \u2013 Grey Street"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["45077940-dc14-46bd-aa5e-7a249bc93022"] + }, + "sort": ["Goodstart Early Learning Traralgon – Grey Street"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28665:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-traralgon-park-lane"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded this kindergarten. Inside we painted, upgraded floors, cabinetry and joinery and installed LED lighting. We also refurbished the kitchen and bathroom.In the outdoor play area, we removed concrete. We also added sandpits, play equipment and sensory experiences." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $500,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Traralgon Park Lane." + ], + "field_latitude": ["-38.18641026"], + "field_latitude_longitude_value": ["-38.18641026,146.5523041"], + "field_latitude_value": ["-38.18641026"], + "field_longitude": ["146.5523041"], + "field_longitude_value": ["146.5523041"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["elc-geltpl"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["42-44 Park Ln"], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28665], + "status": [true], + "title": ["Goodstart Early Learning Traralgon \u2013 Park Lane"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["7cc0cb28-8de7-4f67-9c4c-91a928e13c57"] + }, + "sort": ["Goodstart Early Learning Traralgon – Park Lane"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21289:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/goodstart-early-learning-vermont-canterbury-road-north" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the facilities at Goodstart Early Learning Vermont. Works included installing\u00a0new flooring and\u00a0kitchen, a fresh paint throughout, baby changing tables, upgraded toilets, and better lighting." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 20-21 Building Blocks Improvement Grant $185,883 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Vermont - Canterbury Road North." + ], + "field_latitude": ["-37.8365723"], + "field_latitude_longitude_value": ["-37.8365723,145.1895996"], + "field_latitude_value": ["-37.8365723"], + "field_longitude": ["145.1895996"], + "field_longitude_value": ["145.1895996"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3133"], + "field_project_code": ["15-5048"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["425 Canterbury Rd"], + "field_suburb": ["Vermont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21289], + "status": [true], + "title": ["Goodstart Early Learning Vermont - Canterbury Road North"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dbf702f7-1393-4e5e-b22f-9d50299d3877"] + }, + "sort": ["Goodstart Early Learning Vermont - Canterbury Road North"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21213:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-werribee"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0the facilities at Goodstart Early Learning Werribee. The centre now has\u00a0new flooring and lighting installed. Outdoors, the children\u00a0have access to new sandpits, play equipment, activity areas and sensory experiences." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $242,126 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Early Learning Werribee." + ], + "field_latitude": ["-37.907859802246094"], + "field_latitude_longitude_value": [ + "-37.907859802246094,144.64913940429688" + ], + "field_latitude_value": ["-37.907859802246094"], + "field_longitude": ["144.64913940429688"], + "field_longitude_value": ["144.64913940429688"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["15-1376"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["39-41 Duncans Rd"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21213], + "status": [true], + "title": ["Goodstart Early Learning Werribee"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2ef03f3c-17ee-400a-93a8-f7e4ef9f9ce7"] + }, + "sort": ["Goodstart Early Learning Werribee"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28668:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-early-learning-yarrawonga"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded the kindergarten\u2019s outdoor play area. We removed concrete and improved drainage. We also installed sandpits, play equipment and sensory experiences." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $277,737.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goodstart Early Learning Yarrawonga." + ], + "field_latitude": ["-36.01726019"], + "field_latitude_longitude_value": ["-36.01726019,146.006195"], + "field_latitude_value": ["-36.01726019"], + "field_longitude": ["146.006195"], + "field_longitude_value": ["146.006195"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3730"], + "field_project_code": ["15-4911"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["69 Telford St"], + "field_suburb": ["Yarrawonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28668], + "status": [true], + "title": ["Goodstart Early Learning Yarrawonga"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d883a0ae-0f15-4222-a0da-751e6aa579d3"] + }, + "sort": ["Goodstart Early Learning Yarrawonga"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21364:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-mentone"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Goodstart, we built Goodstart Mentone. The new early learning centre includes 6 learning spaces, providing more local\u00a0kindergarten places\u00a0for 3 and 4-year-olds.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was alloated $1 million through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Mentone." + ], + "field_latitude": ["-37.97419"], + "field_latitude_longitude_value": ["-37.97419,145.06529"], + "field_latitude_value": ["-37.97419"], + "field_longitude": ["145.06529"], + "field_longitude_value": ["145.06529"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3194"], + "field_project_code": ["15-GSM"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["207 Nepean Hwy"], + "field_suburb": ["Mentone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21364], + "status": [true], + "title": ["Goodstart Mentone"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["df22463d-3a77-4c4d-b7bc-daa8f0c22bc5"] + }, + "sort": ["Goodstart Mentone"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21435:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goodstart-watsonia"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Goodstart, we are building Goodstart Watsonia. The new early learning centre will include 6 learning spaces for children from birth to school age, including 2 kindergarten rooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $1,000,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Goodstart Watsonia." + ], + "field_latitude": ["-37.712723"], + "field_latitude_longitude_value": ["-37.712723,145.081671"], + "field_latitude_value": ["-37.712723"], + "field_longitude": ["145.081671"], + "field_longitude_value": ["145.081671"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3087"], + "field_project_code": ["ELC-GW"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["69-71 Devonshire Rd"], + "field_suburb": ["Watsonia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21435], + "status": [true], + "title": ["Goodstart Watsonia"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a426a06b-3ca8-4193-b55a-cbe15670d740"] + }, + "sort": ["Goodstart Watsonia"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26210:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goolum-goolum-aboriginal-co-operative"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping Goolum-Goolum Aboriginal Cooperative plan a kindergarten building in the Horsham Rural City Council area. This would create more kindergarten places for local 3 and 4-year-olds, with priority access offered to Aboriginal families and vulnerable children in the community. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Goolum - Goolum Aboriginal Co-operative" + ], + "field_latitude": ["-36.71790228"], + "field_latitude_longitude_value": ["-36.71790228,142.2029061"], + "field_latitude_value": ["-36.71790228"], + "field_longitude": ["142.2029061"], + "field_longitude_value": ["142.2029061"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["15-GAB"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["43 Hamilton St"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26210], + "status": [true], + "title": ["Goolum - Goolum Aboriginal Co-operative"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["cad8213c-c080-4a49-a30c-351d0c8d9834"] + }, + "sort": ["Goolum - Goolum Aboriginal Co-operative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20544:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goonawarra-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school. This includes: refurbishing the library, classrooms and informal learning spaces to the north wing new administration new entry and reception area and staff spaces landscaping. This ensures students are learning in an environment designed for delivering modern education.", + "We built an innovative and inclusive playground with all-abilities equipment for students to use.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $10 million.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Goonawarra Primary School" + ], + "field_latitude": ["-37.581401", "-37.580517"], + "field_latitude_longitude_value": ["-37.581401,144.7521257"], + "field_latitude_value": ["-37.581401"], + "field_longitude": ["144.7521257", "144.751054"], + "field_longitude_value": ["144.7521257"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "How were the upgrade facilities determined? We worked with school leaders to develop a masterplan, which separates the needs of the school into individual stages.\u00a0 The masterplan ensures the school continues to receive fair consideration through the school capital works program. Why are some elements of the plan not included in this round of works? Due to increased building costs, elements of the school\u2019s masterplan have been removed from the works at this time. This includes the proposed refurbishment of classrooms in the south-wing of the main block. Will they be included in the future? We will work closely with the school to ensure that the south-wing works are considered in future plans for the school.", + "What will the new classrooms look like? The new classrooms will offer spaces for flexible learning activities and group sizes. Glass windows and doors will allow views between formal and informal classroom spaces, including outdoor learning areas. These glass windows and the original high classroom ceilings will provide natural light and air flow. Why are you building open-plan learning and glass \u2018learning communities\u2019? We design new spaces with our experts to cater for the learning needs and abilities of all students. Learning communities are large buildings made up of flexible spaces that teachers can use in different ways. They may use doors, movable walls or furniture to create spaces that suit different learning needs. Glass doors and walls allow teachers to provide constant supervision and to communicate with one another to maximise learning. How is distraction managed by teachers? Teachers play an integral part in managing any distraction that might affect their students\u2019 learning in the classroom.\u00a0 Students will be taught to use the new spaces through respectful classroom behaviour.", + "What was considered in the project\u2019s design? Williams Boag Architects have selected materials and colours to blend the design of the refurbished main block with the existing building. Landscape work will create entry paths surrounded by indigenous and native trees. It will provide a welcoming gathering space for community members to meet. Will the Goonawarra swan be retained? The new administration entry foyer is a fully accessible and secure space that connects to the general office and library. The historic mosaic mural of the Goonawarra swan will be kept and will be located above the door to the library." + ], + "field_paragraph_accordion_name": [ + "About the masterplan", + "About the facilities", + "About the design" + ], + "field_postcode": ["3429"], + "field_project_code": ["D1-01-5248", "01-5248"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2024", "Q4 2019"], + "field_start_date": ["Q2 2021", "Q4 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["2-6 Gullane Dr"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20544], + "status": [true], + "title": ["Goonawarra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["badf2faf-7528-41d0-a51d-4f97aad1d25e"] + }, + "sort": ["Goonawarra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20759:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gordon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to upgrade fencing to make their school more secure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $119,165" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Gordon Primary School" + ], + "field_latitude": ["-37.5839272"], + "field_latitude_longitude_value": ["-37.5839272,144.1053862"], + "field_latitude_value": ["-37.5839272"], + "field_longitude": ["144.1053862"], + "field_longitude_value": ["144.1053862"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3345"], + "field_project_code": ["01-755"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Dicker Street"], + "field_suburb": ["Gordon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20759], + "status": [true], + "title": ["Gordon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8c9efa43-a55d-4d52-aaae-57c126a1fb5c"] + }, + "sort": ["Gordon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22606:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gordon-street-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a multi-sensory, inclusive play space inspired by Indigenous themes. The space encourages children to calmly engage with nature and each other. It is also an outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u20132021 Building Blocks Improvement Grant, $155,187 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gordon Street Preschool." + ], + "field_latitude": ["-37.97369999"], + "field_latitude_longitude_value": ["-37.97369999,145.0513795"], + "field_latitude_value": ["-37.97369999"], + "field_longitude": ["145.0513795"], + "field_longitude_value": ["145.0513795"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["15-879"], + "field_project_title": [ + "Building Blocks Improvement Grant \u2013 Play Space" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["19 Gordon St"], + "field_suburb": ["Beaumaris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22606], + "status": [true], + "title": ["Gordon Street Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["db280012-384a-4c46-88ee-47f28660735c"] + }, + "sort": ["Gordon Street Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20619:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gormandale-and-district-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including new play equipment and softfall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Gormandale And District Primary School" + ], + "field_latitude": ["-38.295139312744141"], + "field_latitude_longitude_value": [ + "-38.295139312744141,146.69186401367187" + ], + "field_latitude_value": ["-38.295139312744141"], + "field_longitude": ["146.69186401367187"], + "field_longitude_value": ["146.69186401367187"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3873"], + "field_project_code": ["01-5442"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["38 Main Street"], + "field_suburb": ["Gormandale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20619], + "status": [true], + "title": ["Gormandale And District Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c87503d2-8cbc-4f7a-8d3e-ea9dc64b1bde"] + }, + "sort": ["Gormandale And District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25403:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/goroke-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T15:49:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student amenities block to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $361,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Goroke P-12 College" + ], + "field_latitude": ["-36.715786"], + "field_latitude_longitude_value": ["-36.715786,141.48354"], + "field_latitude_value": ["-36.715786"], + "field_longitude": ["141.48354"], + "field_longitude_value": ["141.48354"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3412"], + "field_project_code": ["01-6223"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["55 Natimuk-Frances Road"], + "field_suburb": ["Goroke"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25403], + "status": [true], + "title": ["Goroke P-12 College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["250cb00a-b88d-4915-909b-2666fa69ea57"] + }, + "sort": ["Goroke P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22638:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gowrie-clare-court"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We improved the outdoor play spaces and made them more accessible for children of all abilities. The new space includes: textured paths an accessible tiered sandpit decking retaining wall for play and seating. We also built a concrete channel and trickle stream for water play, and a sensory garden and exploration trail for imaginative play. We planted trees and added an outdoor dining and yarning circle for performances and creative opportunities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $475,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gowrie Clare Court" + ], + "field_latitude": ["-37.81765707"], + "field_latitude_longitude_value": ["-37.81765707,144.8787707"], + "field_latitude_value": ["-37.81765707"], + "field_longitude": ["144.8787707"], + "field_longitude_value": ["144.8787707"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3013"], + "field_project_code": ["15-555"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["40 Court St"], + "field_suburb": ["Yarraville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22638], + "status": [true], + "title": ["Gowrie Clare Court"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0609f583-86c3-409e-b5a3-37271ad781c0"] + }, + "sort": ["Gowrie Clare Court"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20310:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gowrie-street-primary-school-shepparton"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe\u00a0refurbished\u00a0the\u00a0student toilets at the school.\u200b\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $20,000 was allocated to the school." + ], + "field_funding_type_name": ["School Improvement Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Gowrie Street Primary School Shepparton" + ], + "field_latitude": ["-36.36695"], + "field_latitude_longitude_value": ["-36.36695,145.39753"], + "field_latitude_value": ["-36.36695"], + "field_longitude": ["145.39753"], + "field_longitude_value": ["145.39753"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["01-4657"], + "field_project_title": ["School Improvement Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["1-19 Gowrie Street"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20310], + "status": [true], + "title": ["Gowrie Street Primary School Shepparton"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["98a43a3c-9003-4068-b5b1-bd829da08cd6"] + }, + "sort": ["Gowrie Street Primary School Shepparton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28958:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gowrie-harbour"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We created a formal outdoor area that includes a garden with local native plants and grasses. The garden provides a natural environment for learning. Inside, we added block-out window coverings and safety screens. The screens help with ventilation. The blinds allow staff to manage lighting and create sensory learning experiences.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $64,931 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Gowrie The Harbour" + ], + "field_latitude": ["-37.82021855"], + "field_latitude_longitude_value": ["-37.82021855,144.9430251"], + "field_latitude_value": ["-37.82021855"], + "field_longitude": ["144.9430251"], + "field_longitude_value": ["144.9430251"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3008"], + "field_project_code": ["15-GTH"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["Seafarer Lane"], + "field_suburb": ["Docklands"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28958], + "status": [true], + "title": ["Gowrie The Harbour"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["e58d7ee5-71d5-4450-897e-cb36df09b2a1"] + }, + "sort": ["Gowrie The Harbour"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28656:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gowrie-victoria-broadmeadows-valley"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are expanding the Gowrie Victoria Broadmeadows Valley at Broadmeadows Valley Primary School.\u00a0We will deliver additional capacity via modular construction. This will provide additional kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.", + "We upgraded this centre. We added rooms for private meetings and allied health services. We also redesigned the carpark to make it safer.", + "We made the centre\u2019s garden safer and more inclusive. We improved structures, fixtures and surfaces. Children of all abilities can now get around the garden easier and participate in more activities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life.", + "In the 2022-23 Building Blocks Improvement Grants $559,646.00 was allocated to the project.", + "In the 2022\u201323 Building Blocks Inclusion Grants $81,320.00 was allocated to the project." + ], + "field_funding_type_name": [ + "Kindergarten on a School Site", + "Building Blocks Improvement Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Gowrie Victoria Broadmeadows Valley." + ], + "field_latitude": ["-37.68182052", "-37.68182052"], + "field_latitude_longitude_value": ["-37.68182052,144.9117613"], + "field_latitude_value": ["-37.68182052"], + "field_longitude": ["144.9117613", "144.9117613"], + "field_longitude_value": ["144.9117613"], + "field_mappintype_name": [ + "Early childhood", + "Early childhood", + "Early childhood" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["D2-15-5013", "15-5013", "d1-15-5013"], + "field_project_title": [ + "Kindergarten on a School Site", + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Inclusion Grant" + ], + "field_q_complete": ["Q1 2025", "Q4 2023", "Q3 2023"], + "field_start_date": ["Q3 2023", "Q4 2022", "Q1 2023"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["50 Johnstone St"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28656], + "status": [true], + "title": ["Gowrie Victoria Broadmeadows Valley"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["e75dd7b0-3580-4870-8df3-d9b6a9a20841"] + }, + "sort": ["Gowrie Victoria Broadmeadows Valley"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24580:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gowrie-victoria-carlton-north"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Gowrie Victoria Carlton North with their plans to transform office space into a 2-room kindergarten. This upgrade would add 32 funded kindergarten places for 3 and 4-year-olds from 2024. This planning gets the project ready for construction, which depends on future funding.", + "We repaired leaks in the roof and vents and replaced old doors and windows. We refurbished the sunken floor and painted the whole centre. Outside the playrooms, we built 2\u00a0verandahs, and installed new fencing around the neighbouring grassed area.\u00a0", + "We are modifying spaces and building 2 new kindergarten rooms at the centre. This will provide space for up to 48 more local children each day. These new spaces will help the centre expand free kindergarten, as part of the Best Start, Best Life reforms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project.", + "In Round 2 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Grant, $500,000 was allocated to this project.", + "In Round 4 of the 2023 Building Blocks Capacity Grant, $2,179,490 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about the planning of Gowrie Victoria Carlton North" + ], + "field_latitude": ["-37.78963740604336", "-37.7895039631331"], + "field_latitude_longitude_value": [ + "-37.78963740604336,144.97467614096092" + ], + "field_latitude_value": ["-37.78963740604336"], + "field_longitude": ["144.97467614096092", "144.974712528857"], + "field_longitude_value": ["144.97467614096092"], + "field_mappintype_name": [ + "Early childhood", + "Early childhood", + "Early childhood" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3054"], + "field_project_code": ["15-GVCN", "D1-15-GVCN", "D2-15-GVCN"], + "field_project_title": [ + "Building Blocks Planning", + "Early Childhood Refurbishment and Minor Infrastructure - Major Works And Refurbishment", + "Building Blocks Capacity Grant - Expansion" + ], + "field_q_complete": ["Q2 2023", "Q4 2024"], + "field_start_date": ["Q2 2022", "Q4 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["36 Newry St"], + "field_suburb": ["Carlton North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24580], + "status": [true], + "title": ["Gowrie Victoria Carlton North"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["cc1f687c-2d56-4a70-b3eb-f68367cf3e46"] + }, + "sort": ["Gowrie Victoria Carlton North"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34237:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grace-berglund-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Baw Baw Shire Council plan to renovate and extend the centre. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $50,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Grace Berglund Kindergarten" + ], + "field_latitude": ["-38.159619"], + "field_latitude_longitude_value": ["-38.159619,145.937158"], + "field_latitude_value": ["-38.159619"], + "field_longitude": ["145.937158"], + "field_longitude_value": ["145.937158"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["15-1311"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["12 George Street"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34237], + "status": [true], + "title": ["Grace Berglund Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["eea244a3-2566-4363-baad-dc685e0c17e5"] + }, + "sort": ["Grace Berglund Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21159:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grace-christian-college-wodonga"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported the school to build a new classroom block, which included food technology facilities and toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $1,452,516 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Grace Christian College Wodonga." + ], + "field_latitude": ["-36.15758"], + "field_latitude_longitude_value": ["-36.15758,146.88738"], + "field_latitude_value": ["-36.15758"], + "field_longitude": ["146.88738"], + "field_longitude_value": ["146.88738"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3691"], + "field_project_code": ["03-1886"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["20 Kinchington Rd"], + "field_suburb": ["Leneva"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21159], + "status": [true], + "title": ["Grace Christian College Wodonga"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b08fcf14-5322-4c71-9688-2cb96dddca99"] + }, + "sort": ["Grace Christian College Wodonga"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25006:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grasmere-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school. This includes upgrading classrooms and administration areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $2.58 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Grasmere Primary School" + ], + "field_latitude": ["-38.285986"], + "field_latitude_longitude_value": ["-38.285986,142.522877"], + "field_latitude_value": ["-38.285986"], + "field_longitude": ["142.522877"], + "field_longitude_value": ["142.522877"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3281"], + "field_project_code": ["01-5381"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["16 Ibbs Lane"], + "field_suburb": ["Grasmere"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25006], + "status": [true], + "title": ["Grasmere Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6227ba20-d65f-47b5-86a5-21796fe38b26"] + }, + "sort": ["Grasmere Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20596:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grayling-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a\u00a0new primary school in Clyde North. We held information events in September and October\u00a02019. The school\u00a0includes learning spaces, a performing arts and physical education building, and administration areas. Further information on the school can be found on its official Facebook page. \u200b\u200b\u200b School name Grayling Primary School was originally known by the interim name of Clyde North East Primary School while it was being planned and built. The new name is a tribute to the Australian Grayling (Prototroctes Maraena), a nationally threatened fish species known to occur locally in the Cardinia Creek that\u2019s close to the school. The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nationsindigenous languages. The names were also chosen to help reflect each school\u2019s unique identity, inspire local pride and makes them easily locatable. Kindergarten Manna Gum\u00a0Family and Community Centre\u00a0(previously known as Kilora Family & Community Centre) will be located\u00a0adjacent to Grayling Primary School\u00a0and is scheduled to open in 2020.\u00a0The\u00a0centre will provide\u00a0room\u00a0for kinder, maternal and child health services and hireable spaces.\u00a0 The kinder will \u00a0be run by the City of Casey\u00a0Council. It\u00a0will help\u00a0local\u00a0children make\u00a0a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017-18 State Budget allocated funding to buy land in this area for a new school. The school received an additional $20.8 million in the 2018-19 State Budget for construction. In the 2019-20 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Grayling Primary School" + ], + "field_latitude": ["-38.081975"], + "field_latitude_longitude_value": ["-38.081975,145.373571"], + "field_latitude_value": ["-38.081975"], + "field_longitude": ["145.373571"], + "field_longitude_value": ["145.373571"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-5385"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Ferdinand Drive"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20596], + "status": [true], + "title": ["Grayling Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["30352e21-e9c9-4ae2-b708-c610fb15a81b"] + }, + "sort": ["Grayling Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20626:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/great-ryrie-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created a vibrant and inclusive outdoor play area.", + "We\u00a0delivered a new architect-designed modular building to the school to replace Block G.\u00a0 The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program\u200b.\u200b Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $468,665.", + "In Round 3 of the program, the school was allocated $2,630,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Great Ryrie Primary School." + ], + "field_latitude": ["-37.8319129", "-37.81694"], + "field_latitude_longitude_value": ["-37.8319129,145.23734925"], + "field_latitude_value": ["-37.8319129"], + "field_longitude": ["145.23734925", "145.23809"], + "field_longitude_value": ["145.23734925"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["D1-01-5478", "01-5478"], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2022", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Great Ryrie St"], + "field_suburb": ["Heathmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20626], + "status": [true], + "title": ["Great Ryrie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7975637a-f255-443b-b967-1ee17216b9e8"] + }, + "sort": ["Great Ryrie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24607:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/greater-bendigo-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping Greater Bendigo City Council plan an integrated children centre, complete with kindergarten and community services, in Marong. The centre would offer 66 funded kindergarten places and provide space for allied health services. The grant will also help council employ someone to complete feasibility studies for 7 additional kindergarten expansion projects in the area. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Greater Bendigo City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-GBCCK"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24607], + "status": [true], + "title": [ + "Greater Bendigo City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4540faab-e41d-48dc-8ac3-1653e01ad8a1"] + }, + "sort": [ + "Greater Bendigo City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34250:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greater-shepparton-city-council"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Greater Shepparton City Council plan the future kindergartens they will need in North Shepparton. This will create more kindergarten places for local 3 and 4-year-olds to meet growing local demand. The planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Greater Shepparton City Council" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-GSCC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34250], + "status": [true], + "title": ["Greater Shepparton City Council"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["e9846511-6e67-481f-942a-7fec4218f0ce"] + }, + "sort": ["Greater Shepparton City Council"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20801:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greater-shepparton-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new campus for Greater Shepparton Secondary College. It opened in 2022. In 2020, Greater Shepparton Secondary College formed from the merger of four secondary schools, offering students better support services and the widest-ever range of subjects, VCE, VCAL and post-secondary pathways. In 2019, we consulted with the community on Greater Shepparton Secondary College's name. With your ideas and preferences in mind, Greater Shepparton Secondary College was selected. This project is part of the\u00a0Shepparton Education Plan, which aims to transform local education in Greater Shepparton.\u00a0 For further information, including the latest school updates and to subscribe to the school\u2019s newsletter, please visit the Greater Shepparton College\u00a0school\u00a0website. Facilities Greater Shepparton Secondary College\u2019s contemporary new facilities are designed to improve learning. The facilities allow the school to offer students broader choices, new learning opportunities and greater wellbeing support and services. Facilities include: 9 \u2018houses\u2019 and 3 \u2018neighbourhoods\u2019 to promote inclusive, \u2018small school\u2019 environments. These neighbourhoods offer the learning opportunities and benefits of a larger school an Enterprise and Innovation Centre. This centre features specialist precincts for technology, performing and fine arts and sciences student support, wellbeing and careers areas a learning resource centre (library), a canteen, tiered assembly area and a roof-top garden feature in each neighbourhood a gymnasium with two competition-sized basketball and netball courts, a fitness and weights room, dance and yoga spaces outdoor learning spaces a choice of learning settings, general and specialist zones VCE study space a full-sized oval. Design consultation Greater Shepparton College\u2019s contemporary new facilities are designed to improve learning. The facilities allow the school to offer broader choices, new opportunities and better support. They will encourage all students to participate at the school, and support their transition to further education (TAFE or university) and work. As the college\u2019s flagship building the Enterprise and Innovation Centre provides a central heart for the school and a place to welcome the broader community. Featuring arts, science, food technology and technology spaces, the centre is one of two highly specialised learning precincts. The other is the gymnasium with dedicated spaces for physical education, sport, health, fitness and movement. The Enterprise and Innovation Centre connects to three surrounding \u2018neighbourhood\u2019 buildings, supporting their specialist classes for older students. With administration and gathering spaces, the centre also serves as a key link between the school and the Greater Shepparton community, including further education and training providers and employers. Two thirds of the school site is devoted to outdoor space for recreation, wellbeing and education. This enables learning to take place in many settings, and ensure there are ample indoor and outdoor sports facilities. A school design shaped by community consultation The architects have carefully considered feedback from the community consultation in all aspects of the school\u2019s design. They worked through a complex and diverse range of ideas and requirements suggested by students, teachers and other staff from all four schools. Mooroopna Secondary College, McGuire College, Wanganui Park Secondary College and Shepparton High School \u2013 as well as education leaders, families, community groups and the Department of Education and Training. Sense of place Drawing inspiration from the surrounding Shepparton landscape, the exterior and interior design palette features colours found within the region\u2019s unique mineral geology, agricultural plains, and riverbeds. Material and finishes for the project are from sustainable sources, locally sourced materials, and materials with recycled content wherever possible." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, $119 million was allocated to the school. This follows the $20.5 million allocated to the Shepparton Education Plan in the 2018\u201319 State Budget, and $1 million in planning funding in the 2017\u201318 State Budget. This college is part of the Shepparton Education Plan." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Greater Shepparton Secondary College." + ], + "field_latitude": ["-36.372941"], + "field_latitude_longitude_value": ["-36.372941,145.415744"], + "field_latitude_value": ["-36.372941"], + "field_longitude": ["145.415744"], + "field_longitude_value": ["145.415744"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/GreaterShepparton-221021-feature-tile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["01-7876"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["31-71 Hawdon St"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20801], + "status": [true], + "title": ["Greater Shepparton Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2315e962-f84d-422e-975e-03aeb366cb8c"] + }, + "sort": ["Greater Shepparton Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20392:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greenhills-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a new competition-grade gym for the school.", + "We've upgraded the school. We created\u00a0new science/technology and food technology areas\u00a0that can also\u00a0be used by community groups, and added a large external deck that can be used for\u00a0outdoor learning. We\u00a0also refurbished the\u00a0hall so it\u00a0now includes\u00a0two staff offices, new AV systems, and acoustic\u00a0upgrades. We improved access into the hall to allow multiple classes to use the space with minimal distraction." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6.828 million.", + "In the 2018\u201319 State Budget $2.2 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Greenhills Primary School" + ], + "field_latitude": ["-37.688671112060547", "-37.692467"], + "field_latitude_longitude_value": [ + "-37.688671112060547,145.08670043945312" + ], + "field_latitude_value": ["-37.688671112060547"], + "field_longitude": ["145.08670043945312", "145.119034"], + "field_longitude_value": ["145.08670043945312"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Greenhills Primary School upgrade \u2013 construction progress \u00a0" + ], + "field_postcode": ["3088"], + "field_project_code": ["D1-01-4893", "01-4893"], + "field_project_title": [ + "Upgrade and Modernisation - Competition-Grade Gymnasium", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q2 2020"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Mine St"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20392], + "status": [true], + "title": ["Greenhills Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["18fbf38a-b1e7-4cb5-88b7-64a324962e2d"] + }, + "sort": ["Greenhills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21268:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greensborough-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped expand Greensborough Preschool. The project added an extra kinder room and a new maternal child health consulting room. Also, a new bathroom, kitchen and other refurbishments." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u20132018 Children's Facilities Capital Program $34,500 was allocated to the project.\u00a0In 2018, the preschool was allocated an additional $1.6 million." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Greensborough Preschool" + ], + "field_latitude": ["-37.70503"], + "field_latitude_longitude_value": ["-37.70503,145.09871"], + "field_latitude_value": ["-37.70503"], + "field_longitude": ["145.09871"], + "field_longitude_value": ["145.09871"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["15-424"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["17-19 Ester St"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21268], + "status": [true], + "title": ["Greensborough Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9a36322d-60f3-4206-bcdd-28e51d4e07c7"] + }, + "sort": ["Greensborough Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22345:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greensborough-primary-school"], + "changed": ["2023-08-23T12:13:26+10:00"], + "created": ["2022-01-14T14:23:54+11:00"], + "field_about_project_processed": [ + "We refurbished the student toilet block. It has improved amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $494,127" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Greensborough Primary School" + ], + "field_latitude": ["-37.703569"], + "field_latitude_longitude_value": ["-37.703569,145.100496"], + "field_latitude_value": ["-37.703569"], + "field_longitude": ["145.100496"], + "field_longitude_value": ["145.100496"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["01-2062"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["130 Grimshaw Street"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22345], + "status": [true], + "title": ["Greensborough Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["cd3442f7-7c1f-4328-bbe9-6573169941aa"] + }, + "sort": ["Greensborough Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20902:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greensborough-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have built a new sports hall and\u00a0senior school. We have also re-purposed the old gymnasium building as\u00a0a new specialist centre. This now\u00a0includes a full-size court\u00a0for netball, basketball, volleyball and badminton. The project also included\u00a0landscaping to create a school plaza between the senior school and specialist centre.\u200b\u200b \u200b\u200b \u200b", + "We completed this stage of works to modernise facilities at the school.\u00a0We demolished part\u00a0of a\u00a0building and constructed a\u00a0new administration block, science block, and\u00a0learning areas. A library links in\u00a0with a central pedestrian plaza and landscaping.", + "\u200bWe completed major upgrades to sporting facilities at the school, including new playing fields and a new pavilion. The sports ground upgrades include: natural turf AFL/cricket oval, with a synthetic turf cricket pitch, irrigation, lighting and behind goal netting a new synthetic soccer pitch with fencing and lighting a new pavilion including change rooms and a social space a new carpark a new synthetic turf cricket nets The grounds are\u00a0used by the school\u00a0during school hours and may be available for the community and casual users after hours when not being used by local clubs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, the school received $1 million funding to commence the planning process. In the 2016-17 State Budget, $9 million was allocated to undertake modernisation works.", + "In the 2019\u201320 State Budget, the school received $994,700. In 2020, the school received $8.95 million.", + "This project has been funded through the North East Link Project." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Sporting Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Greensborough Secondary College." + ], + "field_latitude": ["-37.70972", "-37.70972"], + "field_latitude_longitude_value": ["-37.70972,145.10452"], + "field_latitude_value": ["-37.70972"], + "field_longitude": ["145.10452", "145.10452"], + "field_longitude_value": ["145.10452"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["01-8750", "D1-01-8750", "D2-01-8750"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation - Stage 2", + "Sporting Facility Upgrade" + ], + "field_q_complete": ["Q2 2018", "Q2 2022", "Q2 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Nell St"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20902], + "status": [true], + "title": ["Greensborough Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aa2d1ffc-e2c6-4e9f-8757-60484fc13869"] + }, + "sort": ["Greensborough Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25371:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greenvale-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the staff and student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $415,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Greenvale Primary School" + ], + "field_latitude": ["-37.639828"], + "field_latitude_longitude_value": ["-37.639828,144.886181"], + "field_latitude_value": ["-37.639828"], + "field_longitude": ["144.886181"], + "field_longitude_value": ["144.886181"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Greenvale Primary School." + ], + "field_postcode": ["3059"], + "field_project_code": ["01-890"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["12-24 Bradford Avenue"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25371], + "status": [true], + "title": ["Greenvale Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6df6cbe1-b2ae-422c-bcf7-95e0ee3cb123"] + }, + "sort": ["Greenvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35011:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/greenvale-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-11-14T16:27:32+11:00"], + "created": ["2023-09-18T12:15:22+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Greenvale Primary School. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2025.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Greenvale Primary School Kindergarten (interim name)" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3059"], + "field_project_code": ["15-GPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35011], + "status": [true], + "title": ["Greenvale Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["266a6742-bf66-4164-b2c2-dd0a84eafc6f"] + }, + "sort": ["Greenvale Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20870:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greenvale-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building additional permanent capacity as part of Stage 2 works at Greenvale Secondary College, creating space for an extra 425 local students. These works include:a learning neighbourhood buildinga visual arts buildinga community hubhardcourtssports ovaloutdoor spacesa carpark", + "We built a new secondary college in Greenvale. It opened in 2022 and helps the growing local population get great education close to home.Mark Natoli was appointed as the first principal of the school.We consulted with the community on the school's name from 11 June to 25 June 2021. The school is named after the suburb it is located in.FacilitiesThe school has the following facilities:an administration and learning resource centre buildinga science, technology, engineering and maths buildinga learning neighbourhood building2 bike sheltersa temporary hardcourtlandscaped outdoor play and learning areasDesign consultationIn 2018, we consulted with local communities gaining new schools in Melbourne's fastest growing outer suburbs \u2013 including Greenvale Secondary College. We captured each local area's broad aspirations and used this feedback in our concept designs.During January and February 2020, we held a second round of engagement. We invited locals to share their ideas and the things that mattered most about their new school.Families wanted to see:playgrounds that used natural materials, colours and reflected the local parks and reservoirsareas that encouraged children to interact and be activeshaded outdoor spaces that provided weather protectioninnovative classrooms that provided flexible learning environments to suit the growing communityOur consultation received strong and consistent feedback. Our architects used this to help shape your school's design." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million", + "In 2020, the school shared in $438.6 million of funding for new schools." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Greenvale Secondary College." + ], + "field_latitude": ["-37.651131"], + "field_latitude_longitude_value": ["-37.651131,144.890227"], + "field_latitude_value": ["-37.651131"], + "field_longitude": ["144.890227"], + "field_longitude_value": ["144.890227"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-01/GreenvaleSS_220125_Specialised-Learning-Environment.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3059"], + "field_project_code": ["D1-01-8427", "01-8427"], + "field_project_title": [ + "New School - Building Space for More Students", + "New School" + ], + "field_q_complete": ["Q3 2024", "Q1 2022"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["2 Glencairn Dr"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20870], + "status": [true], + "title": ["Greenvale Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c9882cb0-32a7-4cef-97d6-417d92f49d78"] + }, + "sort": ["Greenvale Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21400:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greenvale-west-integrated-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0Hume City Council\u00a0build the integrated\u00a0community centre \u2013\u00a0a flexible, multipurpose space for children, families and the local community. The centre\u00a0is located\u00a0next to Keelonith\u00a0Primary School, which\u00a0will help local\u00a0children make\u00a0a smooth transition from preschool. \u00a0 \u00a0 Facilities It includes a maternal and child health services consulting room and waiting area, a specialist consulting room for early intervention services and a\u00a0multipurpose activity room that can accommodate playgroups, new parent groups, planned activity groups, meetings and training. The centre is\u00a0available as a hub for the community, where activities and events can be held for residents new to the area.\u00a0\u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Greenvale West Integrated Community Centre." + ], + "field_latitude": ["-37.624175"], + "field_latitude_longitude_value": ["-37.624175,144.878306"], + "field_latitude_value": ["-37.624175"], + "field_longitude": ["144.878306"], + "field_longitude_value": ["144.878306"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3059"], + "field_project_code": ["ELC-15"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Corner Blossom Dr & Ventura Way"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21400], + "status": [true], + "title": ["Greenvale West Integrated Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68305185-e1e2-47ab-9cb9-cfb801805718"] + }, + "sort": ["Greenvale West Integrated Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21196:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greenville-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Greenville Kindergarten in preparation for the roll-out of subsidised kindergarten for three-year-olds. This allows the kindergarten to offer 31 additional places to local families, improves the overall quality of the learning environment and help local children access 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Grants Capacity Building stream, the kindergarten received $453,000" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Greenville Kindergarten" + ], + "field_latitude": ["-38.1981764"], + "field_latitude_longitude_value": ["-38.1981764,144.3349979"], + "field_latitude_value": ["-38.1981764"], + "field_longitude": ["144.3349979"], + "field_longitude_value": ["144.3349979"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["15-1180"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Expansion" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["58 Greenville Dr"], + "field_suburb": ["Grovedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21196], + "status": [true], + "title": ["Greenville Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["04e5053b-56a3-428c-9387-3f3e8b541327"] + }, + "sort": ["Greenville Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25372:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/greta-valley-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are replacing the student and staff toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $408,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Greta Valley Primary School" + ], + "field_latitude": ["-36.617838"], + "field_latitude_longitude_value": ["-36.617838,146.236359"], + "field_latitude_value": ["-36.617838"], + "field_longitude": ["146.236359"], + "field_longitude_value": ["146.236359"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3675"], + "field_project_code": ["01-5398"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["2376 Wangaratta Kilfeera Road"], + "field_suburb": ["Greta South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25372], + "status": [true], + "title": ["Greta Valley Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["06e2fee5-5f02-42c7-8f91-da1c3de40600"] + }, + "sort": ["Greta Valley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20202:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grey-street-primary-school-traralgon"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a roof shelter area over a courtyard." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $428,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Grey Street Primary School (Traralgon)" + ], + "field_latitude": ["-38.193168150009"], + "field_latitude_longitude_value": [ + "-38.193168150009,146.535847599997" + ], + "field_latitude_value": ["-38.193168150009"], + "field_longitude": ["146.535847599997"], + "field_longitude_value": ["146.535847599997"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["01-3584"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["30\u201344 Grey St"], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20202], + "status": [true], + "title": ["Grey Street Primary School (Traralgon)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ff90ab3a-8ea9-4423-8ce6-97ff672baafb"] + }, + "sort": ["Grey Street Primary School (Traralgon)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22667:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grovedale-child-and-family-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We installed a new emergency messaging system to keep children, staff and families safe. In an emergency, the centre can now quickly communicate with the community and begin an automatic lockdown. This new technology will keep the centre community safe and informed of any unexpected concerns." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Grovedale Child and Family Centre" + ], + "field_latitude": ["-38.2083259"], + "field_latitude_longitude_value": ["-38.2083259,144.3336368"], + "field_latitude_value": ["-38.2083259"], + "field_longitude": ["144.3336368"], + "field_longitude_value": ["144.3336368"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["15-5373"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["45 Heyers Rd"], + "field_suburb": ["Grovedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22667], + "status": [true], + "title": ["Grovedale Child and Family Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["389ce897-3080-4db7-bc40-7ab0576ce804"] + }, + "sort": ["Grovedale Child and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20741:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grovedale-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. This included extending the performing arts building and gymnasium, reconfiguring the school's natural landscape, gardens and courtyard spaces, upgrading of the canteen and minor changes to the car park. School Design Awards This project, designed by 1:1 Architects,\u00a0was a finalist in the\u00a02019 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $7,587,000 has been allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Grovedale College" + ], + "field_latitude": ["-38.20968"], + "field_latitude_longitude_value": ["-38.20968,144.32819"], + "field_latitude_value": ["-38.20968"], + "field_longitude": ["144.32819"], + "field_longitude_value": ["144.32819"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["01-7183"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["19 Wingarra Dr"], + "field_suburb": ["Grovedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20741], + "status": [true], + "title": ["Grovedale College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9bf00b44-b16e-4506-a456-aee5d578ff19"] + }, + "sort": ["Grovedale College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20471:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grovedale-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. The new building will contain flexible and adaptable learning spaces, as well as\u00a0toilets, and staff office facilities. External works will include the modification of the existing playing field, landscaping and outdoor learning spaces. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6.559 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Grovedale West Primary School" + ], + "field_latitude": ["-38.2077842"], + "field_latitude_longitude_value": ["-38.2077842,144.3280271"], + "field_latitude_value": ["-38.2077842"], + "field_longitude": ["144.3280271"], + "field_longitude_value": ["144.3280271"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["01-5076"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["85 Heyers Rd"], + "field_suburb": ["Grovedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20471], + "status": [true], + "title": ["Grovedale West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fc0b3083-dd22-4b0b-b10c-b024278b318d"] + }, + "sort": ["Grovedale West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21363:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gumnuts-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped expand the early learning centre with a modular building. This will create an extra 66 approved kindergarten places for local children.", + "We delivered a new modular building to the\u00a0centre. This is in preparation for the roll-out of subsidised kindergarten for 3-year-olds. The centre can now provide families with an extra 66 kindergarten places. The upgrade included an improved outdoor play space and will cater for the population growth in this community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received funding from the $1.68 billion committed to Three Year Old Kindergarten in the 2018-19 budget. Funding was allocated in Round 1 of the 2021-22 Building Blocks Grants Capacity Building stream.", + "Funding was allocated in Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Gumnuts Early Learning Centre." + ], + "field_latitude": ["-38.1109504699707"], + "field_latitude_longitude_value": [ + "-38.1109504699707,147.06802368164063" + ], + "field_latitude_value": ["-38.1109504699707"], + "field_longitude": ["147.06802368164063"], + "field_longitude_value": ["147.06802368164063"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["D1-15-GELC", "15-GELC"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten", + "Building Blocks Capacity Grant \u2013 Modular Kindergarten Building" + ], + "field_q_complete": ["Q2 2023", "Q1 2022"], + "field_start_date": ["Q4 2022", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["305 Raglan St"], + "field_suburb": ["Sale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21363], + "status": [true], + "title": ["Gumnuts Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e12545ec-da11-4a05-a312-71fa49afecb3"] + }, + "sort": ["Gumnuts Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26208:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/gunditjmara-aboriginal-co-operative"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping Gunditjmara Aboriginal Cooperative plan an integrated children's centre. The centre would give Aboriginal children and families priority access to long day care and 2 years of kindergarten for 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Gunditjmara Aboriginal Co-operative" + ], + "field_latitude": ["-38.38068729"], + "field_latitude_longitude_value": ["-38.38068729,142.4817309"], + "field_latitude_value": ["-38.38068729"], + "field_longitude": ["142.4817309"], + "field_longitude_value": ["142.4817309"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["15-GAC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["135-137 Kepler St"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26208], + "status": [true], + "title": ["Gunditjmara Aboriginal Co-operative"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["f78c738d-2e35-4a04-85f1-9b6968acb3f2"] + }, + "sort": ["Gunditjmara Aboriginal Co-operative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20378:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/guthridge-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the multipurpose hall. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We refurbished the swimming pool centre. This will improve swimming lessons for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $1,851,699 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $318,125." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Guthridge Primary School." + ], + "field_latitude": ["-38.095698", "-38.0920724"], + "field_latitude_longitude_value": ["-38.095698,147.083829"], + "field_latitude_value": ["-38.095698"], + "field_longitude": ["147.083829", "147.0578569"], + "field_longitude_value": ["147.083829"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["D1-01-4853", "01-4853"], + "field_project_title": [ + "Minor Capital Works Fund \u2013 2022\u201323 State Budget", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2024", "Q1 2023"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Dawson St"], + "field_suburb": ["Sale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20378], + "status": [true], + "title": ["Guthridge Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["abefe0eb-0577-4d6c-9737-8c6011702581"] + }, + "sort": ["Guthridge Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34953:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/haddon-preschool-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-13T17:17:51+10:00"], + "field_about_project_processed": [ + "We are partnering with Golden Plains Shire Council to upgrade and expand Haddon Preschool Centre. We will build 2 one-room modular kindergarten buildings. This will create up to 50 new kindergarten places for local families. The first modular building will be ready to open for Term 1, 2024. We will then demolish the old kindergarten building to make room for the second modular building and a new outdoor play area. We plan to have the second building and playground ready by Q2 2024." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the Victorian Government and Golden Plains Shire Council. The Victorian Government has invested $5 million to support 2 projects. These will create up to 140 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Haddon Pre-School Centre" + ], + "field_latitude": ["-37.58814367"], + "field_latitude_longitude_value": ["-37.58814367,143.7196616"], + "field_latitude_value": ["-37.58814367"], + "field_longitude": ["143.7196616"], + "field_longitude_value": ["143.7196616"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3351"], + "field_project_code": ["15-1455"], + "field_project_title": ["Building Blocks Partnership"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["28 Haddon-Windermere Road"], + "field_suburb": ["Haddon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34953], + "status": [true], + "title": ["Haddon Preschool Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["583bb1bd-40e4-4541-86bd-36333f036ee9"] + }, + "sort": ["Haddon Preschool Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20101:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hallam-primary-school"], + "changed": ["2023-12-05T11:28:08+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building. The building will include general purpose classrooms as well as staff, student and accessible bathroom facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.586 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hallam Primary School." + ], + "field_latitude": ["-38.001759"], + "field_latitude_longitude_value": ["-38.001759,145.258244"], + "field_latitude_value": ["-38.001759"], + "field_longitude": ["145.258244"], + "field_longitude_value": ["145.258244"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at Hallam Primary School." + ], + "field_postcode": ["3803"], + "field_project_code": ["01-244"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["24 Harmer Rd"], + "field_suburb": ["Hallam"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20101], + "status": [true], + "title": ["Hallam Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["466498c0-7be6-4b7d-9ddf-d9340648d3c8"] + }, + "sort": ["Hallam Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36732:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/hallam-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Hallam Primary School.The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.\u00a0The centre may also include other spaces for community use.Between 2030\u20132032, Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Hallam Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-38.001759"], + "field_latitude_longitude_value": ["-38.001759,145.258244"], + "field_latitude_value": ["-38.001759"], + "field_longitude": ["145.258244"], + "field_longitude_value": ["145.258244"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3803"], + "field_project_code": ["15-HALLPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["24 Harmer Road"], + "field_suburb": ["Hallam"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36732], + "status": [true], + "title": [ + "Hallam Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8b4e9055-49a2-4acf-9502-6a9e77e4206d"] + }, + "sort": [ + "Hallam Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20950:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hallam-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade and expand this school. We will build a Year 7-9 building, a competition-grade gymnasium and an administration building. This will create places for 225 more local students.", + "We upgraded\u00a0the sports fields, including\u00a0reseeding and remediating two ovals and adding an additional storage tank." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget the school received $50,000 for planning. In the 2023\u201324 State Budget the school received $24.2 million", + "In the 2016\u201317 State Budget, $500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hallam Senior Secondary College" + ], + "field_latitude": ["-38.00123"], + "field_latitude_longitude_value": ["-38.00123,145.26173"], + "field_latitude_value": ["-38.00123"], + "field_longitude": ["145.26173"], + "field_longitude_value": ["145.26173"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3803"], + "field_project_code": ["D2-01-8868", "01-8868"], + "field_project_title": [ + "Upgrade and Modernisation - Building Space for Years 7-9", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2026", "Q1 2018"], + "field_start_date": ["Q2 2022", "Q3 2017"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["74-84 Frawley Rd"], + "field_suburb": ["Hallam"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20950], + "status": [true], + "title": ["Hallam Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["479ae1af-1b0a-4e57-8947-97559b63030c"] + }, + "sort": ["Hallam Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20159:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/halls-gap-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the roof of the school's major building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $186,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Halls Gap Primary School." + ], + "field_latitude": ["-37.1374099"], + "field_latitude_longitude_value": ["-37.1374099,142.5176714"], + "field_latitude_value": ["-37.1374099"], + "field_longitude": ["142.5176714"], + "field_longitude_value": ["142.5176714"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3381"], + "field_project_code": ["01-3058"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["10-14 School Rd"], + "field_suburb": ["Halls Gap"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20159], + "status": [true], + "title": ["Halls Gap Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4125f077-e5ee-4d6e-9342-583ba01b361d"] + }, + "sort": ["Halls Gap Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20561:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hamilton-parklands-school"], + "changed": ["2023-10-31T12:06:01+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will replace relocatable buildings with a permanent building at the school. It will include:5 dedicated learning areassensory and breakout roomspractical activities areaart and music roomadministration and staff areasa community huboutdoor play spaceWe'll also install a playground and outdoor learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $12.986 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hamilton Parklands School" + ], + "field_latitude": ["-37.790138244628906"], + "field_latitude_longitude_value": [ + "-37.790138244628906,142.00251770019531" + ], + "field_latitude_value": ["-37.790138244628906"], + "field_longitude": ["142.00251770019531"], + "field_longitude_value": ["142.00251770019531"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3300"], + "field_project_code": ["01-5283"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["15 Kerr Street"], + "field_suburb": ["Hamilton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20561], + "status": [true], + "title": ["Hamilton Parklands School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["395c3180-8868-4bdf-ae92-817a63d79c97"] + }, + "sort": ["Hamilton Parklands School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20357:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hamlyn-banks-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0provided new and upgraded facilities for students and staff.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $1,557,000 was allocated to the school" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hamlyn Banks Primary School" + ], + "field_latitude": ["-38.117599"], + "field_latitude_longitude_value": ["-38.117599,144.327637"], + "field_latitude_value": ["-38.117599"], + "field_longitude": ["144.327637"], + "field_longitude_value": ["144.327637"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["01-4804"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["2-24 Chaucer Street"], + "field_suburb": ["Hamlyn Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20357], + "status": [true], + "title": ["Hamlyn Banks Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["09ad355f-3450-4ce1-bb57-775244594eeb"] + }, + "sort": ["Hamlyn Banks Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20671:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hamlyn-views-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bThe new Hamlyn Views School\u200b was built to accommodate nearly 170 students on the former Western Heights College, Quamby Avenue campus. The school opened for students in term 1, 2018 to provide specialist education services and first-class facilities for children and young people with a disability from ages 5 to 18.\u200b\u00a0 A Local School Reference Group has been established, and will play a key role in supporting the principal to arrange ongoing community engagement activities. Facilities The new facilities at Hamlyn Views School\u200b include: a hydrotherapy pool which will deliver health benefits including relaxation, strength development, sensory stimulation and physical exercise, and which can also be accessed by other SDS schools and community groups \u00a0 a games hall and sensory gym area to support sensory movem\u200bent, and\u00a0mobility and therapy activities for students. Features include\u00a0support beams for swings, slings and hammocks and wall padding to minimise any impact risk \u00a0 sensory gardens with winding paths, seating, bird feeders and tactile play features for students\u00a0to interact and engage with natural settings \u00a0 inclusive sensory rooms equipped with interactive equipment to provide visual, auditory and tactile activities sensory pressure poles to enrich the sensory environment and provide calming support for students \u00a0 a playground liberty swing to give students in wheelchairs the opportunity to enjoy the fun and recreation of swinging \u00a0 dedicated spaces for healthcare professionals so students can access services such as speech pathology, physiotherapy and occupational therapy at school.\u200b The new school\u00a0features the latest in environmentally sustainable design, and CERES will run its environmental education program 'ResourceSmart'.", + "We are building an inclusive playground, including new play equipment and soft fall.", + "We are modernising the school to give students better learning opportunities. We will upgrade the existing playground, install a new shade sail and the covers over the basketball court." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for Public Private Partnership (PPP) projects across regional and metropolitan Victoria.", + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2022\u201323 State Budget, this school received at least $1.274 million." + ], + "field_funding_type_name": [ + "New School", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the build of Hamlyn Views School" + ], + "field_latitude": ["-38.12482", "-38.125275", "-38.125275"], + "field_latitude_longitude_value": ["-38.12482,144.33229"], + "field_latitude_value": ["-38.12482"], + "field_longitude": ["144.33229", "144.332374", "144.332374"], + "field_longitude_value": ["144.33229"], + "field_mappintype_name": [ + "New school", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["01-5565", "D1-01-5565", "D2-01-5565"], + "field_project_title": [ + "New School", + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2018", "Q2 2024", "Q4 2025"], + "field_start_date": ["Q4 2021", "Q2 2022"], + "field_status_name": ["Complete", "Construction", "Design"], + "field_street_address": ["45 Calvert St"], + "field_suburb": ["Hamlyn Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20671], + "status": [true], + "title": ["Hamlyn Views School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e80992a2-3439-4701-a9d9-b7759dde9958"] + }, + "sort": ["Hamlyn Views School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20554:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hampden-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Hampden Specialist School with new facilities. We are also refurbishing shared facilities for both Hampden Specialist School and Cobden Technical School.\u00a0", + "We relocated Hampden Specialist School (Primary Campus) and Terang College P\u20134 Campus to the Terang College 5\u201312 Campus.The new Hampden Specialist School building includes:classroomsa large multipurpose spacedining spacestaff roommeeting roomsquiet spacesan art room.We also delivered landscaping and a bus shelter.We built a new library for Terang College, with a large open library space, four classrooms, seminar rooms and offices.Hampden Specialist School (Primary Campus) has benefitted from Victoria's largest ever single investment in upgrading specialist schools, with 39 schools sharing in $388.8 million." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $4.308 million.", + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the project was allocated $1.187 million in planning funding. In the 2020-21 State Budget, the project received $10.685 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hampden Specialist School" + ], + "field_latitude": ["-38.323556", "-38.24630786817332"], + "field_latitude_longitude_value": ["-38.323556,143.064656"], + "field_latitude_value": ["-38.323556"], + "field_longitude": ["143.064656", "142.9213738488206"], + "field_longitude_value": ["143.064656"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3264"], + "field_project_code": ["D1-01-5276", "01-5276"], + "field_project_title": [ + "Upgrade and Modernisation (Cobden Campus)", + "Upgrade and Modernisation (Terang Campus)" + ], + "field_q_complete": ["Q4 2025", "Q3 2023"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["45 Strong St"], + "field_suburb": ["Terang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20554], + "status": [true], + "title": ["Hampden Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a0e492dd-aa1e-48e3-81fd-f292eb06901e"] + }, + "sort": ["Hampden Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20255:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hampton-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created a new community hub space.", + "We have completed a major modernisation project at the school including:\u200b\u200b\u200b\u200b rebuilding Block A, which will house science, technology, engineering, arts and mathematics\u00a0(STEAM)\u00a0facilities, learning spaces, a resource hub and administration wing rebuilding Block B, providing eight additional teaching spaces landscaping works. The modernisation\u00a0was also a\u00a0finalist in the award for\u00a0the\u00a0Primary\u00a0Best School Project\u00a0at\u00a0the\u00a02018 Victorian School Design Awards\u200b.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $264,625", + "In the 2016-17 State Budget, $700,000 was allocated to the school. In the 2015-16 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hampton Park Primary School." + ], + "field_latitude": ["-38.029435", "-38.02943"], + "field_latitude_longitude_value": ["-38.029435,145.247841"], + "field_latitude_value": ["-38.029435"], + "field_longitude": ["145.247841", "145.24784"], + "field_longitude_value": ["145.247841"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3976"], + "field_project_code": ["D1-01-4062", "01-4062"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2022", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Somerville Rd"], + "field_suburb": ["Hampton Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20255], + "status": [true], + "title": ["Hampton Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b99a8858-fecf-4366-bbc6-7503e14d5001"] + }, + "sort": ["Hampton Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20888:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hampton-park-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade Hampton Park Secondary College, building on the works currently underway at the school.", + "We upgraded and modernised the classrooms and facilities at Hampton Park Secondary College. We refurbished T-Block to create\u00a0a STEAM/FabLab facility. This building includes new student toilets for the campus.", + "We upgraded facilities at Hampton Park Secondary College,\u00a0including refurbishing and modernising classrooms and converting the gym into\u00a0a senior learning centre.", + "\u200b\u200bWe\u00a0expanded and redesigned\u00a0a disability and wellbeing space to include a new calming space, Indigenous sensory garden and music therapy hub." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $563,000 in planning funding. In the 2020-21 State Budget, the school received $7.559 million.", + "In the 2019\u201320 State Budget, the school received $3.9 million.", + "In the 2018\u201319 State Budget, $2.62 million was allocated to the school.", + "In 2016, the school received $134,500 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hampton Park Secondary College" + ], + "field_latitude": [ + "-38.0389518737793", + "-38.03624", + "-38.036240", + "-38.034821" + ], + "field_latitude_longitude_value": [ + "-38.0389518737793,145.26980590820312" + ], + "field_latitude_value": ["-38.0389518737793"], + "field_longitude": [ + "145.26980590820312", + "145.259", + "145.259003", + "145.259293" + ], + "field_longitude_value": ["145.26980590820312"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3976"], + "field_project_code": [ + "D3-01-8709", + "D2-01-8709", + "D1-01-8709", + "01-8709" + ], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2024", "Q4 2022", "Q1 2022", "Q4 2017"], + "field_start_date": ["Q4 2020", "Q2 2019", "Q2 2018"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["58-96 Fordholm Rd"], + "field_suburb": ["Hampton Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20888], + "status": [true], + "title": ["Hampton Park Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b8ae3e0b-eb31-4ea9-b759-b02817114258"] + }, + "sort": ["Hampton Park Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33018:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hampton-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Hampton Primary School" + ], + "field_latitude": ["-37.93339"], + "field_latitude_longitude_value": ["-37.93339,145.003476"], + "field_latitude_value": ["-37.93339"], + "field_longitude": ["145.003476"], + "field_longitude_value": ["145.003476"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3188"], + "field_project_code": ["01-3754"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["528 Hampton Street"], + "field_suburb": ["Hampton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33018], + "status": [true], + "title": ["Hampton Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a33d7b7a-6a40-4b97-8577-23791f1e7746"] + }, + "sort": ["Hampton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28964:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hansen-park-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "This grant helped the preschool install a basketball court, a rubber track and traffic signs to promote road safety. The outdoor space is now safer and better for learning.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $58,706 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hansen Park Preschool" + ], + "field_latitude": ["-37.80175828"], + "field_latitude_longitude_value": ["-37.80175828,145.3234414"], + "field_latitude_value": ["-37.80175828"], + "field_longitude": ["145.3234414"], + "field_longitude_value": ["145.3234414"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3137"], + "field_project_code": ["15-772"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Tower St"], + "field_suburb": ["Kilsyth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28964], + "status": [true], + "title": ["Hansen Park Preschool"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["1632b3fc-72ad-4b1d-a8bf-9467f62b48b4"] + }, + "sort": ["Hansen Park Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21378:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/harcourt-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with YMCA (Ballarat) and Harcourt Preschool Committee, we relocated\u00a0and upgraded their kindergarten, creating the new preschool.\u00a0 We installed a\u00a0purpose-built modular kindergarten\u00a0that is\u00a0able to offer more places\u00a0for local\u00a03 and 4-year-olds. Modular kindergartens are relocatable facilities that can be produced in a matter of months and flexibly deployed where needed. This significantly reduces the\u00a0time\u00a0and cost\u00a0of creating new kinders. Modular buildings will help deliver high-quality, long-lasting, purpose-built kindergarten infrastructure.\u00a0 This kindergarten is\u00a0co-located with Harcourt Valley Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was allocated a further $550,000 through the Children's Facilities Capital Program. In 2017\u201318, this project was allocated $262,500 through the Children's Facilities Capital Program" + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Harcourt Preschool." + ], + "field_latitude": ["-37.00253"], + "field_latitude_longitude_value": ["-37.00253,144.25721"], + "field_latitude_value": ["-37.00253"], + "field_longitude": ["144.25721"], + "field_longitude_value": ["144.25721"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Explore more about kindergartens"], + "field_postcode": ["3453"], + "field_project_code": ["15-NHELC"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Wilkinson St"], + "field_suburb": ["Harcourt"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21378], + "status": [true], + "title": ["Harcourt Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4b0a8946-e345-4ee1-83fd-7f6addb14f10"] + }, + "sort": ["Harcourt Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25373:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/harcourt-valley-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We refurbished the staff toilets to improve amenity, cleanliness and hygiene.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $73,298 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Harcourt Valley Primary School" + ], + "field_latitude": ["-37.002974"], + "field_latitude_longitude_value": ["-37.002974,144.257234"], + "field_latitude_value": ["-37.002974"], + "field_longitude": ["144.257234"], + "field_longitude_value": ["144.257234"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3453"], + "field_project_code": ["01-5404"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["3 Wilkinson Street"], + "field_suburb": ["Harcourt"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25373], + "status": [true], + "title": ["Harcourt Valley Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["24e14c7c-d642-4ecb-87a3-cd3a6ef1c888"] + }, + "sort": ["Harcourt Valley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36992:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hardys-road-family-and-community-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-20T11:54:48+11:00"], + "field_about_project_processed": [ + "We are building an integrated family and community centre in Clyde North. This will help meet growing demand for kindergarten places and other services. The new centre will have new places for up to 99 local children each day. This will help the centre expand free kindergarten, as part of the Best Start, Best Life reforms. The new centre will also have a maternal and child health space, and flexible community spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 4 of the 2023 Building Blocks Capacity Grant, $6,750,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build of Sebastopol Community Hub (interim name)" + ], + "field_latitude": ["-38.10487"], + "field_latitude_longitude_value": ["-38.10487,145.33798"], + "field_latitude_value": ["-38.10487"], + "field_longitude": ["145.33798"], + "field_longitude_value": ["145.33798"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["15-HRFCC"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["70 Hardys Rd"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36992], + "status": [true], + "title": ["Hardy's Road Family and Community Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ff331938-5f96-4af7-aa78-9edfc3ff664b"] + }, + "sort": ["Hardy's Road Family and Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21093:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/harkaway-hills-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school\u00a0to construct\u00a0a general learning area (to be converted at a later date into a library), an administration building\u00a0including meeting and staff rooms, and car parking.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $800,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Harkaway Hills College." + ], + "field_latitude": ["-37.977493"], + "field_latitude_longitude_value": ["-37.977493,145.31587"], + "field_latitude_value": ["-37.977493"], + "field_longitude": ["145.31587"], + "field_longitude_value": ["145.31587"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3804"], + "field_project_code": ["02-2106"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["20 A\u2019Beckett Rd"], + "field_suburb": ["Narre Warren North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21093], + "status": [true], + "title": ["Harkaway Hills College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0bcc3811-bac7-4a77-a135-6b9d614547a7"] + }, + "sort": ["Harkaway Hills College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21438:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/harkaway-hills-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping build a new kindergarten in Narre Warren North, located adjacent to Harkaway Hills College. The kindergarten will include 2 kindergarten rooms for 3 and 4-year-olds, a playground, office and amentities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $1,500,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Harkaway Hills Kindergarten." + ], + "field_latitude": ["-37.974343"], + "field_latitude_longitude_value": ["-37.974343,145.315582"], + "field_latitude_value": ["-37.974343"], + "field_longitude": ["145.315582"], + "field_longitude_value": ["145.315582"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3804"], + "field_project_code": ["ELC-HHK"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["420-432 Belgrave-Hallam Rd"], + "field_suburb": ["Narre Warren North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21438], + "status": [true], + "title": ["Harkaway Hills Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fa45e033-7820-4177-9224-668cc8e7489a"] + }, + "sort": ["Harkaway Hills Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20871:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/harrietville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We modernised the primary school where conditions did not meet current standards. \u00a0 This work included extending\u00a0and upgrading\u00a0the administration building, as well as building new a\u00a0verandah and decking for an outdoor learning space,\u00a0staff amenities\u00a0and\u00a0a\u00a0front entrance.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $291,000 will be allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Harrietville Primary School" + ], + "field_latitude": ["-36.88768"], + "field_latitude_longitude_value": ["-36.88768,147.06481"], + "field_latitude_value": ["-36.88768"], + "field_longitude": ["147.06481"], + "field_longitude_value": ["147.06481"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3741"], + "field_project_code": ["01-843"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["165 Great Alpine Road"], + "field_suburb": ["Harrietville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20871], + "status": [true], + "title": ["Harrietville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d19921c8-74da-4f8c-b2ec-7fb97422f065"] + }, + "sort": ["Harrietville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36735:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/harrisfield-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Harrisfield Primary School in Noble Park.\u00a0The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.\u00a0The centre may also include other spaces for community use.\u00a0From 2030\u20132032, Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.\u00a0Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.\u00a0Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Harrisfield Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-37.954443"], + "field_latitude_longitude_value": ["-37.954443,145.179896"], + "field_latitude_value": ["-37.954443"], + "field_longitude": ["145.179896"], + "field_longitude_value": ["145.179896"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["15-HARRPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["495 Princes Hwy"], + "field_suburb": ["Noble Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36735], + "status": [true], + "title": [ + "Harrisfield Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7f1e5f2b-2a91-473e-bbfe-e963c2ffa09c"] + }, + "sort": [ + "Harrisfield Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19996:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/harston-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200b\u200bWe refurbished the kitchen area at the school\u00a0and built new seating and outdoor benches. We also completed re-stumping works and\u00a0termite control alongside repairs to the roof and gutters." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $90,000 has been allocated to the school." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Harston Primary School" + ], + "field_latitude": ["-36.4697"], + "field_latitude_longitude_value": ["-36.4697,145.14173"], + "field_latitude_value": ["-36.4697"], + "field_longitude": ["145.14173"], + "field_longitude_value": ["145.14173"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3616"], + "field_project_code": ["01-1458"], + "field_project_title": ["School Pride and Sports Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["155 Harston Road"], + "field_suburb": ["Tatura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19996], + "status": [true], + "title": ["Harston Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e13f6720-3dc7-42a6-b53e-0a9de759746d"] + }, + "sort": ["Harston Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21256:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hartnett-house-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bMelbourne City Mission\u00a0delivered\u00a0Stage 2 of the centre upgrade. \u200b \u00a0 Facilities Spaces throughout the centre were\u00a0upgraded including the children's rooms, kitchen, storage, staff room, laundry and external play areas. A currently disused room was refurbished to become an integrated community and education room.\u00a0 This upgrade\u00a0allows Hartnett House to\u00a0increase community and Melbourne City Mission\u00a0use.\u00a0In addition, the upgraded facility will be more welcoming to the community with improved entrance access, larger foyer and waiting spaces and improved natural light\u200b.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Hartnett House Children's Centre." + ], + "field_latitude": ["-37.76095"], + "field_latitude_longitude_value": ["-37.76095,144.9684"], + "field_latitude_value": ["-37.76095"], + "field_longitude": ["144.9684"], + "field_longitude_value": ["144.9684"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3056"], + "field_project_code": ["15-3581"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["123 Albion St"], + "field_suburb": ["Brunswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21256], + "status": [true], + "title": ["Hartnett House Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3fcb998c-3a0d-4520-86b8-c9c0283f0114"] + }, + "sort": ["Hartnett House Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20637:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/harvest-home-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school serves families in the suburb of Epping. The school has been built to accommodate up to 475 students, and was delivered by the Learning Communities Victoria consortium. \u200b The school opened for students, Prep to Year 6 in Term 1, 2017.\u200b\u200b Facilities The school\u00a0was designed with the local community in mind and is a gathering place for local families and residents to enjoy community, arts, sports and recreation programs.\u200b Facilities include:\u200b \u200ban Early Learning Centre run by the YMCA that facilitates the transition between early childhood learning to primary education an additional multi-purpose space that can be used by the school during school hours and by the YMCA out of school hours to provide a range of community services and programs a shared oval with City of Whittlesea Council to maximise space for students, including an amphitheatre and outdoor stage an expanded gymnasium built to Netball Victoria standards embedded environmental sustainability education via the CERES ResourceSmart Schools program initiative additional classrooms for students in this high growth area conference and meeting rooms for local community use.\u200b\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for the Public Private Partnership Project across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Harvest Home Primary School." + ], + "field_latitude": ["-37.62298"], + "field_latitude_longitude_value": ["-37.62298,145.00244"], + "field_latitude_value": ["-37.62298"], + "field_longitude": ["145.00244"], + "field_longitude_value": ["145.00244"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3076"], + "field_project_code": ["01-5500"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["365 Harvest Home Rd"], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20637], + "status": [true], + "title": ["Harvest Home Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8db41e77-ad81-451b-b4ea-44b9ee61cc42"] + }, + "sort": ["Harvest Home Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21348:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/havilah-road-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The City of Greater Bendigo upgraded Havilah Road Kindergarten's playground facilities, including installing soft fall, building a digging patch, gravel pit, bike path, plants and river bed.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $40,000 was allocated to the preschool." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Havilah Road Preschool" + ], + "field_latitude": ["-36.7465"], + "field_latitude_longitude_value": ["-36.7465,144.26239"], + "field_latitude_value": ["-36.7465"], + "field_longitude": ["144.26239"], + "field_longitude_value": ["144.26239"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["15-93"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["22 Havilah Rd"], + "field_suburb": ["Long Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21348], + "status": [true], + "title": ["Havilah Road Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["260d04ad-bc16-40b7-af90-9b8a4c81dfad"] + }, + "sort": ["Havilah Road Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20615:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hawkesdale-p12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at the school, including the refurbishment of classrooms and the East Building Wing. As part of these works, we delivered a new science, technology, engineering and mathematics\u00a0(STEM)\u00a0centre, main school entry and associated administration offices.\u00a0", + "We are refurbishing the staff toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $2 million was allocated to the school.", + "In the 2022\u201323 State Budget the project received $137,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hawkesdale P12 College." + ], + "field_latitude": ["-38.106640", "-38.106976"], + "field_latitude_longitude_value": ["-38.106640,142.319321"], + "field_latitude_value": ["-38.106640"], + "field_longitude": ["142.319321", "142.319173"], + "field_longitude_value": ["142.319321"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3287"], + "field_project_code": ["01-5434", "D1-01-5434"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2020", "Q4 2023"], + "field_start_date": ["Q2 2018", "Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["65 Mitchell St"], + "field_suburb": ["Hawkesdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20615], + "status": [true], + "title": ["Hawkesdale P12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["916540ac-00ba-440c-8344-92b195b96429"] + }, + "sort": ["Hawkesdale P12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22607:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hawthorn-early-years"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are creating flexible and functional outdoor learning environments. These improvements will engage and support three and four-year-old children of all needs and abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Improvement Grant, $300,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Hawthorn Early Years" + ], + "field_latitude": ["-37.82489771"], + "field_latitude_longitude_value": ["-37.82489771,145.0357958"], + "field_latitude_value": ["-37.82489771"], + "field_longitude": ["145.0357958"], + "field_longitude_value": ["145.0357958"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3122"], + "field_project_code": ["15-2953"], + "field_project_title": [ + "Building Blocks Improvement Grant \u2013\u00a0Outdoor Learning Environment" + ], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["584 Glenferrie Rd"], + "field_suburb": ["Hawthorn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22607], + "status": [true], + "title": ["Hawthorn Early Years"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2bc85355-f0a1-4c44-88eb-89b7a7926fc0"] + }, + "sort": ["Hawthorn Early Years"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20147:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hawthorn-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade classrooms in Block A.", + "We are refurbishing the toilet block to improve amenity, cleanliness and hygiene.", + "We built\u00a0an inclusive playground and sensory garden that\u00a0can be used as\u00a0a flexible learning space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $5.731 million.", + "In Round 2 of the Minor Capital Works Fund, the project received $442,127.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hawthorn West Primary School" + ], + "field_latitude": ["-37.820112", "-37.820112", "-37.81996"], + "field_latitude_longitude_value": ["-37.820112,145.018377"], + "field_latitude_value": ["-37.820112"], + "field_longitude": ["145.018377", "145.018377", "145.02041"], + "field_longitude_value": ["145.018377"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3122"], + "field_project_code": ["D2-01-293", "D1-01-293", "01-293"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2025", "Q4 2024", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q4 2021", "Q4 2019"], + "field_status_name": ["Design", "Design", "Complete"], + "field_street_address": ["Cnr Wood St & Burwood Rd"], + "field_suburb": ["Hawthorn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20147], + "status": [true], + "title": ["Hawthorn West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e57a2bdb-597e-4230-956d-73db242f5c9a"] + }, + "sort": ["Hawthorn West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20659:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hazel-glen-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "\u200b\u200b\u200bHazel Glen College is a new P-12 school in the high growth area of Doreen.\u00a0 In the 2011\u201312 and 2012\u201313 Stage Budgets, $6.2 million and $10 million respectively was provided for the purchase of a school site and the construction of a primary school.\u00a0 The College received $11.5 million in the 2013\u201314 State Budget for Stage 1 comprising the construction of a secondary college which was completed at the beginning of the 2015 school year.\u00a0 The College received $12 million in the 2014\u201315 State Budget for Stage 2 of development which consists of provision of specialist learning spaces, a performing arts area and senior gym. \u00a0 In the\u00a02015\u201316 State Budget, Hazel Glen College received $7.8 million to complete Stage 3 and 4 of development. \u200b \u200b Facilities The new school at Hazel Glen College provides for the education needs of the whole community. Primary, Middle School and Secondary campuses are located on the same site, linked by a series of pathways, active and passive outdoor recreation spaces. \u200bStage 1 and 2 Facilities \u200b\u200bJunior Flexible Learning Neighbourhoods\u00a0 Outdoor learning spaces\u00a0 Primary and Secondary administration areas STEAM Centre (Science, Technology, Engineering, Art and Maths) Hospitality and Performing Arts Centre\u00a0 Two-court gymnasium with fitness centre\u00a0 Four outdoor basketball/netball courts Junior and Senior sports oval \u00a0 Stage 3 and 4 Facilities\u200b \u200bTwo-storey senior learning centre\u00a0 Two outdoor basketball courts\u00a0 Staff carpark area Access roads and pathways Landscaping Pedestrian bridge linking to the school's STEAM building\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "Previously, the school had received $39.7 million in funding. In the 2015\u201316 State Budget, $7.8 million was allocated to this project." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hazel Glen College" + ], + "field_latitude": ["-37.59893"], + "field_latitude_longitude_value": ["-37.59893,145.12231"], + "field_latitude_value": ["-37.59893"], + "field_longitude": ["145.12231"], + "field_longitude_value": ["145.12231"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["D1-01-5552", "01-5552"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q2 2018"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["115 Eminence Blvd"], + "field_suburb": ["Doreen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20659], + "status": [true], + "title": ["Hazel Glen College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["56d06803-b6aa-465c-a27a-b1a5e82d04a5"] + }, + "sort": ["Hazel Glen College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20097:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hazelwood-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including Block A and the toilet block." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.718 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hazelwood North Primary School." + ], + "field_latitude": ["-38.270866394042969"], + "field_latitude_longitude_value": [ + "-38.270866394042969,146.47346496582031" + ], + "field_latitude_value": ["-38.270866394042969"], + "field_longitude": ["146.47346496582031"], + "field_longitude_value": ["146.47346496582031"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3840"], + "field_project_code": ["01-2382"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["121 Church Rd"], + "field_suburb": ["Hazelwood North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20097], + "status": [true], + "title": ["Hazelwood North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["98557448-1f9e-4e1c-a7ea-2f0be8231c78"] + }, + "sort": ["Hazelwood North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23299:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heatherdale-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are adding a second kindergarten room. This will create 22 additional kindergarten places for 3-year-olds in the local area.", + "We are building a ramp so that children of all abilities can access the outdoor play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Building Blocks Capacity Building Grant, $833,238 was allocated to this project.", + "In the 2022\u201323 Building Blocks Inclusion Grants $151,331.48 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Heatherdale Preschool." + ], + "field_latitude": ["-37.8204257"], + "field_latitude_longitude_value": ["-37.8204257,145.2084337"], + "field_latitude_value": ["-37.8204257"], + "field_longitude": ["145.2084337"], + "field_longitude_value": ["145.2084337"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3132"], + "field_project_code": ["15-978", "d1-15-978"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion", + "Building Blocks Inclusion Grant" + ], + "field_q_complete": ["Q3 2024", "Q3 2024"], + "field_start_date": ["Q3 2022", "Q1 2023"], + "field_status_name": ["Planning", "Planning"], + "field_street_address": ["12 Purches St"], + "field_suburb": ["Mitcham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23299], + "status": [true], + "title": ["Heatherdale Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6b86953c-0e05-4ec8-a55e-f2f0119334f1"] + }, + "sort": ["Heatherdale Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21092:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heatherton-christian-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school build a 2-storey students learning centre at Wyndham Christian College campus. The building will feature 16 flexible learning spaces, student welfare spaces, breakout areas, staff offices, student and staff toilets, and storage. Works will also include outdoor decking, a synthetic turf playing field, and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Heatherton Christian College." + ], + "field_latitude": ["-37.87584791720505"], + "field_latitude_longitude_value": [ + "-37.87584791720505,144.61839466233678" + ], + "field_latitude_value": ["-37.87584791720505"], + "field_longitude": ["144.61839466233678"], + "field_longitude_value": ["144.61839466233678"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3024"], + "field_project_code": ["02-2099"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22 \u2013\u00a0Wyndham Christian College" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["418-438 Ballan Rd"], + "field_suburb": ["Wyndham Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21092], + "status": [true], + "title": ["Heatherton Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68413234-63c4-41c1-a273-1a4790ba011c"] + }, + "sort": ["Heatherton Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20383:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heatherwood-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are continuing to upgrade and modernise this school, delivering the next stage of the school's master plan.", + "We upgraded and modernised facilities at the school by:refurbishing the administration buildingbuilding a multipurpose hall with a music room and toiletsbuilding a classroom building for Block D.\u00a0We also built a gymnasium that connects to Block D. There is a large undercover area which the community can also use for events." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In the 2016\u201317 State Budget, $4.12 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Heatherwood School." + ], + "field_latitude": ["-37.789630889892578", "-37.80041"], + "field_latitude_longitude_value": [ + "-37.789630889892578,145.18797302246094" + ], + "field_latitude_value": ["-37.789630889892578"], + "field_longitude": ["145.18797302246094", "145.17583"], + "field_longitude_value": ["145.18797302246094"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3111"], + "field_project_code": ["D1-01-4871", "01-4871"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2024", "Q4 2023"], + "field_start_date": ["Q4 2020", "Q1 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["370-380 Springvale Rd"], + "field_suburb": ["Donvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20383], + "status": [true], + "title": ["Heatherwood School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ccab6be6-87ee-4242-a0d9-60cc0850b7ae"] + }, + "sort": ["Heatherwood School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20927:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heathmont-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We added a performing arts centre (for music and drama), as well as a canteen to the school\u2019s gymnasium building. We also built a car park.\u00a0We talked with school leaders to ensure works would help achieve educational goals. We ensured that improvements targeted areas that required them most.\u00a0", + "We\u00a0upgraded\u00a0facilities at the school, including\u00a0a new competition grade gym. We\u00a0also refurbished\u00a0the\u00a0HOPE centre, which provides student wellbeing and counselling\u00a0services.\u00a0", + "We helped build\u00a0a flexible space to encourage collaboration, as well as an area to support learning in science, engineering and maths. New connecting doors\u00a0lead to an outdoor area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.5 million.", + "In the 2018\u201319 State Budget $5.5 million was allocated to the school.", + "In 2018, $150,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Heathmont College" + ], + "field_latitude": ["-37.828849792480469", "-37.837910"], + "field_latitude_longitude_value": [ + "-37.828849792480469,145.24586486816406" + ], + "field_latitude_value": ["-37.828849792480469"], + "field_longitude": ["145.24586486816406", "145.233200"], + "field_longitude_value": ["145.24586486816406"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["D2-01-8816", "01-8816", "D1-01-8816"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2023", "Q1 2021", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q2 2018", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Waters Gr"], + "field_suburb": ["Heathmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20927], + "status": [true], + "title": ["Heathmont College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9bdf49fb-d633-483b-afb7-166ddf42710f"] + }, + "sort": ["Heathmont College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33034:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heathmont-east-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We will be upgrading this school to give students better learning opportunities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $5.44 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Heathmont East Primary School" + ], + "field_latitude": ["-37.830346"], + "field_latitude_longitude_value": ["-37.830346,145.257688"], + "field_latitude_value": ["-37.830346"], + "field_longitude": ["145.257688"], + "field_longitude_value": ["145.257688"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["01-4819"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["Louis Street"], + "field_suburb": ["Heathmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33034], + "status": [true], + "title": ["Heathmont East Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["ff2a4df8-f5c6-406c-909f-58a531f12dad"] + }, + "sort": ["Heathmont East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20149:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heidelberg-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We built\u00a0three outdoor spaces with a range of low to high-stimulus environments including an outdoor classroom, a veggie patch, a quiet space and a sensory garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Planning", "Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Heidelberg Primary School" + ], + "field_latitude": ["-37.754705"], + "field_latitude_longitude_value": ["-37.754705,145.067799"], + "field_latitude_value": ["-37.754705"], + "field_longitude": ["145.067799"], + "field_longitude_value": ["145.067799"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["D1-01-294", "01-294"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Subject to future funding", "Q1 2020"], + "field_start_date": ["Q2 2023", "Q4 2018"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Cape St"], + "field_suburb": ["Heidelberg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20149], + "status": [true], + "title": ["Heidelberg Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e0c87ff8-a4b6-4e52-8f77-31df41ffdd7c"] + }, + "sort": ["Heidelberg Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23335:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/helm-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:56:32+11:00"], + "field_about_project_processed": [ + "We refurbished Shine Bright Helm Street Kindergarten. The works included: replacing flooring, repainting, upgrading the art cubby house, renovating the bathroom, and resurfacing the carpark." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $119,190 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Helm Street Kindergarten" + ], + "field_latitude": ["-36.79710633"], + "field_latitude_longitude_value": ["-36.79710633,144.2396267"], + "field_latitude_value": ["-36.79710633"], + "field_longitude": ["144.2396267"], + "field_longitude_value": ["144.2396267"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3555"], + "field_project_code": ["15-820"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Helm St"], + "field_suburb": ["Kangaroo Flat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23335], + "status": [true], + "title": ["Helm Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9e681b27-bbf4-4c4e-812d-2b2bd14d9393"] + }, + "sort": ["Helm Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21142:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/henderson-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe supported the school to\u00a0upgrade\u00a0the library to create a Years 9\u201310 learning hub consisting of 3 flexible learning spaces and staff areas.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Capital Funding Program for Non-Government Schools, $449,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Henderson College." + ], + "field_latitude": ["-34.22251"], + "field_latitude_longitude_value": ["-34.22251,142.15955"], + "field_latitude_value": ["-34.22251"], + "field_longitude": ["142.15955"], + "field_longitude_value": ["142.15955"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3498"], + "field_project_code": ["03-1498"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["806-816 Cowra Av"], + "field_suburb": ["Irymple"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21142], + "status": [true], + "title": ["Henderson College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dd6b452e-1506-4202-b323-30225ccfb77f"] + }, + "sort": ["Henderson College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34960:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hepburn-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-14T09:37:43+10:00"], + "field_about_project_processed": [ + "We are upgrading the bathroom, kitchen and office. We're also refurbishing the timber floors and making the lighting more energy efficient. Outside, we're improving the front entrance. We\u2019ll add a carpark and drop-off zone. This will improve security and access." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Early Childhood Refurbishment and Minor Works Grant round, $428,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Hepburn Kindergarten" + ], + "field_latitude": ["-37.31117883"], + "field_latitude_longitude_value": ["-37.31117883,144.134224"], + "field_latitude_value": ["-37.31117883"], + "field_longitude": ["144.134224"], + "field_longitude_value": ["144.134224"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3461"], + "field_project_code": ["15-412"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Golf Links Rd"], + "field_suburb": ["Hepburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34960], + "status": [true], + "title": ["Hepburn Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c705542a-e556-49a3-98aa-158244d83988"] + }, + "sort": ["Hepburn Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21143:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heritage-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported\u00a0the school to expand their primary school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $4,972,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Heritage College." + ], + "field_latitude": ["-38.04987"], + "field_latitude_longitude_value": ["-38.04987,145.31693"], + "field_latitude_value": ["-38.04987"], + "field_longitude": ["145.31693"], + "field_longitude_value": ["145.31693"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["03-1511"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["333 Centre Rd"], + "field_suburb": ["Narre Warren South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21143], + "status": [true], + "title": ["Heritage College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["17a3e805-50fb-44d6-a106-e0ce919d5449"] + }, + "sort": ["Heritage College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28676:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heritage-college-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are expanding and upgrading the centre. Extending the building and rearranging spaces will create more room for the centre to grow its 3-year-old kinder, Pre-Prep (4-year-old kinder), and long day care programs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $400,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Heritage College Early Learning Centre." + ], + "field_latitude": ["-38.05439882"], + "field_latitude_longitude_value": ["-38.05439882,145.4179092"], + "field_latitude_value": ["-38.05439882"], + "field_longitude": ["145.4179092"], + "field_longitude_value": ["145.4179092"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["elc-5595"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["66 Starling Rd"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28676], + "status": [true], + "title": ["Heritage College Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["3010fc53-9f72-454a-9fda-1121f230794d"] + }, + "sort": ["Heritage College Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28131:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heritage-college-knox"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish an old kitchen and dining area to create facilities that deliver food and textile technology. The upgrade also include refurbishing the adjacent amenities block." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $500,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Heritage College Knox." + ], + "field_latitude": ["-37.88714006163078"], + "field_latitude_longitude_value": [ + "-37.88714006163078,145.28680252610323" + ], + "field_latitude_value": ["-37.88714006163078"], + "field_longitude": ["145.28680252610323"], + "field_longitude_value": ["145.28680252610323"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["01-2071"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["977 Burwood Hwy"], + "field_suburb": ["Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28131], + "status": [true], + "title": ["Heritage College Knox"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["817bd71d-954b-418d-a73b-5bb6c902b69b"] + }, + "sort": ["Heritage College Knox"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21365:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/heritage-college-narre-warren-south-early-learning-centre" + ], + "changed": ["2023-10-13T10:39:41+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are expanding and upgrading the centre. Extending the building and rearranging spaces will create more room for the centre to grow its 3-year-old kinder, Pre-Prep (4-year-old kinder), and long day care programs.", + "In partnership with Seventh-day Adventist Schools, we upgraded the centre. The upgrade\u00a0included: renovating a\u00a0building to create a new early learning centre 2 kindergarten rooms to increase kindergarten\u00a0capacity for 3 and 4-year-olds a reception area, office, amenities and\u00a0store room. We also completed\u00a0landscaping works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $500,000.00 was allocated to the project.", + "In 2019\u201320, this project was alloated $500,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Heritage College Narre Warren South Early Learning Centre." + ], + "field_latitude": ["-38.04987"], + "field_latitude_longitude_value": ["-38.04987,145.31693"], + "field_latitude_value": ["-38.04987"], + "field_longitude": ["145.31693"], + "field_longitude_value": ["145.31693"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["d1-15-HCNWS", "15-HCNWS"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024", "Q1 2021"], + "field_start_date": ["Q4 2022", "Q1 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["333 Centre Rd"], + "field_suburb": ["Narre Warren South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21365], + "status": [true], + "title": [ + "Heritage College Narre Warren South Early Learning Centre" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["edda5d14-4755-4e71-9cca-8715402540cc"] + }, + "sort": ["Heritage College Narre Warren South Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28682:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heritage-preschool-association-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded the play area. We created a more open and natural space with play equipment and outdoor teaching spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $104,900.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Heritage Preschool Association Inc." + ], + "field_latitude": ["-37.95432153"], + "field_latitude_longitude_value": ["-37.95432153,145.1962046"], + "field_latitude_value": ["-37.95432153"], + "field_longitude": ["145.1962046"], + "field_longitude_value": ["145.1962046"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["elc-hpai"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["2B Bakers Rd"], + "field_suburb": ["Noble Park North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28682], + "status": [true], + "title": ["Heritage Preschool Association Inc"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["9035620f-c297-4c6e-bb21-f6db38c12c55"] + }, + "sort": ["Heritage Preschool Association Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20317:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/herne-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the oval with synthetic turf for use for multiple sports." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $462,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Herne Hill Primary School." + ], + "field_latitude": ["-38.1294414"], + "field_latitude_longitude_value": ["-38.1294414,144.3328146"], + "field_latitude_value": ["-38.1294414"], + "field_longitude": ["144.3328146"], + "field_longitude_value": ["144.3328146"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3218"], + "field_project_code": ["01-4681"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2\u201324 Gwynne St"], + "field_suburb": ["Hamlyn Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20317], + "status": [true], + "title": ["Herne Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["65acee9a-938d-430d-aa6b-e2b3cef4be58"] + }, + "sort": ["Herne Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19945:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heyfield-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.025 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Heyfield Primary School." + ], + "field_latitude": ["-37.982114"], + "field_latitude_longitude_value": ["-37.982114,146.784936"], + "field_latitude_value": ["-37.982114"], + "field_longitude": ["146.784936"], + "field_longitude_value": ["146.784936"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3858"], + "field_project_code": ["01-1108"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["22 Temple St"], + "field_suburb": ["Heyfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19945], + "status": [true], + "title": ["Heyfield Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9adcc103-3f25-45e2-8605-b452404efd6a"] + }, + "sort": ["Heyfield Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20803:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/heywood-district-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created an inclusive outdoor learning space that incorporates a classroom, sensory garden, aquaponics enterprise and area for cultural learning. \u00a0 \u200b", + "We\u00a0upgraded and modernised facilities at the school, including refurbishing\u00a0classrooms and facilities\u00a0in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund.", + "In the 2018\u201319 State Budget $600,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Heywood District Secondary College." + ], + "field_latitude": ["-38.129349", "-38.129200"], + "field_latitude_longitude_value": ["-38.129349,141.620865"], + "field_latitude_value": ["-38.129349"], + "field_longitude": ["141.620865", "141.619415"], + "field_longitude_value": ["141.620865"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3304"], + "field_project_code": ["01-7910", "D1-01-7910"], + "field_project_title": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2018", "Q4 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Gorrie St"], + "field_suburb": ["Heywood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20803], + "status": [true], + "title": ["Heywood District Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d53d8e72-e5de-431c-85d5-451e1ace20b2"] + }, + "sort": ["Heywood District Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21436:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/high-country-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0High Country Early Learning Centre build\u00a0an accessible cark park and an inclusive outdoor play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $141,665 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at High Country Early Learning Centre" + ], + "field_latitude": ["-37.10104"], + "field_latitude_longitude_value": ["-37.10104,147.59397"], + "field_latitude_value": ["-37.10104"], + "field_longitude": ["147.59397"], + "field_longitude_value": ["147.59397"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3898"], + "field_project_code": ["ELC-HCELC"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["167 Day Avenue"], + "field_suburb": ["Omeo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21436], + "status": [true], + "title": ["High Country Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f7e3ff3e-8c19-40e3-8a5d-bd439bf599ae"] + }, + "sort": ["High Country Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24583:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/highett-kindergarten-facility-planning-project"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Kingston City Council assess 3 locations in Highett to build a 66-place kindergarten in Highett. This will help local 3 and 4-year-olds get 2 years of high-quality kindergarten. This planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $96,669 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Highett Kindergarten Facility Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-HKFPP"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24583], + "status": [true], + "title": ["Highett Kindergarten Facility Planning Project"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6a5eeab7-baf9-4071-8ecb-5ee0f827ef9e"] + }, + "sort": ["Highett Kindergarten Facility Planning Project"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21408:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/highton-children-and-family-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bThe City of Greater Geelong\u00a0delivered the new Highton\u00a0Children and Family\u00a0Centre. This new facility extended and replaced existing early childhood facilities in Highton in response to population growth. The\u00a0centre\u00a0includes: a double-room kindergarten 2 maternal child health consulting rooms a multi-purpose room for community and group-based programs outdoor play space and administration facilities.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $1.6 million was allocated to the project.\u00a0" + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Highton Children and Family Centre." + ], + "field_latitude": ["-38.17983"], + "field_latitude_longitude_value": ["-38.17983,144.32139"], + "field_latitude_value": ["-38.17983"], + "field_longitude": ["144.32139"], + "field_longitude_value": ["144.32139"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["ELC-21"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["74 Bellevue Av"], + "field_suburb": ["Highton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21408], + "status": [true], + "title": ["Highton Children and Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6c73ac96-0e96-4114-84a2-1d2b6a1d1aa0"] + }, + "sort": ["Highton Children and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20156:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/highton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0and modernised the school's\u00a0facilities, including refurbishing classrooms, the learning hub and staff and administration areas.", + "\u200b\u200bWe delivered\u00a0a new architect-designed modular building to the school to replace Block A with general purpose classrooms, an art room and student toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $1.6 million was allocated to the school.", + "In the 2017\u201318 State Budget, $2,500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Highton Primary School." + ], + "field_latitude": ["-38.17147"], + "field_latitude_longitude_value": ["-38.17147,144.31646"], + "field_latitude_value": ["-38.17147"], + "field_longitude": ["144.31646"], + "field_longitude_value": ["144.31646"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["D1-01-304", "01-304"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q3 2020", "Q2 2018"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["218 Roslyn Rd"], + "field_suburb": ["Highton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20156], + "status": [true], + "title": ["Highton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4af3e8d1-ca60-431e-8c17-c0f0f2edd915"] + }, + "sort": ["Highton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20430:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/highvale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe updated and refurbished classrooms and facilities in poor condition to improve standards across the school. The works targeted facilities most in need, ensuring the school has the learning facilities it requires to deliver a\u00a0modern education.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $603,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Highvale Primary School" + ], + "field_latitude": ["-37.86593"], + "field_latitude_longitude_value": ["-37.86593,145.17223"], + "field_latitude_value": ["-37.86593"], + "field_longitude": ["145.17223"], + "field_longitude_value": ["145.17223"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-4986"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["33 Ashton St"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20430], + "status": [true], + "title": ["Highvale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["967eeeaa-8f5f-4008-b27c-62f25ffa7881"] + }, + "sort": ["Highvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20804:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/highvale-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bWe delivered a major two-stage rebuild of Highvale Secondary College.\u00a0Stage 2 included\u00a0upgrades and refurbishments to the science block, food technology and arts block, cafeteria, gym bathrooms and staff area.\u00a0The courtyards were\u00a0also landscaped.\u200b", + "Stage One included numerous new facilities, such as an administration area at the school entrance, a senior school learning building, hardcourts and locker bays. Various parts of the school were also refurbished, including the junior and middle schools learning areas, and a carpark. \u200b", + "We are providing a replacement roof sheeting to the school's Block A and cafeteria. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $5 million was allocated to the school. In the 2015\u201316 State Budget, $5.35 million was allocated to the school.", + "In the 2016\u201317 State Budget, $5 million was allocated to the school. In the 2015\u201316 State Budget, $5.35 million was allocated to the school.", + "In the 2022\u201323 State Budget the project received $486,409 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Highvale Secondary College" + ], + "field_latitude": ["-37.86348", "-37.86348", "-37.865409"], + "field_latitude_longitude_value": ["-37.86348,145.17724"], + "field_latitude_value": ["-37.86348"], + "field_longitude": ["145.17724", "145.17724", "145.17682"], + "field_longitude_value": ["145.17724"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-7918", "D1-01-7918", "D2-01-7918"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2019", "Q2 2019", "Q4 2023"], + "field_start_date": ["Q1 2018", "Q2 2022"], + "field_status_name": ["Complete", "Complete", "Construction"], + "field_street_address": ["Capital Av"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20804], + "status": [true], + "title": ["Highvale Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9fbd323f-07ad-4c8d-accf-3a7d3d5720bf"] + }, + "sort": ["Highvale Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21153:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hillcrest-christian-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported upgrades at the college. Works included new STEM and performing arts facilities for the secondary precinct of the Rivercrest Christian College campus.", + "We supported the\u00a0school to\u00a0build\u00a0a Discovery Centre and administration facilities at the\u00a0Rivercrest Campus.\u00a0 This project provided a resource centre, creative arts and music rooms, associated office and storage space, main reception area, administration, meeting, support and staff rooms, and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,717,329 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Hillcrest Christian College." + ], + "field_latitude": ["-38.0841539", "-38.08415"], + "field_latitude_longitude_value": ["-38.0841539,145.362731"], + "field_latitude_value": ["-38.0841539"], + "field_longitude": ["145.362731", "145.36273"], + "field_longitude_value": ["145.362731"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["D1-03-1848", "03-1848"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q4 2022", "Q3 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["500 Soldiers Rd"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21153], + "status": [true], + "title": ["Hillcrest Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9bc66889-1029-4df7-bcae-8c5d8203cf55"] + }, + "sort": ["Hillcrest Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20109:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hoddles-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded and modernised facilities at the school, including\u00a0refurbishing\u00a0classrooms and facilities that were in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $90,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hoddles Creek Primary School." + ], + "field_latitude": ["-37.830334"], + "field_latitude_longitude_value": ["-37.830334,145.598488"], + "field_latitude_value": ["-37.830334"], + "field_longitude": ["145.598488"], + "field_longitude_value": ["145.598488"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3139"], + "field_project_code": ["01-2541"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["700 Gembrook-Launching Place Rd"], + "field_suburb": ["Hoddles Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20109], + "status": [true], + "title": ["Hoddles Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["88a3bb4a-ac94-424f-9c61-c5a854e05348"] + }, + "sort": ["Hoddles Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21437:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-child-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a modular building for a co-located kindergarten at Holy Child Primary School. This offers kindergarten for three- and four-year-olds, long day care and flexible spaces for allied health and family services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 20\u201321 Building Blocks Capacity Grants, $1,350,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Child Kindergarten" + ], + "field_latitude": ["-37.666215"], + "field_latitude_longitude_value": ["-37.666215,144.932643"], + "field_latitude_value": ["-37.666215"], + "field_longitude": ["144.932643"], + "field_longitude_value": ["144.932643"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["ELC-HCK"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Modular Kinder Building" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["227 Blair Street"], + "field_suburb": ["Dallas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21437], + "status": [true], + "title": ["Holy Child Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3b4fa5be-8d34-44dc-b328-4827aaa727c6"] + }, + "sort": ["Holy Child Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21036:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-child-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bWe supported the school to refurbish 6 general learning spaces, associated spaces,\u00a0and an administration area.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $700,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Child School." + ], + "field_latitude": ["-37.66594"], + "field_latitude_longitude_value": ["-37.66594,144.93209"], + "field_latitude_value": ["-37.66594"], + "field_longitude": ["144.93209"], + "field_longitude_value": ["144.93209"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["02-1653"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["227 Blair St"], + "field_suburb": ["Dallas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21036], + "status": [true], + "title": ["Holy Child School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6c347fce-1034-4cde-b9cd-9ac6cc1171d1"] + }, + "sort": ["Holy Child School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21135:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Holy-Cross-Catholic-Mickleham"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the first stage of construction of a new Catholic primary school in Mickleham." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $4 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Cross Catholic Primary School, Mickleham" + ], + "field_latitude": ["-37.5274615500716"], + "field_latitude_longitude_value": [ + "-37.5274615500716,144.900176249978" + ], + "field_latitude_value": ["-37.5274615500716"], + "field_longitude": ["144.900176249978"], + "field_longitude_value": ["144.900176249978"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["02-MKL"], + "field_project_title": [ + "Non-Government Schools Capital Fund - New School" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Blackmore Road"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21135], + "status": [true], + "title": ["Holy Cross Catholic Primary School, Mickleham"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["608b8e05-29d8-4141-adcd-105fb488f59a"] + }, + "sort": ["Holy Cross Catholic Primary School, Mickleham"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21046:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-eucharist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school construct a teaching and learning building that will include 8 learning areas and student toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Eucharist School." + ], + "field_latitude": ["-37.7566972"], + "field_latitude_longitude_value": ["-37.7566972,144.8117142"], + "field_latitude_value": ["-37.7566972"], + "field_longitude": ["144.8117142"], + "field_longitude_value": ["144.8117142"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["02-1715"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["1A Oleander Dr"], + "field_suburb": ["St Albans South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21046], + "status": [true], + "title": ["Holy Eucharist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["50b4b73e-c765-442b-8ea5-8278ceb62726"] + }, + "sort": ["Holy Eucharist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21011:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-family-school-bell-park"], + "changed": ["2023-11-24T15:00:59+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish and extend its hall. It now provides toilets, a canteen, storage and other associated spaces. The works also created a covered outdoor performance space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Family School (Bell Park)." + ], + "field_latitude": ["-38.1104571"], + "field_latitude_longitude_value": ["-38.1104571,144.3390885"], + "field_latitude_value": ["-38.1104571"], + "field_longitude": ["144.3390885"], + "field_longitude_value": ["144.3390885"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["02-1537"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["143-147 Separation St"], + "field_suburb": ["Bell Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21011], + "status": [true], + "title": ["Holy Family School (Bell Park)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["231faeca-0740-418f-83b9-fe0302e0a97c"] + }, + "sort": ["Holy Family School (Bell Park)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20989:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-rosary-school-white-hills"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade specialist learning areas to help students with special needs, as well as to upgrade the administration area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Rosary School (White Hills)." + ], + "field_latitude": ["-36.724747"], + "field_latitude_longitude_value": ["-36.724747,144.3103802"], + "field_latitude_value": ["-36.724747"], + "field_longitude": ["144.3103802"], + "field_longitude_value": ["144.3103802"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["02-1067"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["556 Napier St"], + "field_suburb": ["White Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20989], + "status": [true], + "title": ["Holy Rosary School (White Hills)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5e22d669-584b-44da-bfa7-16d148b68e51"] + }, + "sort": ["Holy Rosary School (White Hills)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21191:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-trinity-anglican-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We redesigned the outdoor environment and landscaping to make it more inclusive for children of all abilities and to better reflect the natural surroundings.", + "The kindergarten has refurbished and expanded its\u00a0teaching area to raise the quality of the learning environment. The upgrade\u00a0also added\u00a0a multipurpose sensory and meeting room. Bathroom facilities were\u00a0refurbished, and now\u00a0include a disabled toilet and non-slip flooring. The project has improved accessibility and enhanced the social and emotional wellbeing and development of children with additional needs.\u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $166,727 was allocated to this project.", + "As part of the 2017\u201318 Children's Facilities Capital Program, $156,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Trinity Anglican Kindergarten." + ], + "field_latitude": ["-37.938820"], + "field_latitude_longitude_value": ["-37.938820,145.003647"], + "field_latitude_value": ["-37.938820"], + "field_longitude": ["145.003647"], + "field_longitude_value": ["145.003647"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3188"], + "field_project_code": ["D1-15-1127", "15-1127"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q2 2023", "Q3 2019"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["8 Thomas St"], + "field_suburb": ["Hampton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21191], + "status": [true], + "title": ["Holy Trinity Anglican Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["af949735-1c07-4854-8c7d-2613896dad68"] + }, + "sort": ["Holy Trinity Anglican Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21101:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-trinity-catholic-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school build a general learning building with associated spaces and student and staff toilets.", + "We supported the school to construct Stage 2 of their new school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $5 million", + "As part of the 2019\u201320 capital funding program for non-government schools, $4,950,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Trinity Catholic Primary School." + ], + "field_latitude": ["-37.584791", "-37.584384673088557"], + "field_latitude_longitude_value": ["-37.584791,144.705316"], + "field_latitude_value": ["-37.584791"], + "field_longitude": ["144.705316", "144.70529353299312"], + "field_longitude_value": ["144.705316"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["D1-02-2225", "02-2225"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["TBC", "Q4 2021"], + "field_start_date": ["Q2 2023", "Q4 2019"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["145 Mitchells Lane"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21101], + "status": [true], + "title": ["Holy Trinity Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["19b66701-4b23-42e7-ad4f-15a7248f4fbb"] + }, + "sort": ["Holy Trinity Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21484:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-trinity-catholic-primary-school-sunbury"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to build Holy Trinity Catholic Primary School in Sunbury." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$2,500,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Trinity Catholic Primary School, Sunbury" + ], + "field_latitude": ["-37.585200"], + "field_latitude_longitude_value": ["-37.585200,144.705440"], + "field_latitude_value": ["-37.585200"], + "field_longitude": ["144.705440"], + "field_longitude_value": ["144.705440"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["02-2225"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["145 Mitchells Lane"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21484], + "status": [true], + "title": ["Holy Trinity Catholic Primary School, Sunbury"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["70bdca0d-6e46-455f-a0a3-99ebd83515a3"] + }, + "sort": ["Holy Trinity Catholic Primary School, Sunbury"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21148:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-trinity-lutheran-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0to build a 2D & 3D arts facility, 4 general learning areas, collaborative learning and seminar spaces and\u00a0staff administration areas. Landscaping and site development works were also completed as part of the project.\u00a0 \u200b", + "We\u00a0supported the school to build Stage 2 of their senior school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,320,000 has been allocated to the school.\u00a0", + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Trinity Lutheran College." + ], + "field_latitude": ["-36.70852", "-36.7085"], + "field_latitude_longitude_value": ["-36.70852,142.21573"], + "field_latitude_value": ["-36.70852"], + "field_longitude": ["142.21573", "142.21577"], + "field_longitude_value": ["142.21573"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["03-1767", "D1-03-1767"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q4 2017", "Q2 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Trinity Dr"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21148], + "status": [true], + "title": ["Holy Trinity Lutheran College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bb08eddd-9d9a-4b64-baa5-577c13e3631c"] + }, + "sort": ["Holy Trinity Lutheran College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21065:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/holy-trinity-primary-school"], + "changed": ["2023-11-24T15:12:08+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish its administration area. We also updated 6 general learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Holy Trinity Primary School." + ], + "field_latitude": ["-37.693340301513672"], + "field_latitude_longitude_value": [ + "-37.693340301513672,145.13882446289062" + ], + "field_latitude_value": ["-37.693340301513672"], + "field_longitude": ["145.13882446289062"], + "field_longitude_value": ["145.13882446289062"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["02-1910"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["94 Weidlich Rd"], + "field_suburb": ["Eltham North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21065], + "status": [true], + "title": ["Holy Trinity Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["135e9eac-376f-463b-9e48-dabd4fc8c041"] + }, + "sort": ["Holy Trinity Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25456:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/home-road-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded the playground to make it more inclusive for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $180,424 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Home Road Kindergarten" + ], + "field_latitude": ["-37.84109484"], + "field_latitude_longitude_value": ["-37.84109484,144.8880307"], + "field_latitude_value": ["-37.84109484"], + "field_longitude": ["144.8880307"], + "field_longitude_value": ["144.8880307"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3015"], + "field_project_code": ["15- 1411"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["44 Home Rd"], + "field_suburb": ["Newport"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25456], + "status": [true], + "title": ["Home Road Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["44650a63-2d8a-4a5e-92e9-a304b3576f16"] + }, + "sort": ["Home Road Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20845:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/homestead-senior-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a new senior secondary school in the Wyndham area. Homestead Senior Secondary College offered enrolments for Year 10 in 2020, Year 10 and 11 in 2021\u00a0and Years 10 to 12 in 2022. This school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards. School name Homestead Senior Secondary College was originally known by the interim name of Point Cook South Senior Secondary School while it was being planned and built. As the new secondary school is located on the Point Cook Homestead Road, close to the Point Cook Homestead complex (approx. 2.5km), the new name reflects this historical, aesthetic and scientific significance to the state of Victoria. The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable.", + "We helped the school to upgrade science labs and install student gas jets to better service the science and physics curriculums." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017-18 State Budget allocated funding to this school. In the 2018-19 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for Homestead Senior Secondary College. The school also received an additional $53 million in the 2018-19 State Budget.", + "In the 2020 Minor Capital Works Fund the school was allocated $62,124" + ], + "field_funding_type_name": ["New School", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Homestead Senior Secondary College" + ], + "field_latitude": ["-37.915631", "-37.9130615"], + "field_latitude_longitude_value": ["-37.915631,144.768211"], + "field_latitude_value": ["-37.915631"], + "field_longitude": ["144.768211", "144.7668696"], + "field_longitude_value": ["144.768211"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-8246", "D1-01-8246"], + "field_project_title": ["New School", "Minor Capital Works Fund"], + "field_q_complete": ["Q1 2020", "Q3 2021"], + "field_start_date": ["Q2 2017", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["9 Coaching Parade"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20845], + "status": [true], + "title": ["Homestead Senior Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3ccd976b-8b8c-4205-9715-d6544845abaf"] + }, + "sort": ["Homestead Senior Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20971:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hopetoun-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most. The upgrade will include a new space for primary school students to learn about science, technology and food preparation. Secondary school students will also enjoy a new fine arts and multimedia space with facilities for visual arts, textiles, media, visual communication and integrated art.", + "We refurbished main building doorways, internals and roofing as part of planned maintenance.\u200b", + "\u200bWe updated classrooms and facilities in poor condition.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.059 million in planning funding. In the 2020\u201321 State Budget, the school received $9.534 million.", + "In the 2016\u201317 State Budget $246,000 was allocated for planned maintenance funding.", + "In the 2015\u201316 State Budget a further $30,000 was allocated to the school from the school improvement fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Planned Maintenance Program", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hopetoun P-12 College." + ], + "field_latitude": ["-35.727642059326172", "-35.7348", "-35.7348"], + "field_latitude_longitude_value": [ + "-35.727642059326172,142.36329650878906" + ], + "field_latitude_value": ["-35.727642059326172"], + "field_longitude": ["142.36329650878906", "142.36667", "142.36667"], + "field_longitude_value": ["142.36329650878906"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3396"], + "field_project_code": ["D2-01-8904", "D1-01-8904", "01-8904"], + "field_project_title": [ + "Upgrade and Modernisation", + "Planned Maintenance Program", + "School Improvement Fund" + ], + "field_q_complete": ["Q1 2024", "Q1 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["1 Dodgshun St"], + "field_suburb": ["Hopetoun"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20971], + "status": [true], + "title": ["Hopetoun P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["12c7e7ac-ea2c-4dd5-a1fb-56a7336ea64a"] + }, + "sort": ["Hopetoun P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20889:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hoppers-crossing-secondary-college"], + "changed": ["2023-12-12T09:14:40+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $10.057 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hoppers Crossing Secondary College" + ], + "field_latitude": ["-37.868995666503906"], + "field_latitude_longitude_value": [ + "-37.868995666503906,144.70053100585937" + ], + "field_latitude_value": ["-37.868995666503906"], + "field_longitude": ["144.70053100585937"], + "field_longitude_value": ["144.70053100585937"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-8710"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Fraser Street"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20889], + "status": [true], + "title": ["Hoppers Crossing Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fa5f7425-67ad-4ad1-b74a-9bb6cd7757e2"] + }, + "sort": ["Hoppers Crossing Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20928:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/horsham-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We provided a new roof, gutters and drainpipes for the school gymnasium at the Horsham High Campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $447,125" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Horsham College" + ], + "field_latitude": ["-36.7116076"], + "field_latitude_longitude_value": ["-36.7116076,142.1839624"], + "field_latitude_value": ["-36.7116076"], + "field_longitude": ["142.1839624"], + "field_longitude_value": ["142.1839624"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3402"], + "field_project_code": ["01-8818"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["310 Baillie Street"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20928], + "status": [true], + "title": ["Horsham College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d0eee966-61a7-4e03-b249-792e52a7407a"] + }, + "sort": ["Horsham College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23322:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/horsham-community-childcare-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We are upgrading Horsham Community Childcare Centre. We're adding an extra kindergarten room, increasing the number of funded kindergarten places available to local 3 and 4-year-olds. We're also re-landscaping the outdoor play space, to include wheelchair access and a natural, sensory learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Horsham Community Childcare Centre" + ], + "field_latitude": ["-36.71445157"], + "field_latitude_longitude_value": ["-36.71445157,142.2035833"], + "field_latitude_value": ["-36.71445157"], + "field_longitude": ["142.2035833"], + "field_longitude_value": ["142.2035833"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["15-3028"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["10 Pynsent Street"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23322], + "status": [true], + "title": ["Horsham Community Childcare Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0881c7aa-388d-4989-8644-8a95d370c4fb"] + }, + "sort": ["Horsham Community Childcare Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20657:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/horsham-primary-school"], + "changed": ["2023-08-23T13:56:44+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. The new building\u00a0features general purpose classrooms, a\u00a0withdrawal area, an art room, storage, staff toilets and an accessible toilet. \u200b\u200b\u200bOur modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "We upgraded the administration building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $2.128 million through the Permanent Modular School Buildings Program.", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Horsham Primary School" + ], + "field_latitude": ["-36.711381", "-36.6971063"], + "field_latitude_longitude_value": ["-36.711381,142.215888"], + "field_latitude_value": ["-36.711381"], + "field_longitude": ["142.215888", "142.2047936"], + "field_longitude_value": ["142.215888"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["01-5548", "D1-01-5548"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2021", "Q3 2023"], + "field_start_date": ["Q2 2019", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["38 Baillie St"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20657], + "status": [true], + "title": ["Horsham Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a271dae8-6c03-4987-ad37-05551f2ae4bc"] + }, + "sort": ["Horsham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20553:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/horsham-special-school"], + "changed": ["2023-12-05T10:48:05+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school.This school benefited from Victoria's largest-ever single investment in upgrading specialist schools, with 39 specialist schools sharing $388.8 million." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $8.428 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Horsham Special School." + ], + "field_latitude": ["-36.711311340332031"], + "field_latitude_longitude_value": [ + "-36.711311340332031,142.19981384277344" + ], + "field_latitude_value": ["-36.711311340332031"], + "field_longitude": ["142.19981384277344"], + "field_longitude_value": ["142.19981384277344"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["01-5273"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["17 High St North"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20553], + "status": [true], + "title": ["Horsham Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f57018a7-2852-42e3-8086-39b09c29133c"] + }, + "sort": ["Horsham Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28769:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/horsham-uniting-early-learning"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T14:11:14+11:00"], + "field_about_project_processed": [ + "We are extending the kindergarten to create extra places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream, $487,771 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Horsham Uniting Early Learning." + ], + "field_latitude": ["-36.7144359"], + "field_latitude_longitude_value": ["-36.7144359,142.2035318"], + "field_latitude_value": ["-36.7144359"], + "field_longitude": ["142.2035318"], + "field_longitude_value": ["142.2035318"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["elc-huel"], + "field_project_title": ["Building Blocks Capacity Grant- Expansion"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["9 Roberts Av"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28769], + "status": [true], + "title": ["Horsham Uniting Early Learning"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["3ac13449-6ec2-4ef3-8e02-ead2cea1c30f"] + }, + "sort": ["Horsham Uniting Early Learning"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20268:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hughesdale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new double-storey classroom block\u200b. This was part of a modernisation\u00a0project with the school, designed to support contemporary teaching and learning.", + "We refurbished the student bathroom to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $3.5 million was allocated to this school. In the 2016\u201317 State Budget, $12 million has been allocated to schools across the State for planning. This includes funding for Hughesdale Primary School.", + "In Round 2 of the Minor Capital Works Fund, the project received $498,778." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hughesdale Primary School" + ], + "field_latitude": ["-37.90505", "-37.905839"], + "field_latitude_longitude_value": ["-37.90505,145.07729"], + "field_latitude_value": ["-37.90505"], + "field_longitude": ["145.07729", "145.077639"], + "field_longitude_value": ["145.07729"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["01-4176", "D1-01-4176"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q2 2019", "Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Brine St"], + "field_suburb": ["Hughesdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20268], + "status": [true], + "title": ["Hughesdale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0fab0539-db73-4471-b3c4-9a945788859e"] + }, + "sort": ["Hughesdale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21176:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hume-anglican-grammar"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct a Years 5\u20136 centre at the Donnybrook Campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Hume Anglican Grammar" + ], + "field_latitude": ["-37.5547005"], + "field_latitude_longitude_value": ["-37.5547005,144.9030179"], + "field_latitude_value": ["-37.5547005"], + "field_longitude": ["144.9030179"], + "field_longitude_value": ["144.9030179"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["03-2052"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["40 Eucalyptus Pde"], + "field_suburb": ["DONNYBROOK"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21176], + "status": [true], + "title": ["Hume Anglican Grammar"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["df2fdd08-29ad-4e94-b521-0ab4344bd96e"] + }, + "sort": ["Hume Anglican Grammar"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24590:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hume-city-council-kindergarten-expansion-project"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Hume City Council employ someone to oversee kindergarten planning and design. They will develop a series of kindergarten building projects to create more places for local children. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of the Hume City Council Kindergarten Expansion Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-HUCC"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24590], + "status": [true], + "title": ["Hume City Council Kindergarten Expansion Project"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2a9d2f42-b0c9-4bec-a7e4-52084924df08"] + }, + "sort": ["Hume City Council Kindergarten Expansion Project"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20417:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hume-valley-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces.", + "We installed\u00a0two in-ground trampolines, fencing and shade sails." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $8.523 million.", + "In 2018, $63,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Hume Valley School" + ], + "field_latitude": ["-37.672396", "-37.672396"], + "field_latitude_longitude_value": ["-37.672396,144.927013"], + "field_latitude_value": ["-37.672396"], + "field_longitude": ["144.927013", "144.927013"], + "field_longitude_value": ["144.927013"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["D1-01-4950", "01-4950"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q3 2019"], + "field_start_date": ["Q2 2022", "Q4 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["15-41 Koroit Av"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20417], + "status": [true], + "title": ["Hume Valley School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d1bb5bd9-49f1-45b4-a014-5f9faf5d544c"] + }, + "sort": ["Hume Valley School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23140:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hunt-community-child-care-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-09T14:17:09+11:00"], + "field_about_project_processed": [ + "We are building a multi-sensory, natural discovery play space for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Building Blocks Inclusion Grant, $181,232 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Hunt Community Child Care Centre" + ], + "field_latitude": ["-37.89573268"], + "field_latitude_longitude_value": ["-37.89573268,144.9989192"], + "field_latitude_value": ["-37.89573268"], + "field_longitude": ["144.9989192"], + "field_longitude_value": ["144.9989192"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3186"], + "field_project_code": ["15-HUNCO"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Building and Playgrounds" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["103 Cochrane St"], + "field_suburb": ["Brighton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23140], + "status": [true], + "title": ["Hunt Community Child Care Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2d05fc18-ea8f-4b0d-b147-a83ff3c8aa26"] + }, + "sort": ["Hunt Community Child Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20329:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/huntingdale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We've worked with the school to\u00a0develop a master plan for future capital improvements.\u00a0\u00a0", + "We upgraded the school oval, including constructing a new synthetic oval, four running tracks and a long jump pit.\u00a0 \u00a0", + "We replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the State for planning. This includes funding for this school.", + "In the 2018\u201319 State Budget $400,000 was allocated to the school.", + "In the 2019\u201320 State Budget, the school received $5.033 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Planning", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about what we're planning for Huntingdale Primary School" + ], + "field_latitude": ["-37.91297", "-37.912449"], + "field_latitude_longitude_value": ["-37.91297,145.10262"], + "field_latitude_value": ["-37.91297"], + "field_longitude": ["145.10262", "145.100815"], + "field_longitude_value": ["145.10262"], + "field_mappintype_name": [ + "Planning", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3167"], + "field_project_code": ["01-4716", "D1-01-4716", "D2-01-4716"], + "field_project_title": [ + "Planning", + "Upgrade and Modernisation - Oval Upgrade", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": [ + "Subject to future funding", + "Q2 2020", + "Q4 2020" + ], + "field_start_date": ["Q2 2018", "Q3 2018", "Q2 2019"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["Grange St"], + "field_suburb": ["Oakleigh South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20329], + "status": [true], + "title": ["Huntingdale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b9190a04-cc0f-4941-bf71-ee58dd2a37c3"] + }, + "sort": ["Huntingdale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21323:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/huntly-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The City of Greater Bendigo\u00a0upgraded Huntly Kindergarten's\u00a0outdoor play space to include natural and sensory play elements, interesting spaces for children's play and development, and a Drover's Hut.\u00a0 \u200b", + "We helped\u00a0Huntly Kindergarten increase\u00a0capacity to create more places\u00a0for three\u00a0and four-year-olds. Three extra\u00a0rooms have been created for\u00a0maternal,\u00a0child health\u00a0and allied health services, and\u00a0facilities have been upgraded\u00a0to become fully-accessible to all." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $80,000 was allocated to the kindergarten.", + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Early Learning Facility Upgrade", + "Early Learning Facilities Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Huntly Preschool" + ], + "field_latitude": ["-36.66525", "-36.66525"], + "field_latitude_longitude_value": ["-36.66525,144.33465"], + "field_latitude_value": ["-36.66525"], + "field_longitude": ["144.33465", "144.33465"], + "field_longitude_value": ["144.33465"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["15-663", "D1-15-663"], + "field_project_title": [ + "Early Learning Facility Upgrade", + "Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q4 2016", "Q2 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["21 Stephenson St"], + "field_suburb": ["Huntly"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21323], + "status": [true], + "title": ["Huntly Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["954f18a1-3028-48d8-96bb-6a4ee4970a8f"] + }, + "sort": ["Huntly Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20160:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/huntly-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are expanding this school. This will give students broader learning opportunities and create places for an extra 100 local children.", + "We are building a roof over the school's outdoor hard courts.", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $13.180 million", + "In the 2021\u201322 State Budget, the school received $0.251 million.", + "In Round 8 of the Inclusive Schools Fund, the project received $156,550." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Huntly Primary School" + ], + "field_latitude": ["-36.6621492", "-36.662544"], + "field_latitude_longitude_value": ["-36.6621492,144.3350035"], + "field_latitude_value": ["-36.6621492"], + "field_longitude": ["144.3350035", "144.334396"], + "field_longitude_value": ["144.3350035"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["D1-01-306", "01-306", "d1-306"], + "field_project_title": [ + "Upgrade and Modernisation - Building Space for More Students", + "Upgrade and Modernisation - Outdoor Hard Courts Roof", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q4 2026", "Q3 2023", "Q2 2024"], + "field_start_date": ["Q2 2023", "Q2 2021", "Q4 2022"], + "field_status_name": ["Design", "Complete", "Design"], + "field_street_address": ["101 Brunel St"], + "field_suburb": ["Huntly"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20160], + "status": [true], + "title": ["Huntly Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ae627132-5aa1-401b-bf4d-eaeb9ba521d3"] + }, + "sort": ["Huntly Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21221:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hurlingham-park-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0helped kindergarten expand\u00a0to offer\u00a0more kinder\u00a0places for local children. The kindergarten has a new meeting room, new play space and an indoor/outdoor child-friendly kitchen to support and expand their\u00a0kitchen-garden curriculum." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $500,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Hurlingham Park Preschool" + ], + "field_latitude": ["-37.912165"], + "field_latitude_longitude_value": ["-37.912165,145.014898"], + "field_latitude_value": ["-37.912165"], + "field_longitude": ["145.014898"], + "field_longitude_value": ["145.014898"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3187"], + "field_project_code": ["15-177"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Palmer Av"], + "field_suburb": ["Brighton East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21221], + "status": [true], + "title": ["Hurlingham Park Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["23ca96e2-ca7c-4f69-9fec-e2c4b3ae7a69"] + }, + "sort": ["Hurlingham Park Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20238:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/hurstbridge-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We redeveloped classrooms in the main building to create a new school community hub." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $316,165" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Hurstbridge Primary School" + ], + "field_latitude": ["-37.6357478000496"], + "field_latitude_longitude_value": [ + "-37.6357478000496,145.200640600039" + ], + "field_latitude_value": ["-37.6357478000496"], + "field_longitude": ["145.200640600039"], + "field_longitude_value": ["145.200640600039"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3099"], + "field_project_code": ["01-3939"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Main Road"], + "field_suburb": ["Hurstbridge"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20238], + "status": [true], + "title": ["Hurstbridge Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["97d1b29e-8e3a-4112-b292-5c4572c72d64"] + }, + "sort": ["Hurstbridge Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21169:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ilim-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported\u00a0Ilim College to upgrade their Dallas Primary two-storey building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ilim College" + ], + "field_latitude": ["-37.66783"], + "field_latitude_longitude_value": ["-37.66783,144.92877"], + "field_latitude_value": ["-37.66783"], + "field_longitude": ["144.92877"], + "field_longitude_value": ["144.92877"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["03-1947"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["30 Inverloch Crescent"], + "field_suburb": ["BROADMEADOWS"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21169], + "status": [true], + "title": ["Ilim College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3fb084b1-7111-494c-aaf7-feaa93662750"] + }, + "sort": ["Ilim College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19938:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/inglewood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded\u00a0Inglewood Primary School so staff and students get the best space possible for\u00a0teaching and learning. Improvements included upgrading the roof, and\u00a0some\u00a0internal refurbishment.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $150,000." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Inglewood Primary School" + ], + "field_latitude": ["-36.573948"], + "field_latitude_longitude_value": ["-36.573948,143.870096"], + "field_latitude_value": ["-36.573948"], + "field_longitude": ["143.870096"], + "field_longitude_value": ["143.870096"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3517"], + "field_project_code": ["01-1052"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["77 Sullivan Street"], + "field_suburb": ["Inglewood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19938], + "status": [true], + "title": ["Inglewood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["16fd1994-6b21-4049-b5d9-470058ab36a9"] + }, + "sort": ["Inglewood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20394:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/invergordon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200bWe have upgraded facilities at the school including\u00a0asphalt courts, and\u00a0classroom facilities.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $56,000 was allocated to the school," + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Invergordon Primary School" + ], + "field_latitude": ["-36.14547"], + "field_latitude_longitude_value": ["-36.14547,145.61091"], + "field_latitude_value": ["-36.14547"], + "field_longitude": ["145.61091"], + "field_longitude_value": ["145.61091"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3636"], + "field_project_code": ["01-4896"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["1292 Invergordon Road"], + "field_suburb": ["Invergordon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20394], + "status": [true], + "title": ["Invergordon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3cad2a08-09ea-4961-9846-11e0d45ec7bf"] + }, + "sort": ["Invergordon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27788:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/inverleigh-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $190,808." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Inverleigh Primary School" + ], + "field_latitude": ["-38.10094228"], + "field_latitude_longitude_value": ["-38.10094228,144.0546877"], + "field_latitude_value": ["-38.10094228"], + "field_longitude": ["144.0546877"], + "field_longitude_value": ["144.0546877"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3321"], + "field_project_code": ["01-1147"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["54 High St"], + "field_suburb": ["Inverleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27788], + "status": [true], + "title": ["Inverleigh Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["aaef2607-2ff9-457a-876f-c71c7a395dc6"] + }, + "sort": ["Inverleigh Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25395:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/inverloch-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor learning environment to make the play spaces more accessible for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Early Childhood Refurbishment and Minor Infrastructure Grant, $297,750 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Inverloch Kindergarten" + ], + "field_latitude": ["-38.6305754030182"], + "field_latitude_longitude_value": [ + "-38.6305754030182,145.727244980547" + ], + "field_latitude_value": ["-38.6305754030182"], + "field_longitude": ["145.727244980547"], + "field_longitude_value": ["145.727244980547"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3996"], + "field_project_code": ["15-1432"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Edgar St"], + "field_suburb": ["Inverloch"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25395], + "status": [true], + "title": ["Inverloch Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["f714c152-dc13-47b5-8ac9-a286d66c7c92"] + }, + "sort": ["Inverloch Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21483:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/iona-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported\u00a0the\u00a0college to build a new school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $5,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Iona College." + ], + "field_latitude": ["-38.216329269011524"], + "field_latitude_longitude_value": [ + "-38.216329269011524,144.35734619965004" + ], + "field_latitude_value": ["-38.216329269011524"], + "field_longitude": ["144.35734619965004"], + "field_longitude_value": ["144.35734619965004"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["NG-IC"], + "field_project_title": [ + "Non-Government Schools Capital Fund - New School" + ], + "field_q_complete": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["242 Horseshoe Bend Rd"], + "field_suburb": ["Charlemont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21483], + "status": [true], + "title": ["Iona College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4d74aa3e-42ab-4562-877c-4d67591c4e29"] + }, + "sort": ["Iona College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21261:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/iris-ramsay-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The City of Ballarat upgraded Iris Ramsay Kindergarten by\u00a0removing\u00a0a portable building\u00a0and replacing it with a second kindergarten room and expanded bathroom facilities.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $522,235 was allocated to the kindergarten." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Iris Ramsay Kindergarten" + ], + "field_latitude": ["-37.57544"], + "field_latitude_longitude_value": ["-37.57544,143.83458"], + "field_latitude_value": ["-37.57544"], + "field_longitude": ["143.83458"], + "field_longitude_value": ["143.83458"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["15-40"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["105 Lonsdale St"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21261], + "status": [true], + "title": ["Iris Ramsay Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d57c6108-50ab-47fa-b2cf-bc276816d662"] + }, + "sort": ["Iris Ramsay Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21337:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/irymple-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the kindergarten in preparation for the roll-out of subsidised kindergarten for 3-year-olds. This allows the kindergarten to offer 33 additional places to local families, improve the overall quality of the learning environment and help ensure that the children in this community have access to 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Building Blocks Capacity Grant, $952,500 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Irymple Kindergarten." + ], + "field_latitude": ["-34.234394550205"], + "field_latitude_longitude_value": [ + "-34.234394550205,142.163739549491" + ], + "field_latitude_value": ["-34.234394550205"], + "field_longitude": ["142.163739549491"], + "field_longitude_value": ["142.163739549491"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3498"], + "field_project_code": ["15-864"], + "field_project_title": ["Building Blocks Capacity Grant- Expansion"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Casuarina Cr"], + "field_suburb": ["Irymple"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21337], + "status": [true], + "title": ["Irymple Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c5e75bdb-0a83-479e-a91f-ed65b4457da3"] + }, + "sort": ["Irymple Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20171:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/irymple-primary-school"], + "changed": ["2023-08-23T14:02:08+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a designated car parking space. We also replaced the perimeter fence to make the school grounds more safe and secure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $468,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Irymple Primary School." + ], + "field_latitude": ["-34.2353201"], + "field_latitude_longitude_value": ["-34.2353201,142.1808612"], + "field_latitude_value": ["-34.2353201"], + "field_longitude": ["142.1808612"], + "field_longitude_value": ["142.1808612"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3498"], + "field_project_code": ["01-3174"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2032 Fifteenth St"], + "field_suburb": ["Irymple"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20171], + "status": [true], + "title": ["Irymple Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["847e3f0c-927a-490b-968e-95171f73fad5"] + }, + "sort": ["Irymple Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20742:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/irymple-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the school. The works included a\u00a0substantial\u00a0re-configuring of\u00a0the junior hub, administration spaces and\u00a0tech buildings. We also\u00a0upgraded\u00a0the senior\u00a0centre, creating\u00a0an\u00a0open-plan,\u00a0flexible learning space. Externally, we undertook\u00a0landscaping upgrades as well as adding\u00a0outdoor learning spaces.\u200b\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $7 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Irymple Secondary College." + ], + "field_latitude": ["-34.233181"], + "field_latitude_longitude_value": ["-34.233181,142.163712"], + "field_latitude_value": ["-34.233181"], + "field_longitude": ["142.163712"], + "field_longitude_value": ["142.163712"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Irymple Secondary College \u2013 Upgrade and Modernisation" + ], + "field_postcode": ["3498"], + "field_project_code": ["01-7198"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["975-1011 Karadoc Av"], + "field_suburb": ["Irymple"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20742], + "status": [true], + "title": ["Irymple Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e1a03cf5-11a8-42eb-8427-4fc80f1db35c"] + }, + "sort": ["Irymple Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20218:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/irymple-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a shelter over the basketball court to provide all-weather access for staff and students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $384,165" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Irymple South Primary School" + ], + "field_latitude": ["-34.2526913"], + "field_latitude_longitude_value": ["-34.2526913,142.1909735"], + "field_latitude_value": ["-34.2526913"], + "field_longitude": ["142.1909735"], + "field_longitude_value": ["142.1909735"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3498"], + "field_project_code": ["01-3702"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["3208 Fifteenth Street"], + "field_suburb": ["Irymple"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20218], + "status": [true], + "title": ["Irymple South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eec368be-658c-47ff-bc23-4739fe21403a"] + }, + "sort": ["Irymple South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28651:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ivanhoe-childrens-community-co-operative"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are creating a modern dedicated space within the centre for 3-year-old kindergarten. It will be accessible and cater for children with additional needs. We are also upgrading the centre\u2019s reception to make it more welcoming, and adding staff planning and meeting rooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $500,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ivanhoe Children's Community Co-operative." + ], + "field_latitude": ["-37.76716404"], + "field_latitude_longitude_value": ["-37.76716404,145.0368011"], + "field_latitude_value": ["-37.76716404"], + "field_longitude": ["145.0368011"], + "field_longitude_value": ["145.0368011"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3079"], + "field_project_code": ["15-649"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["58 Livingstone St"], + "field_suburb": ["Ivanhoe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28651], + "status": [true], + "title": ["Ivanhoe Children's Community Co-operative"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["71b5ec44-6eb4-40e8-8b47-c5dc8640035f"] + }, + "sort": ["Ivanhoe Children's Community Co-operative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28683:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ivanhoe-childrens-community-co-operative-carrum"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T13:57:01+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play area. Children have more play spaces and sensory experiences in a natural setting." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $154,040.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Carrum Family and Children's Centre." + ], + "field_latitude": ["-38.07593111"], + "field_latitude_longitude_value": ["-38.07593111,145.1315406"], + "field_latitude_value": ["-38.07593111"], + "field_longitude": ["145.1315406"], + "field_longitude_value": ["145.1315406"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3197"], + "field_project_code": ["elc-iccc"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["24A Graham Rd"], + "field_suburb": ["Carrum"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28683], + "status": [true], + "title": ["Ivanhoe Children's Community Co-operative Carrum"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["95076117-5d04-43b1-83c2-0053ed8aa508"] + }, + "sort": ["Ivanhoe Children's Community Co-operative Carrum"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20100:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ivanhoe-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a senior school learning facility, including external learning areas and landscaping.", + "We replaced 4 relocatable buildings with a new permanent building.\u00a0", + "We built an outdoor sensory learning space where the school community can interact, engage and learn in an outdoor classroom. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school has received $4.5 million in the 2018-19 State Budget.", + "The 2016\u201317 State Budget allocated $2 million to the school.", + "In 2016, $140,100 was allocated to the school as part of Round 2 of the Inclusive Schools Fund" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ivanhoe Primary School" + ], + "field_latitude": ["-37.775560", "-37.7820484"], + "field_latitude_longitude_value": ["-37.775560,145.041510"], + "field_latitude_value": ["-37.775560"], + "field_longitude": ["145.041510", "145.0411676"], + "field_longitude_value": ["145.041510"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3079"], + "field_project_code": ["D1-01-2436", "01-2436", "D2-01-2436"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2021", "Q4 2018", "Q4 2017"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["122 Waterdale Rd"], + "field_suburb": ["Ivanhoe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20100], + "status": [true], + "title": ["Ivanhoe Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a2e86263-7181-44f7-892e-aca633eaa906"] + }, + "sort": ["Ivanhoe Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21367:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/j-j-mcmahon-memorial-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with the kindergarten, we are upgrading their facilities. The upgrade will include: creating\u00a0more\u00a0kindergarten places\u00a0for 3 and 4-year-olds a new inclusive room to be used as a therapy area and meeting space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was alloated $74,580 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at J J McMahon Memorial Kindergarten." + ], + "field_latitude": ["-37.80375"], + "field_latitude_longitude_value": ["-37.80375,145.05137"], + "field_latitude_value": ["-37.80375"], + "field_longitude": ["145.05137"], + "field_longitude_value": ["145.05137"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3101"], + "field_project_code": ["15-JJMMK"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Design"], + "field_street_address": ["16A Argyle Rd"], + "field_suburb": ["Kew"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21367], + "status": [true], + "title": ["J J McMahon Memorial Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1cd361ea-b3d4-445e-ab65-1d7db11be299"] + }, + "sort": ["J J McMahon Memorial Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34249:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/j-s-grey-reserve-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Darebin City Council plan to expand JS Grey Reserve Kindergarten. This will create 22 additional kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding.", + "We planted native species and created a veggie patch." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project.", + "In the 2020-21 Building Blocks Improvement Grant round, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support for JS Grey Reserve Kindergarten" + ], + "field_latitude": ["-37.730195", "-37.730195"], + "field_latitude_longitude_value": ["-37.730195,144.991935"], + "field_latitude_value": ["-37.730195"], + "field_longitude": ["144.991935", "144.991935"], + "field_longitude_value": ["144.991935"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["15-1061", "D1-15-1061"], + "field_project_title": [ + "Building Blocks Planning Grant", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["524 Gilbert Rd"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34249], + "status": [true], + "title": ["J S Grey Reserve Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["1dd738ba-82aa-4522-8bc5-ae25fcf41b4c"] + }, + "sort": ["J S Grey Reserve Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20661:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jacana-school-autism"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are continuing to upgrade and modernise this school.", + "We built an outdoor learning space. It is an inclusive, landscaped environment.", + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building. The new\u00a0building\u00a0features general purpose classrooms, a home economics space, withdrawal and respite spaces, along with staff, student and\u00a0accessible toilet facilities and a laundry.\u00a0\u00a0 Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.", + "We built an indoor inclusive sensory and activity space\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $124,355.", + "In the 2019\u201320 State Budget, the school received $966,420 through the Permanent Modular School Buildings Program.", + "In Round 3 of the Inclusive Schools Fund, $200,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Jacana School for Autism" + ], + "field_latitude": ["-37.6881646", "-37.6881646", "-37.68827"], + "field_latitude_longitude_value": ["-37.6881646,144.9138116"], + "field_latitude_value": ["-37.6881646"], + "field_longitude": ["144.9138116", "144.9138116", "144.91324"], + "field_longitude_value": ["144.9138116"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": [ + "D2-01-5555", + "D3-01-5555", + "D1-01-5555", + "01-5555" + ], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q2 2023", "Q4 2020", "Q1 2019"], + "field_start_date": ["Q4 2020", "Q2 2021", "Q2 2019"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["19-39 Landy Rd"], + "field_suburb": ["Jacana"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20661], + "status": [true], + "title": ["Jacana School for Autism"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["efc415a9-2e4e-4e77-bb09-60dabd54169b"] + }, + "sort": ["Jacana School for Autism"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22608:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jack-and-jill-beaumaris-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a multi-sensory, inclusive play space inspired by Indigenous themes. The space encourages children to calmly engage with nature and each other. It's also an outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $190,756 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Jack and Jill Beaumaris Kindergarten" + ], + "field_latitude": ["-37.97838247"], + "field_latitude_longitude_value": ["-37.97838247,145.0318419"], + "field_latitude_value": ["-37.97838247"], + "field_longitude": ["145.0318419"], + "field_longitude_value": ["145.0318419"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["15-1121"], + "field_project_title": [ + "Building Blocks Improvement Grant \u2013 Play Space" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["26 Grandview Avenue"], + "field_suburb": ["Beaumaris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22608], + "status": [true], + "title": ["Jack and Jill Beaumaris Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e2769ed4-7edb-47f8-a45e-995a6e165623"] + }, + "sort": ["Jack and Jill Beaumaris Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20427:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jackson-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are continuing to upgrade and modernise this school, including constructing additional permanent buildings.\u00a0 We're constructing\u00a0a\u00a0new middle-years learning centre, a therapy and prep hub with flexible learning spaces, and will install a new playground.\u00a0We are also removing existing relocatable\u00a0classrooms.", + "The latest work created a multi-sensory learning area to complete the school's natural play area funded in Round 1. This space promotes exploration, imagination and adventure.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In 2015, the school received $46,000 from Round 1 of the Inclusive Schools Fund. In Round 2, a year later, they were allocated a further $200,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Jackson School" + ], + "field_latitude": ["-37.755868", "-37.75634"], + "field_latitude_longitude_value": ["-37.755868,144.814489"], + "field_latitude_value": ["-37.755868"], + "field_longitude": ["144.814489", "144.81525"], + "field_longitude_value": ["144.814489"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["D1-01-4979", "01-4979"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["40-46 Mulhall Dr"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20427], + "status": [true], + "title": ["Jackson School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2e2b75dc-33ea-4cf5-afeb-14617e661e87"] + }, + "sort": ["Jackson School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33019:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/james-cook-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for James Cook Primary School" + ], + "field_latitude": ["-37.979065"], + "field_latitude_longitude_value": ["-37.979065,145.245853"], + "field_latitude_value": ["-37.979065"], + "field_longitude": ["145.245853"], + "field_longitude_value": ["145.245853"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["01-5136"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["29-59 James Cook Drive"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33019], + "status": [true], + "title": ["James Cook Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a4720ed5-a226-4117-a58e-b3eca32f6887"] + }, + "sort": ["James Cook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20830:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jamieson-primary-school"], + "changed": ["2023-12-20T15:59:59+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe completed an upgrade and modernisation project of classrooms and facilities at the school in 2018. \u200b\u200b", + "We built an all-weather multipurpose space for the school community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $201,000 will be allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $146,665." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Jamieson Primary School." + ], + "field_latitude": ["-37.30084", "-37.2912600363175"], + "field_latitude_longitude_value": ["-37.30084,146.13948"], + "field_latitude_value": ["-37.30084"], + "field_longitude": ["146.13948", "146.158372624624"], + "field_longitude_value": ["146.13948"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3723"], + "field_project_code": ["01-814", "D1-01-814"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2018", "Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1 The Sideling"], + "field_suburb": ["Jamieson"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20830], + "status": [true], + "title": ["Jamieson Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["89aba4c8-aafa-475a-9a41-50f840ec67ef"] + }, + "sort": ["Jamieson Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34789:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jamieson-way-community-centre-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T14:19:06+10:00"], + "field_about_project_processed": [ + "We are helping upgrade Jamieson Way Community Centre \u2013 Kindergarten in partnership with Wyndham City Council. We will demolish the existing kindergarten and replace it with a new 3-room building. This will create 40 extra kindergarten places for the local community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received $2.75 million as part of the Building Blocks Partnership between the State Government and Wyndham City Council. The Victorian Government has provided $47 million to support 17 projects that will create more than 3600 kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Jamieson Way Community Centre \u2013 Kindergarten." + ], + "field_latitude": ["-37.8961327"], + "field_latitude_longitude_value": ["-37.8961327,144.7474861"], + "field_latitude_value": ["-37.8961327"], + "field_longitude": ["144.7474861"], + "field_longitude_value": ["144.7474861"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["15-4510"], + "field_project_title": ["Building Blocks Partnership"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["59 Jamieson Way"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34789], + "status": [true], + "title": ["Jamieson Way Community Centre \u2013 Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["acb43fdf-0947-41ee-b5db-5928a7739a40"] + }, + "sort": ["Jamieson Way Community Centre – Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20507:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jells-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We re-roofed\u00a0the main building, which houses the administration, multi-purpose, art room and library areas.\u00a0 We also upgraded the staff and student toilets including removal of asbestos to roof fascia and eaves. Additional funds were provided for the removal of asbestos to the main building.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $1 million has been allocated to the school. In the 2015-16 State Budget, $300,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Jells Park Primary School" + ], + "field_latitude": ["-37.90237"], + "field_latitude_longitude_value": ["-37.90237,145.19311"], + "field_latitude_value": ["-37.90237"], + "field_longitude": ["145.19311"], + "field_longitude_value": ["145.19311"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-5176"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["17-33 Petronella Avenue"], + "field_suburb": ["Wheelers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20507], + "status": [true], + "title": ["Jells Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f3c4baf1-9d09-4cb8-9dc1-f7778e25ba92"] + }, + "sort": ["Jells Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24992:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jennings-street-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will construct 2 buildings with new classrooms and learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $9.419 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Jennings Street School" + ], + "field_latitude": ["-37.85635"], + "field_latitude_longitude_value": ["-37.85635,144.773634"], + "field_latitude_value": ["-37.85635"], + "field_longitude": ["144.773634"], + "field_longitude_value": ["144.773634"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3028"], + "field_project_code": ["01-5215"], + "field_project_title": ["Upgrade and Modernisation - Stage 1"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["4 Jennings Street"], + "field_suburb": ["Laverton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24992], + "status": [true], + "title": ["Jennings Street School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6696ec29-adcc-44aa-852d-4c7fc934972d"] + }, + "sort": ["Jennings Street School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20057:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/jindivick-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bThe school used this funding to create an outdoor learning space, blending quiet and supportive re-engagement learning areas with others that develop sensory and gross-motor skills.\u200b", + "We helped the school upgrade outdoor areas with a synthetic surface to improve safety and accessibility." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015, the school received $35,000 from Round 1 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $52,120." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Jindivick Primary School." + ], + "field_latitude": ["-38.02792", "-38.0276404"], + "field_latitude_longitude_value": ["-38.02792,145.90124"], + "field_latitude_value": ["-38.02792"], + "field_longitude": ["145.90124", "145.9011952"], + "field_longitude_value": ["145.90124"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["01-1951", "D1-01-1951"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2017", "Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1080 Jacksons Track"], + "field_suburb": ["Jindivick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20057], + "status": [true], + "title": ["Jindivick Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["87d133d1-6944-46c0-ab9d-8bc3a742e693"] + }, + "sort": ["Jindivick Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20963:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/john-fawkner-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will be building a new science and visual arts building and a new food technology building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget the school received $50,000 for planning. In the 2023\u201324 State Budget the school received $14.5 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about what we're planning for John Fawkner Secondary College" + ], + "field_latitude": ["-37.70341"], + "field_latitude_longitude_value": ["-37.70341,144.97871"], + "field_latitude_value": ["-37.70341"], + "field_longitude": ["144.97871"], + "field_longitude_value": ["144.97871"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3060"], + "field_project_code": ["D1-01-8894"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2026"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["Jukes Rd"], + "field_suburb": ["Fawkner"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20963], + "status": [true], + "title": ["John Fawkner Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8de3f4fa-6e8e-47f8-adec-9a93b8e56e53"] + }, + "sort": ["John Fawkner Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20667:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/john-henry-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school serves the rapidly growing residential areas in the suburb of Pakenham.\u00a0The school has been built to accommodate up to 400 students, and was delivered by the Learning Communities Victoria\u00a0consortium.\u200b The school opened for students, Prep to Year 6 in Term 1, 2017. \u200b \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for the Public Private Partnership Project across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of John Henry Primary School" + ], + "field_latitude": ["-38.07685"], + "field_latitude_longitude_value": ["-38.07685,145.4416"], + "field_latitude_value": ["-38.07685"], + "field_longitude": ["145.4416"], + "field_longitude_value": ["145.4416"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["01-5561"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["141 Henry Rd"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20667], + "status": [true], + "title": ["John Henry Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f3dde60f-73f1-407b-893e-8215de92acca"] + }, + "sort": ["John Henry Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23333:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/john-street-community-early-childhood-co-op"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We made improvements across the whole centre. We refurbished the children's toilets and sinks and upgraded the change table area. We added storage, including a space for prams. We improved the acoustics in the children's room and updated the heating and cooling. We renewed the joinery in the laundry, kitchen, staff room and administration area. Outside, we replaced the shed and the boundary fence. We also added a deck to make surfaces more even." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $500,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at John Street Community Early Childhood Co-operative" + ], + "field_latitude": ["-37.79510581"], + "field_latitude_longitude_value": ["-37.79510581,144.977311"], + "field_latitude_value": ["-37.79510581"], + "field_longitude": ["144.977311"], + "field_longitude_value": ["144.977311"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3065"], + "field_project_code": ["15-535"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["23 John St"], + "field_suburb": ["Fitzroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23333], + "status": [true], + "title": ["John Street Community Early Childhood Co-op"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["73386658-07b6-4acf-b3be-68f475539228"] + }, + "sort": ["John Street Community Early Childhood Co-op"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28773:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/joy-avenue-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T15:05:16+11:00"], + "field_about_project_processed": [ + "We are improving the outdoor play space, to make it more inclusive and create more learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $199,400.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Joy Avenue Preschool." + ], + "field_latitude": ["-37.78922341"], + "field_latitude_longitude_value": ["-37.78922341,145.386679"], + "field_latitude_value": ["-37.78922341"], + "field_longitude": ["145.386679"], + "field_longitude_value": ["145.386679"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3796"], + "field_project_code": ["15-791"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Design"], + "field_street_address": ["1 Joy Av"], + "field_suburb": ["Mount Evelyn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28773], + "status": [true], + "title": ["Joy Avenue Preschool"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["f481eba4-96dd-478f-82f0-8dc269de4238"] + }, + "sort": ["Joy Avenue Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21441:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ku-maidstone-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe helped build a new children's centre in Maidstone. The facility also has three allied health rooms providing specialist Allied Health services for children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019-2020 Children's Facilities Capital Program $1,000,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at KU Maidstone Children's Centre" + ], + "field_latitude": ["-37.781078"], + "field_latitude_longitude_value": ["-37.781078,144.871289"], + "field_latitude_value": ["-37.781078"], + "field_longitude": ["144.871289"], + "field_longitude_value": ["144.871289"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3012"], + "field_project_code": ["ELC-KUM"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Hampstead Rd"], + "field_suburb": ["Maidstone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21441], + "status": [true], + "title": ["KU Maidstone Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e2ccdc31-5125-48a0-b831-e8abd2b3a8d8"] + }, + "sort": ["KU Maidstone Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20333:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kalianna-special-school"], + "changed": ["2023-11-16T14:15:10+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWork started on this project in 2015, with initial funding of $1 million provided for planning.\u00a0A further $14.3 million was allocated over the 2016\u201317 and 2017\u201318 State Budgets for construction. Stage 1 and\u00a02 are now complete.Stage 1 included the major refurbishment of Building\u00a0A, and redeveloping\u00a0bus drop-off and school entry areas. As part of the refurbishment,\u00a0we:built a new multi-purpose area and classroom facilitiescreated\u00a0a\u00a0caf\u00e9 space / school hubre-purposed\u00a0the administration area to include\u00a0kitchen and dining facilities, meeting spaces and reading nooks\u00a0relocated and improved staff facilities.As part of the Stage 2 works, we:created a new classroom blockrefurbished existing classroom blocksconstructed a new roof for the quadranglebuilt a multi-purpose building.The classroom blocks each have a combination of flexible learning areas, collaborative meeting spaces with wet areas, and staff resources. Learning areas cater for the school's move towards 'team teaching'\u00a0and have space for two teachers per class. Flexible spaces also\u00a0allow teachers to better cater for individual student needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "A total of $15.6 million has been allocated to this project." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kalianna Special School" + ], + "field_latitude": ["-36.738010"], + "field_latitude_longitude_value": ["-36.738010,144.278122"], + "field_latitude_value": ["-36.738010"], + "field_longitude": ["144.278122"], + "field_longitude_value": ["144.278122"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["01-4728"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Nolan Street"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20333], + "status": [true], + "title": ["Kalianna Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f0da4388-9d04-419c-aded-16e653a5e361"] + }, + "sort": ["Kalianna Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21440:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kalkallo-interim-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe have delivered\u00a0an additional modular\u00a0room for the preschool. This was provided\u00a0in partnership with Hume City Council, who created\u00a0the nature-based outdoor learning environment.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received funding in the 2019\u201320 State Bugdet from the $282.965 million allocated to facilities in support of three-year-old kinder programs." + ], + "field_funding_type_name": ["Kindergarten Modular Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kalkallo Interim Preschool" + ], + "field_latitude": ["-37.5336457"], + "field_latitude_longitude_value": ["-37.5336457,144.958409"], + "field_latitude_value": ["-37.5336457"], + "field_longitude": ["144.958409"], + "field_longitude_value": ["144.958409"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Explore more about kindergartens"], + "field_postcode": ["3064"], + "field_project_code": ["ELC-KIP"], + "field_project_title": ["Kindergarten Modular Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["33 Toyon Rd"], + "field_suburb": ["Kalkallo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21440], + "status": [true], + "title": ["Kalkallo Interim Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c3207fc1-5ae0-47e0-8fb5-37bee1b34717"] + }, + "sort": ["Kalkallo Interim Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24250:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/kalkallo-north-integrated-child-family-and-community-centre" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T17:06:42+11:00"], + "field_about_project_processed": [ + "We built an integrated children's centre. The centre will have 3 kindergarten rooms, a multipurpose activity room and maternal child health services. The kindergarten will provide 99 places for local children. It will help them get 2 years of high-quality funded kindergarten.This centre was previously known as\u00a0Kalkallo North Integrated Child, Family and Community Centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $3,000,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kalkallo North Community Centre" + ], + "field_latitude": ["-37.52064142"], + "field_latitude_longitude_value": ["-37.52064142,144.9570922"], + "field_latitude_value": ["-37.52064142"], + "field_longitude": ["144.9570922"], + "field_longitude_value": ["144.9570922"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["15-KNIC"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["24 Koeks Vista"], + "field_suburb": ["Kalkallo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24250], + "status": [true], + "title": ["Kalkallo North Community Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6abd2900-8e48-4b72-84f3-8ca13df5689f"] + }, + "sort": ["Kalkallo North Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21401:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kalkee-road-integrated-childrens-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bHorsham Rural City Council built the hub, a new integrated children's centre. The hub is\u00a0a central community hub with a range of health, education and support services all available under the one roof. The hub\u00a0provides 3-year-old and 4-year-old kindergarten, after kindergarten care, Maternal and Child Health, supported playgroup, immunisation, toy library and early intervention. \u200b Facilities a large multipurpose space a shared space for community activities consulting/interview rooms, a meeting room and shared working space for Maternal and Child Health Services reception/administration and public amenities with accessible and baby change facilities. Children\u2019s Services are delivered in 4\u00a0rooms for 93 children. The rooms are adjoining and designed to open up for group activities and special events.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015\u201316 Children's Facilities Capital Program $1.6 million was allocated to the children's hub." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kalkee Road Integrated Children's Hub." + ], + "field_latitude": ["-36.70371"], + "field_latitude_longitude_value": ["-36.70371,142.20133"], + "field_latitude_value": ["-36.70371"], + "field_longitude": ["142.20133"], + "field_longitude_value": ["142.20133"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["ELC-16"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["24-28 Kalkee Rd"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21401], + "status": [true], + "title": ["Kalkee Road Integrated Children's Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b10d027e-f146-440f-8fb5-7b4298c6f874"] + }, + "sort": ["Kalkee Road Integrated Children's Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21193:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kallista-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Yarra Ranges Shire Council upgraded Kallista Kindergarten to improve inclusivity and enhance the existing outdoor verandah space. The upgrade included alterations to the verandah roof and building, raising the external verandah floor height and undertaking enclosure improvements to the area.\u00a0 These enhancements have not only improved the quality of the facility and accessibility, but has also provided Kallista Kindergarten with increased quality programming opportunities and improved educational outcomes for children and families.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $250,000 was allocated to the project through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kallista Kindergarten" + ], + "field_latitude": ["-37.8851"], + "field_latitude_longitude_value": ["-37.8851,145.37134"], + "field_latitude_value": ["-37.8851"], + "field_longitude": ["145.37134"], + "field_longitude_value": ["145.37134"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3791"], + "field_project_code": ["15-1161"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["6 Tom Roberts Rd"], + "field_suburb": ["Kallista"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21193], + "status": [true], + "title": ["Kallista Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8ac8ca17-ac67-4070-848a-69d8d3e5998b"] + }, + "sort": ["Kallista Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20249:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kallista-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished a basketball court area with new surfaces and a court cover for safe student use.", + "We remodelled\u00a0a relocatable building\u00a0to become a sensory and activity area\u00a0at Kallista Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $496,125.", + "In 2019, $87,989 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kallista Primary School." + ], + "field_latitude": ["-37.8800561", "-37.88564"], + "field_latitude_longitude_value": ["-37.8800561,145.3783623"], + "field_latitude_value": ["-37.8800561"], + "field_longitude": ["145.3783623", "145.37058"], + "field_longitude_value": ["145.3783623"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3791"], + "field_project_code": ["D1-01-3993", "01-3993"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2023", "Q1 2022"], + "field_start_date": ["Q4 2020", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["72 Monbulk Rd"], + "field_suburb": ["Kallista"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20249], + "status": [true], + "title": ["Kallista Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eede8238-f577-4f1d-bb91-95c8d564ddee"] + }, + "sort": ["Kallista Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20868:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kambrya-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are constructing a new junior learning building at Kambrya College. The new building has:16 flexible classroomsbreak out spacesa connection to outdoor learning areasstaff facilitiesThe design encourages collaboration between staff and students, and there will be a multipurpose area available for community use.", + "We built\u00a0a new\u00a0senior\u00a0learning block\u200b at Kambrya College.\u00a0 The new building has\u00a0nine flexible classrooms, break out spaces, a connection to outdoor learning areas and staff facilities.\u00a0 \u200bThe building has been designed to encourage collaboration between staff and students and also has\u00a0a multipurpose area available for community use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $18.945 million.", + "In the 2016-17 State Budget, $3 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kambrya College" + ], + "field_latitude": ["-38.05368819", "-38.05347"], + "field_latitude_longitude_value": ["-38.05368819,145.34741"], + "field_latitude_value": ["-38.05368819"], + "field_longitude": ["145.34741", "145.34628"], + "field_longitude_value": ["145.34741"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["D1-01-8421", "01-8421"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2025", "Q3 2018"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["68 Bemersyde Drive"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20868], + "status": [true], + "title": ["Kambrya College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b1b09a45-6def-4856-9228-7e906ed324e1"] + }, + "sort": ["Kambrya College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20352:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kananook-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive outdoor learning space. The space has seating, a water feature and sensory equipment.", + "We supported the school with minor upgrades, including facade and window improvements, and painting." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "From the 2019\u201320 School Pride and Sports Fund, the school received $284,529." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kananook Primary School." + ], + "field_latitude": ["-38.125159", "-38.103195190429688"], + "field_latitude_longitude_value": ["-38.125159,145.131738"], + "field_latitude_value": ["-38.125159"], + "field_longitude": ["145.131738", "145.1259765625"], + "field_longitude_value": ["145.131738"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["D1-01-5418", "01-4783"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2023", "Q1 2020"], + "field_start_date": ["Q4 2021", "Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Wells Rd"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20352], + "status": [true], + "title": ["Kananook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5d8d9592-136c-4788-b555-668cc0e49f78"] + }, + "sort": ["Kananook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20982:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kangaroo-flat-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet block to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $455,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kangaroo Flat Primary School." + ], + "field_latitude": ["-36.7883551"], + "field_latitude_longitude_value": ["-36.7883551,144.2342948"], + "field_latitude_value": ["-36.7883551"], + "field_longitude": ["144.2342948"], + "field_longitude_value": ["144.2342948"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3555"], + "field_project_code": ["01-981"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["60\u201380 Olympic Pde"], + "field_suburb": ["Kangaroo Flat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20982], + "status": [true], + "title": ["Kangaroo Flat Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a5956504-02de-48ea-967a-bc127221d0ad"] + }, + "sort": ["Kangaroo Flat Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20076:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kangaroo-ground-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Kangaroo Ground Primary School. We are demolishing Block A . We'll replace it with a new administration and learning building, including landscaping.", + "We helped the school build a new sensory playground. This creates new stimulating learning and play opportunities for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $4.335 million.\u00a0In 2022 the school was allocated $430,500.", + "In the 2020 Minor Capital Works Fund the school was allocated $197,125." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kangaroo Ground Primary School." + ], + "field_latitude": ["-37.692043", "-37.692043"], + "field_latitude_longitude_value": ["-37.692043,145.2155292"], + "field_latitude_value": ["-37.692043"], + "field_longitude": ["145.2155292", "145.2155292"], + "field_longitude_value": ["145.2155292"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3097"], + "field_project_code": ["D1-01-2105", "01-2105"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2024", "Q4 2022"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Cr Graham & Eltham-Yarra Glen Rd"], + "field_suburb": ["Kangaroo Ground"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20076], + "status": [true], + "title": ["Kangaroo Ground Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f7218fab-a5b0-4f3c-bb34-2fd8e0e707cf"] + }, + "sort": ["Kangaroo Ground Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20938:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kaniva-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have completed work at the school, including refurbishing the senior building and\u00a0junior toilets and upgrading\u00a0fire services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $2.3 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kaniva College." + ], + "field_latitude": ["-36.381271"], + "field_latitude_longitude_value": ["-36.381271,141.244003"], + "field_latitude_value": ["-36.381271"], + "field_longitude": ["141.244003"], + "field_longitude_value": ["141.244003"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3419"], + "field_project_code": ["01-8842"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Farmers St"], + "field_suburb": ["Kaniva"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20938], + "status": [true], + "title": ["Kaniva College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["32df5bd1-ff52-40c2-9df8-4514029ea4b0"] + }, + "sort": ["Kaniva College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21324:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kaniva-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the bathroom, laundry and storage facilities at the\u00a0kindergarten to make them more inclusive. These works will also improve supervision of children, storage options and hygienic practices." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 Building Blocks Improvement Grant $123,867 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kaniva Kindergarten." + ], + "field_latitude": ["-36.3822766"], + "field_latitude_longitude_value": ["-36.3822766,141.2456084"], + "field_latitude_value": ["-36.3822766"], + "field_longitude": ["141.2456084"], + "field_longitude_value": ["141.2456084"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3419"], + "field_project_code": ["15-664"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Farmers St"], + "field_suburb": ["Kaniva"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21324], + "status": [true], + "title": ["Kaniva Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["59a59783-5b99-4d5b-80ab-9e3ac52a4212"] + }, + "sort": ["Kaniva Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21315:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/karingal-east-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bFrankston City Council have extended and upgraded the\u00a0kindergarten to create a larger, modern facility with enhanced functionality. Facilities The upgrade includes: disability access designated foyer separate\u200b children's locker area larger children's bathroom including separate accessible toilet facility designated staff toilet and relocated staff office catering for 6 adults and incorporating a small meeting space larger children's play room with art space an upgraded kitchen.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $287,218 has been allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Karingal East Kindergarten." + ], + "field_latitude": ["-38.14146"], + "field_latitude_longitude_value": ["-38.14146,145.16587"], + "field_latitude_value": ["-38.14146"], + "field_longitude": ["145.16587"], + "field_longitude_value": ["145.16587"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["15-564"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["12 Havana Cr"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21315], + "status": [true], + "title": ["Karingal East Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["71a8b86b-2347-4233-879e-bd9628c933e8"] + }, + "sort": ["Karingal East Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20404:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/karingal-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are further upgrading the school, including blocks C and D.", + "We refurbished\u00a0and modernised\u00a0classrooms Block A and Block B. Improvements included reconditioning timber windows, floors and installing new carpet. We also upgraded the roofing and eaves." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $4.11 million.", + "In the 2018\u201319 State Budget $515,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Karingal Primary School." + ], + "field_latitude": ["-38.1378802090449", "-38.138760"], + "field_latitude_longitude_value": [ + "-38.1378802090449,145.152612206673" + ], + "field_latitude_value": ["-38.1378802090449"], + "field_longitude": ["145.152612206673", "145.152222"], + "field_longitude_value": ["145.152612206673"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["D1-01-4922", "01-4922"], + "field_project_title": [ + "Upgrade and Modernisation - Blocks C and D", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Mallum Av"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20404], + "status": [true], + "title": ["Karingal Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2bc0e3de-3411-403f-a4b6-da7b06a98f7a"] + }, + "sort": ["Karingal Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20699:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/karwan-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in the City of Wyndham. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Ashley Craig was appointed as the first principal of the school. Karwan Primary School was chosen as the new school name following community consultation. \u2018Karwan\u2019 (pronounced kar-wan) is a Bunurong word referring to the nankeen kestrel. The school was previously known as Riverdale East Primary School, during the planning phase. In August 2022, the name of Riverdale East Primary School (interim name) was announced as Tarneit Primary School. Facilities The school has the following facilities: an administration building with a library, staff offices and amenities 2 learning neighbourhood buildings with general purpose classrooms, and flexible and collaborative teaching spaces a specialist learning neighbourhood for subjects such as food technology and science a community hub with a competition-grade gymnasium, canteen, music and drama space 2 outdoor hardcourts a sports field a bike shed. Kindergarten We partnered with Wyndham City Council to build Dianella Community Centre at the school. Co-locating kindergartens at primary schools provides many benefits for Victorian families, including making: kindergarten programs easier to access drop-off time simpler and more convenient the transition from kindergarten to school smoother for children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Karwan Primary School." + ], + "field_latitude": ["-37.852861"], + "field_latitude_longitude_value": ["-37.852861,144.645522"], + "field_latitude_value": ["-37.852861"], + "field_longitude": ["144.645522"], + "field_longitude_value": ["144.645522"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/KarwanPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["First week at Karwan Primary School"], + "field_postcode": ["3029"], + "field_project_code": ["01-5596"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["455 Bethany Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20699], + "status": [true], + "title": ["Karwan Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1da6644f-5749-4f70-b7d3-b1391169fc1b"] + }, + "sort": ["Karwan Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27925:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/katandra-berendale-special-school-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-12T17:37:06+11:00"], + "field_about_project_processed": [ + "As part of the merger of Katandra and Berendale schools, we are modernising the Berendale School campus. This will include 2 new buildings that will house: art and science spaces a junior learning hub a middle-years learning hub. These spaces will provide classrooms, resource intensive learning spaces, informal learning spaces, staff areas and amenities. The library will be relocated to the Integrated learning centre building. We will also refurbish the existing Block C to accommodate administration space. About the merger The merger will provide students and staff at both schools with greater opportunities including richer curriculum and subject offerings more specialist support staff improved facilities and recreation spaces an easier transition from primary school to secondary school. Juliet Cooper has been appointed as foundation principal of Katandra-Berendale School (interim name). The new school will be known as Katandra-Berendale School (interim name) until a formal naming process is complete.", + "We delivered four new multipurpose teaching spaces as well as:a communal learning space for studentsa trade kitchena home economics rooman external deck area to allow for outdoor learningadditional toilets.", + "We upgraded the fencing and gates around the school's perimeter." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this project received at least $12.188 million. In the 2020\u201321 State Budget, the project received $500,000 for planning.", + "In the 2016\u201317 State Budget, $2.48 million was allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $180,165." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Katandra\u2013Berendale School (interim name)." + ], + "field_latitude": ["-37.9019961"], + "field_latitude_longitude_value": ["-37.9019961,145.0405393"], + "field_latitude_value": ["-37.9019961"], + "field_longitude": ["145.0405393"], + "field_longitude_value": ["145.0405393"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "We held an information session about the school merger at Katandra School on Monday 29 August 2022. We held a second information session about the school merger at Berendale School on Wednesday 30 November 2022. The session included a tour of the site.", + "Each junior classroom will have a quiet retreat space, accessible from the main classroom space. Middle-years students will have access to individual learning, informal learning and small-group spaces in the new buildings. There will be a mix of toilet facilities, including accessible toilets. There will be separate play areas for junior and senior students at the new campus.", + "Current busing arrangements for the two schools overlap. Arrangements for designated travel areas will continue. The Department will work with both schools to ensure transport services meet the needs of students. The new campus offers good street access for students who walk to school or are dropped off by parents. Zoning for students at both schools will not be affected by the merger. All existing enrolments will continue, and provision will be made for the siblings of existing students. The Berendale site will be able to accommodate enrolment growth in the future.", + "The schools will plan together during 2023 to ensure there is a seamless transition to the new, merged school. This includes planning for staff professional development and sharing ideas and resources. Katandra students will remain at the Katandra site during construction in 2023. It is anticipated that all students will be learning on the Katandra-Berendale School (interim name) site in 2024. Start and finish times Student times for both schools are 9am to 3pm, which meets the current bus schedule. Start and finish times can be reviewed when the schools are merged, if necessary. After-school care As a senior school, Berendale School does not currently offer an after-school care program. New arrangements will be explored for the merged junior school." + ], + "field_paragraph_accordion_name": [ + "Information session", + "Accessibility", + "Transport and zoning", + "Teaching and transition" + ], + "field_paragraph_body": [ + "Katandra Berendale Special School (interim name) \u2013 Design release \u00a0" + ], + "field_postcode": ["3188"], + "field_project_code": ["01-6368", "D2-01-6368", "D3-01-6368"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 1", + "Upgrade and Modernisation \u2013 Berendale School", + "Minor Capital Works Fund \u2013 Berendale School" + ], + "field_q_complete": ["Q2 2024", "Q4 2018", "Q3 2022"], + "field_start_date": ["Q2 2022", "Q2 2018", "Q4 2020"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["2 Berend St"], + "field_suburb": ["Hampton East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27925], + "status": [true], + "title": ["Katandra Berendale Special School (interim name)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["55c6e2fb-d888-4568-804a-befaa788db38"] + }, + "sort": ["Katandra Berendale Special School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22350:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/katandra-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:24:00+11:00"], + "field_about_project_processed": [ + "We are providing exterior roof works and internal repairs and refurbishment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $306,349" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Katandra West Primary School" + ], + "field_latitude": ["-36.225467"], + "field_latitude_longitude_value": ["-36.225467,145.560714"], + "field_latitude_value": ["-36.225467"], + "field_longitude": ["145.560714"], + "field_longitude_value": ["145.560714"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3634"], + "field_project_code": ["01-4401"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["17-27 Bankin Street"], + "field_suburb": ["Katandra West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22350], + "status": [true], + "title": ["Katandra West Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["3336394b-64eb-47af-a15e-3f8176659411"] + }, + "sort": ["Katandra West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22624:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kathleen-kelly-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We partnered with Mildura Rural Council to upgrade the large outdoor play space. These works provide a more inclusive play space for the kindergarten children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $326,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kathleen Kelly Kindergarten" + ], + "field_latitude": ["-34.18758938"], + "field_latitude_longitude_value": ["-34.18758938,142.1659665"], + "field_latitude_value": ["-34.18758938"], + "field_longitude": ["142.1659665"], + "field_longitude_value": ["142.1659665"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["15-859"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["45 Lemon Ave"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22624], + "status": [true], + "title": ["Kathleen Kelly Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c0b73386-17ab-4567-8d48-0b1cc2a9cabd"] + }, + "sort": ["Kathleen Kelly Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20603:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keelonith-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Greenvale. It opened in 2021 and helps the growing local population get great education close to home.\u00a0 Loren Peavey\u00a0was appointed as the first principal. Enrolments are now open for Prep to Year 6.\u00a0 Your new school\u00a0includes: 2 learning neighbourhoods an administration building outdoor play courts a performing arts and physical education building a\u00a0sports field. Further information on the school, including enrolment,\u00a0can be found on its official Facebook Page. Greenvale West Integrated Community Centre\u00a0is located\u00a0next to the school.\u00a0This may\u00a0help local\u00a0children make\u00a0a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school aged-children.\u00a0 Supported inclusion This school\u00a0is\u00a0a\u00a0supported inclusion school.\u00a0This means the school has been designed to support a higher number of students with a disability than a typical mainstream school. Included in the school design are facilities that provide additional support, so that all students have access to the same learning and play spaces. These additional facilities include: sensory/multipurpose spaces for individual or group activities small learning/consulting spaces for individual or small group activities accessible toilets with showers and additional accessible toilets kitchen and laundry facilities fixed hoists in first aid room an additional fitness room for therapeutic use pressure poles.\u00a0 School name Keelonith\u00a0Primary School (pronounced\u00a0keel-on-ith)\u00a0 was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. Keelonith is from the Woi-wurrung language, as spoken by the Wurundjeri people, and means\u00a0\u2018hear and understand\u2019. We consulted with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was provided in the 2017\u201318 State Budget to buy land in this area for a new school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Keelonith Primary School." + ], + "field_latitude": ["-37.622981"], + "field_latitude_longitude_value": ["-37.622981,144.879537"], + "field_latitude_value": ["-37.622981"], + "field_longitude": ["144.879537"], + "field_longitude_value": ["144.879537"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["First day at Keelonith Primary School"], + "field_postcode": ["3059"], + "field_project_code": ["01-5412"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["21 Greenvale Gardens Blvd"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20603], + "status": [true], + "title": ["Keelonith Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1079f1bb-c624-4399-8b77-c3439b72768f"] + }, + "sort": ["Keelonith Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36665:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keilor-downs-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are replacing roof sheeting and guttering on the gym. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $497,493 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Keilor Downs Secondary College" + ], + "field_latitude": ["-37.715515"], + "field_latitude_longitude_value": ["-37.715515,144.811186"], + "field_latitude_value": ["-37.715515"], + "field_longitude": ["144.811186"], + "field_longitude_value": ["144.811186"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3038"], + "field_project_code": ["01-8715"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["100-110 Odessa Avenue"], + "field_suburb": ["Keilor Downs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36665], + "status": [true], + "title": ["Keilor Downs Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["bf98fc28-8b63-4204-ab94-09339a82097e"] + }, + "sort": ["Keilor Downs Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20386:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keilor-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed further upgrades for school, including synthetic turf for the oval.\u00a0", + "\u200bWe updated sports facilities at the\u00a0school by\u00a0refurbishing the gym floor, including new line marking. We also constructed 2 new netball courts with state-of-the-art lighting and fencing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $842,000.", + "In the 2017\u201318 State Budget, $522,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Keilor Heights Primary School." + ], + "field_latitude": ["-37.740924835205078", "-37.73786"], + "field_latitude_longitude_value": [ + "-37.740924835205078,144.86776733398437" + ], + "field_latitude_value": ["-37.740924835205078"], + "field_longitude": ["144.86776733398437", "144.86759"], + "field_longitude_value": ["144.86776733398437"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3033"], + "field_project_code": ["D1-01-4877", "01-4877"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2023", "Q1 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Ronald Gr"], + "field_suburb": ["Keilor East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20386], + "status": [true], + "title": ["Keilor Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a747fe52-61c6-4e73-b60c-3710fc55b4ca"] + }, + "sort": ["Keilor Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20016:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keilor-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe\u00a0delivered\u200b a new architect-designed modular building to Keilor Primary School to replace the Administration and Library building with new classrooms, library and art and craft room." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $2,475,000 was allocated to the school" + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Keilor Primary School" + ], + "field_latitude": ["-37.71657"], + "field_latitude_longitude_value": ["-37.71657,144.8357399"], + "field_latitude_value": ["-37.71657"], + "field_longitude": ["144.8357399"], + "field_longitude_value": ["144.8357399"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3036"], + "field_project_code": ["01-1578"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Kennedy Street"], + "field_suburb": ["Keilor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20016], + "status": [true], + "title": ["Keilor Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["33ea6e6a-9e37-4da3-9b72-c3b4500fddbd"] + }, + "sort": ["Keilor Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21200:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kennington-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "City of Greater Bendigo upgraded the rubberised bike track at Kennington Preschool and extended the\u00a0preschool's\u00a0storage shed.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $26,500 was allocated to the preschool." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kennington Preschool" + ], + "field_latitude": ["-36.77268"], + "field_latitude_longitude_value": ["-36.77268,144.30839"], + "field_latitude_value": ["-36.77268"], + "field_longitude": ["144.30839"], + "field_longitude_value": ["144.30839"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["15-1223"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["17 Crook St"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21200], + "status": [true], + "title": ["Kennington Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0365c2fe-ae07-49cf-8f7c-b4592bfbae92"] + }, + "sort": ["Kennington Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20216:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kennington-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We installed\u00a0digital signage and Elementi software to immerse the school in Auslan and to support the inclusion of students with sensory impairments." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kennington Primary School" + ], + "field_latitude": ["-36.768805"], + "field_latitude_longitude_value": ["-36.768805,144.307498"], + "field_latitude_value": ["-36.768805"], + "field_longitude": ["144.307498"], + "field_longitude_value": ["144.307498"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["01-3686"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Crook St"], + "field_suburb": ["Kennington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20216], + "status": [true], + "title": ["Kennington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cf5080fc-5219-49b0-96e8-5520cc1b0e70"] + }, + "sort": ["Kennington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28329:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/kensington-community-childrens-co-operative-limited" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-02T13:56:10+11:00"], + "field_about_project_processed": [ + "We are upgrading and expanding this centre. This will create more places for local children and help meet demand for 3-year-old kinder and Pre-Prep (4-year-old kinder)." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In round 3 of the 2022\u201323 Building Blocks Capacity Grants $600,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kensington Community Children's Co-operative Limited." + ], + "field_latitude": ["-37.79711547"], + "field_latitude_longitude_value": ["-37.79711547,144.9252422"], + "field_latitude_value": ["-37.79711547"], + "field_longitude": ["144.9252422"], + "field_longitude_value": ["144.9252422"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3031"], + "field_project_code": ["15-830"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["81B Altona St"], + "field_suburb": ["Kensington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28329], + "status": [true], + "title": ["Kensington Community Children's Co-operative Limited"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["c624b488-9308-47d3-9017-99cdaddf6632"] + }, + "sort": ["Kensington Community Children's Co-operative Limited"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20096:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kensington-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade Kensington Primary School. Our latest project will modernise heritage Block A by upgrading general purpose classrooms for students, and deliver a new reception and administration area for staff. A new passenger lift will be installed to service the southern end of Block A and provide access to some of the upper-level classrooms. The project will also build a new student toilet block, a covered walkway and a new gathering space to bring the community together. These facilities will provide contemporary and more innovative spaces for students to learn, play and grow in. Masterplan When a school receives capital works funding for the first time, they work closely with the VSBA, architect and other relevant stakeholders to create a masterplan. A masterplan lays out the future infrastructure needs of the school. It separates it into individual stages depending on their most pressing needs. Each stage is then subject to possible future funding as it becomes available. The masterplan below shows what is currently planned for the future of Kensington Primary School, dependent on future funding and subject to change. \u00a0", + "We upgraded and modernised\u00a0facilities at Kensington Primary School. Works included repairing roofing, replacing carpet, painting some classrooms and an upgrade to the playground.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $7.365 million.", + "In the 2019\u201320 State Budget, the school received $200,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kensington Primary School" + ], + "field_latitude": ["-37.792445", "-37.79157"], + "field_latitude_longitude_value": ["-37.792445,144.927539"], + "field_latitude_value": ["-37.792445"], + "field_longitude": ["144.927539", "144.9278"], + "field_longitude_value": ["144.927539"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3031"], + "field_project_code": ["D1-01-2374", "01-2374"], + "field_project_title": [ + "Upgrade and Modernisation - Block A", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2024", "Q4 2020"], + "field_start_date": ["Q2 2021", "Q2 2019"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Mccracken St"], + "field_suburb": ["Kensington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20096], + "status": [true], + "title": ["Kensington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["77cd9ae7-823a-40be-9298-02867a886512"] + }, + "sort": ["Kensington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33035:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kent-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We will be building a new synthetic oval, running track and playground and creating more open space for students and staff to enjoy." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $900,000" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kent Park Primary school" + ], + "field_latitude": ["-37.883491"], + "field_latitude_longitude_value": ["-37.883491,145.262733"], + "field_latitude_value": ["-37.883491"], + "field_longitude": ["145.262733"], + "field_longitude_value": ["145.262733"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["01-5082"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["Greenaway Drive"], + "field_suburb": ["Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33035], + "status": [true], + "title": ["Kent Park Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["c2a14b19-159b-4d4d-b2a4-43e8048c9282"] + }, + "sort": ["Kent Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25467:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keon-park-childrens-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded the playground to make it more inclusive for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $181,350 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Keon Park Childrens Hub" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3073"], + "field_project_code": ["15-5380"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Dole Ave"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25467], + "status": [true], + "title": ["Keon Park Children's Hub"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["146dd57a-d709-4bbe-beea-a9be04f9079e"] + }, + "sort": ["Keon Park Children's Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21061:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kerang-christian-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school build a new administration building, as well as creating new learning spaces in an upgraded primary building. This will give students the modern learning environments they deserve and the college the space it needs for growing enrolments." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1.9184 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kerang Christian College." + ], + "field_latitude": ["-35.7306773"], + "field_latitude_longitude_value": ["-35.7306773,143.9133997"], + "field_latitude_value": ["-35.7306773"], + "field_longitude": ["143.9133997"], + "field_longitude_value": ["143.9133997"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3579"], + "field_project_code": ["02-1869"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["98 Wyndham St"], + "field_suburb": ["Kerang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21061], + "status": [true], + "title": ["Kerang Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ffda850d-0194-437c-a1fa-016bc51b5172"] + }, + "sort": ["Kerang Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19991:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kerang-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished classrooms, corridors,\u00a0general office and\u00a0administration areas, the principal's office and the waiting room. We also undertook general maintenance and external landscaping works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $400,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kerang Primary School." + ], + "field_latitude": ["-35.732380"], + "field_latitude_longitude_value": ["-35.732380,143.921036"], + "field_latitude_value": ["-35.732380"], + "field_longitude": ["143.921036"], + "field_longitude_value": ["143.921036"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3579"], + "field_project_code": ["01-1410"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["75\u201379 Victoria St"], + "field_suburb": ["Kerang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19991], + "status": [true], + "title": ["Kerang Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e3d096e4-0cf0-4d6e-8900-6542aa4cb6bb"] + }, + "sort": ["Kerang Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20416:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kerang-south-primary-school"], + "changed": ["2023-07-20T14:40:38+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school. This ensures current and future students will\u00a0learn in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $2.915 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kerang South Primary School." + ], + "field_latitude": ["-35.7416682004038"], + "field_latitude_longitude_value": [ + "-35.7416682004038,143.924124699967" + ], + "field_latitude_value": ["-35.7416682004038"], + "field_longitude": ["143.924124699967"], + "field_longitude_value": ["143.924124699967"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Kerang South Primary School." + ], + "field_postcode": ["3579"], + "field_project_code": ["01-4949"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Mitchell St"], + "field_suburb": ["Kerang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20416], + "status": [true], + "title": ["Kerang South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d3ed02d8-b701-4449-8f3b-6795e256bc24"] + }, + "sort": ["Kerang South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33830:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/kerang-south-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Kerang South Primary School.\u00a0It will provide additional kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Kerang South Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-35.740390"], + "field_latitude_longitude_value": ["-35.740390,143.926950"], + "field_latitude_value": ["-35.740390"], + "field_longitude": ["143.926950"], + "field_longitude_value": ["143.926950"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3579"], + "field_project_code": ["15-KSPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["3 Mitchell Street"], + "field_suburb": ["Kerang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33830], + "status": [true], + "title": ["Kerang South Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["437fb174-d90a-4de3-88bc-878ce0c30bfa"] + }, + "sort": ["Kerang South Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20365:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kerrimuir-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a new competition-grade gymnasium at Kerrimuir Primary School.", + "We replaced concrete tile cladding to modernise the appearance of the school buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $6.611 million.\u00a0In 2022 the school was allocated a further $1,528,900.", + "In the 2020 Minor Capital Works Fund, the school was allocated $302,165." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kerrimuir Primary School" + ], + "field_latitude": ["-37.803105", "-37.803105"], + "field_latitude_longitude_value": ["-37.803105,145.133864"], + "field_latitude_value": ["-37.803105"], + "field_longitude": ["145.133864", "145.133864"], + "field_longitude_value": ["145.133864"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3129"], + "field_project_code": ["D1-01-4816", "01-4816"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2024", "Q2 2022"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["178 Dorking Rd"], + "field_suburb": ["Box Hill North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20365], + "status": [true], + "title": ["Kerrimuir Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["77864d54-fbc3-4def-9ea2-fb91feabfbf8"] + }, + "sort": ["Kerrimuir Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20806:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kew-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a double-storey Science, Technology, Engineering and Maths (STEM) centre. This houses STEM facilities\u00a0on the ground floor and an Enquiry and Research Learning Centre on the first floor. We also built a new canteen." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.084 million. In 2020, the school received $9.76 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kew High School" + ], + "field_latitude": ["-37.79552"], + "field_latitude_longitude_value": ["-37.79552,145.06254"], + "field_latitude_value": ["-37.79552"], + "field_longitude": ["145.06254"], + "field_longitude_value": ["145.06254"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Kew High School \u2013 STEM Centre designs" + ], + "field_postcode": ["3102"], + "field_project_code": ["01-7950"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1393 Burke Road"], + "field_suburb": ["Kew East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20806], + "status": [true], + "title": ["Kew High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9c0e33c7-42f2-42aa-9660-5c2ef0ef6fea"] + }, + "sort": ["Kew High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20678:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keysborough-gardens-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at the school. We are expanding the school to allow for more local students. The school will be able to enrol up to 150 additional students once the works are complete. We are also building an Indigenous Friendship Garden. We will also be upgrading the playground, sports facilities, canteen and car park.", + "We built a new primary school for Keysborough.\u00a0Take a\u00a0virtual tour\u00a0and experience\u00a0this\u00a0school through the eyes of its students. The school will help ease enrolment pressures at surrounding schools and meet future demand from a growing population.\u00a0 The school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards. Further information on the school can be found at its official Facebook page. A hub with an early learning centre is being planned close to Keysborough Gardens Primary School. This will help local\u00a0children make\u00a0a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 School name Keysborough Gardens Primary School was originally known by the interim name of Keysborough South Primary School while it was being planned and built. The school's location was predominately market gardens in the past. The new name acknowledges this history, and helps the school form an identity connected to the area. The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable.", + "We built an inclusive playground, including shade sail and new play and sensory equipment.", + "We helped the school upgrade the oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $5.34 million", + "The 2016\u201317 State Budget allocated funding to buy land in this area for a new school. The school received an additional $18.9 million in the 2018\u201319 State Budget for construction.", + "In Round 6 of the Inclusive Schools Fund, this project received $154,000.", + "In the 2020 Minor Capital Works Fund the school was allocated $117,114." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "New School", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the build of Keysborough Gardens Primary School." + ], + "field_latitude": ["-38.00984", "-38.009517", "-38.009517"], + "field_latitude_longitude_value": ["-38.00984,145.160447"], + "field_latitude_value": ["-38.00984"], + "field_longitude": ["145.160447", "145.161094", "145.161094"], + "field_longitude_value": ["145.160447"], + "field_mappintype_name": [ + "New school", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "First day at Keysborough Gardens Primary School" + ], + "field_postcode": ["3173"], + "field_project_code": [ + "D3-01-5572", + "01-5572", + "D2-01-5572", + "D1-01-5572" + ], + "field_project_title": [ + "Upgrade and Modernisation - Indigenous Friendship Garden and Playground, Sports Facilities, Canteen and Car Park", + "New School", + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2026", "Q1 2020", "Q3 2022", "Q1 2022"], + "field_start_date": ["Q2 2023", "Q2 2016", "Q2 2021", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete", "Complete"], + "field_street_address": ["10 Homeleigh Rd"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20678], + "status": [true], + "title": ["Keysborough Gardens Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["91c62f1b-2e9c-4038-bd4f-da439c2af269"] + }, + "sort": ["Keysborough Gardens Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20650:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keysborough-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school gymnasium/hall to improve its appearance and acoustics.", + "We built\u00a0an inclusive learning space and a sensory garden with accessible, tactile, visual, auditory, motor-planning and imaginative play opportunities. The garden\u00a0has\u00a0a water feature, a variety of ground surfaces, seating areas and plants. The indoor space also includes\u00a0temperature and auditory controls." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $201,125.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Keysborough Primary School" + ], + "field_latitude": ["-37.9821226", "-37.982629"], + "field_latitude_longitude_value": ["-37.9821226,145.1475821"], + "field_latitude_value": ["-37.9821226"], + "field_longitude": ["145.1475821", "145.152418"], + "field_longitude_value": ["145.1475821"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten \u00a0at Keysborough Primary School." + ], + "field_postcode": ["3172"], + "field_project_code": ["D1-01-5534", "01-5534"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["33 Coomoora Rd"], + "field_suburb": ["Springvale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20650], + "status": [true], + "title": ["Keysborough Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a717d0c8-5f91-4a87-a650-bc50652ad15f"] + }, + "sort": ["Keysborough Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21476:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keysborough-primary-school-kindergarten"], + "changed": ["2023-08-03T13:50:16+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built a new kindergarten at Keysborough Primary School.Having the kindergarten and school together may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 Budget this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Keysborough Primary School Kindergarten" + ], + "field_latitude": ["-37.98283"], + "field_latitude_longitude_value": ["-37.98283,145.15322"], + "field_latitude_value": ["-37.98283"], + "field_longitude": ["145.15322"], + "field_longitude_value": ["145.15322"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3172"], + "field_project_code": ["K-01-5534"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["31-53 Coomoora Rd"], + "field_suburb": ["Springvale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21476], + "status": [true], + "title": ["Keysborough Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b03dd07b-63d6-4010-a8ca-54eab4ade9fe"] + }, + "sort": ["Keysborough Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20949:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keysborough-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We modernised the school by building new facilities \u200band refurbishing or repurposing existing ones across 2 campuses: Acacia Campus\u200b works included the construction of new hospitality and arts and technology areas\u00a0 Banksia Campus works updated the performing arts and physical education facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $10 million was allocated to the school. In the 2015\u201316 State Budget, $1.5 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Keysborough Secondary College." + ], + "field_latitude": ["-37.96831"], + "field_latitude_longitude_value": ["-37.96831,145.15945"], + "field_latitude_value": ["-37.96831"], + "field_longitude": ["145.15945"], + "field_longitude_value": ["145.15945"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3172"], + "field_project_code": ["01-8867"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["8-20 Janine Rd"], + "field_suburb": ["Springvale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20949], + "status": [true], + "title": ["Keysborough Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9b92525c-eba4-4ad7-8296-664417caa5f3"] + }, + "sort": ["Keysborough Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21369:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/keysborough-south-community-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping build the hub. The hub will provide 123 places in kindergarten, long day care and child care services. The specialist consulting suites will accommodate Maternal and Child Health and other allied health services. Families will also have access to parenting support programs, counselling and other essential services. We will also deliver multipurpose community spaces, meeting rooms, library, cafe and community garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $3 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Keysborough South Community Hub." + ], + "field_latitude": ["-38.006378173828125"], + "field_latitude_longitude_value": [ + "-38.006378173828125,145.166015625" + ], + "field_latitude_value": ["-38.006378173828125"], + "field_longitude": ["145.166015625"], + "field_longitude_value": ["145.166015625"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["15-KSCH"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centres" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": [ + "400 Cheltenham Rd (Ian Tatterson Leisure Park- Villiers Rd/Chapel Rd Entrance)" + ], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21369], + "status": [true], + "title": ["Keysborough South Community Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c56d3e18-7666-460e-b340-936a9e165572"] + }, + "sort": ["Keysborough South Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21219:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kialla-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We repainted and refloored the 2 kindergarten rooms. We also installed new lockers and built storage sheds for the outdoor area.", + "Kialla Children's Centre used the funding from the Children's Facilities Capital Program to upgrade the original building to improve conditions for its children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $52,336 was allocated to the project.", + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $60,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Learning Facilities Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kialla Children's Centre" + ], + "field_latitude": ["-36.41712"], + "field_latitude_longitude_value": ["-36.41712,145.39077"], + "field_latitude_value": ["-36.41712"], + "field_longitude": ["145.39077"], + "field_longitude_value": ["145.39077"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3611"], + "field_project_code": ["D1-15-1458", "15-1458"], + "field_project_title": [ + "Building Blocks Improvement Grant", + "Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q3 2023", "Q2 2019"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2 Reserve St"], + "field_suburb": ["Kialla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21219], + "status": [true], + "title": ["Kialla Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["836cdd0c-2444-42cd-a690-82f4cd751dd0"] + }, + "sort": ["Kialla Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20034:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kialla-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built four new general purpose learning areas with associated spaces\u200b.\u00a0", + "We made improvements to the grey water plumbing. The work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $955,000 was allocated to the school.", + "In the 2022-23 State Budget the project received $134,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kialla West Primary School" + ], + "field_latitude": ["-36.466110", "-36.466006"], + "field_latitude_longitude_value": ["-36.466110,145.389236"], + "field_latitude_value": ["-36.466110"], + "field_longitude": ["145.389236", "145.389455"], + "field_longitude_value": ["145.389236"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3631"], + "field_project_code": ["01-1727", "D1-01-1727"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2019", "Q1 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["7370 Goulburn Valley Highway"], + "field_suburb": ["Kialla West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20034], + "status": [true], + "title": ["Kialla West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a4b0e2ce-3235-49b5-93b6-6d7c3d1837e4"] + }, + "sort": ["Kialla West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22630:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kids-campus-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded the bathroom and made structural improvements to the roof. We also added bi-fold doors to the kindergarten rooms, connecting them to outdoor learning areas.", + "We made the outdoor playground more inclusive for children of all abilities. We added an accessible swing, modified the sandpit, and added more water bubblers to the playground. The bike path was upgraded and rerouted. We also upgraded perimeter fencing with snake proofing and installed additional external storage to declutter the area, providing the children with more play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $491,397 was allocated to this project.", + "In Round 1 of the 2021-22 Building Blocks Inclusion Grant, $177,718 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kids on Campus Early Learning Centre" + ], + "field_latitude": ["-36.11151673", "-36.11164867"], + "field_latitude_longitude_value": ["-36.11151673,146.8532596"], + "field_latitude_value": ["-36.11151673"], + "field_longitude": ["146.8532596", "146.8529392"], + "field_longitude_value": ["146.8532596"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["15-1427", "D1-15-1427"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2022", "Q4 2022"], + "field_start_date": ["Q3 2021", "Q1 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["87 McKoy St"], + "field_suburb": ["West Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22630], + "status": [true], + "title": ["Kids on Campus Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["94c5f5c9-3b9d-42a9-a334-140e688408c9"] + }, + "sort": ["Kids on Campus Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22652:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kiewa-valley-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We installed an inclusive and accessible playground for 3 and 4-year-olds. Children can now play on 2 slides and climbing structures. Additionally, there is a new bike path for practicing riding skills.", + "We built a veranda over the pathway leading to the kindergarten entrances. It protects families from harsh weather and fixes gutter-related issues.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $115,780 was allocated to this project.", + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $683,813 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kiewa Valley Kindergarten" + ], + "field_latitude": ["-36.25123459", "-36.25123459"], + "field_latitude_longitude_value": ["-36.25123459,147.0376929"], + "field_latitude_value": ["-36.25123459"], + "field_longitude": ["147.0376929", "147.0376929"], + "field_longitude_value": ["147.0376929"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3691"], + "field_project_code": ["15-1445", "D1-15-1445"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023", "Q3 2023"], + "field_start_date": ["Q3 2021", "Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["81 Kiewa East Rd"], + "field_suburb": ["Tangambalanga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22652], + "status": [true], + "title": ["Kiewa Valley Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0fbd2353-6b12-4162-876f-be13f3c817a6"] + }, + "sort": ["Kiewa Valley Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20713:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kiewa-valley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school install new perimeter fencing to make the campus more secure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $123,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kiewa Valley Primary School." + ], + "field_latitude": ["-36.2512371"], + "field_latitude_longitude_value": ["-36.2512371,147.0376948"], + "field_latitude_value": ["-36.2512371"], + "field_longitude": ["147.0376948"], + "field_longitude_value": ["147.0376948"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3691"], + "field_project_code": ["01-6229"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["81 Kiewa East Rd"], + "field_suburb": ["Tangambalanga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20713], + "status": [true], + "title": ["Kiewa Valley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6af54c5a-17e8-404f-8ae8-fa5073f383cb"] + }, + "sort": ["Kiewa Valley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20583:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kilberry-valley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We provided\u00a0the school with outdoor learning spaces and equipment, and facilities for quiet, supportive and creative re-engagement.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015, the school received $200,000 from Round 1 of the Inclusive Schools Fund. An additional $340,000 was allocated to this project." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kilberry Valley Primary School" + ], + "field_latitude": ["-38.036855"], + "field_latitude_longitude_value": ["-38.036855,145.2798139"], + "field_latitude_value": ["-38.036855"], + "field_longitude": ["145.2798139"], + "field_longitude_value": ["145.2798139"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3976"], + "field_project_code": ["01-5350"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Kilberry Boulevard"], + "field_suburb": ["Hampton Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20583], + "status": [true], + "title": ["Kilberry Valley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5c6dd5fc-3832-4b86-8e45-b2aa6520d86d"] + }, + "sort": ["Kilberry Valley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21120:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kilbreda-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe supported the school to refurbish\u00a0and extend\u00a0the school theatrette for multipurpose use.\u00a0\u200b\u200b\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $500,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kilbreda College." + ], + "field_latitude": ["-37.9905"], + "field_latitude_longitude_value": ["-37.9905,145.06468"], + "field_latitude_value": ["-37.9905"], + "field_longitude": ["145.06468"], + "field_longitude_value": ["145.06468"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3194"], + "field_project_code": ["02-500"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["118 Mentone Pde"], + "field_suburb": ["Mentone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21120], + "status": [true], + "title": ["Kilbreda College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["db53ccd0-9ab9-47a2-acee-12be7850bbf0"] + }, + "sort": ["Kilbreda College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25374:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/killara-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We refurbished the student and accessible toilets. This has improved amenity, cleanliness and hygiene. The work was supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $248,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Killara Primary School" + ], + "field_latitude": ["-37.563794"], + "field_latitude_longitude_value": ["-37.563794,144.704579"], + "field_latitude_value": ["-37.563794"], + "field_longitude": ["144.704579"], + "field_longitude_value": ["144.704579"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["01-5352"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["61 Phillip Drive"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25374], + "status": [true], + "title": ["Killara Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["91b1ae20-7878-4b4f-ada2-618836e7332a"] + }, + "sort": ["Killara Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20209:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kilsyth-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade their senior playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $97,665" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kilsyth Primary School" + ], + "field_latitude": ["-37.8012089508399"], + "field_latitude_longitude_value": [ + "-37.8012089508399,145.32258130037" + ], + "field_latitude_value": ["-37.8012089508399"], + "field_longitude": ["145.32258130037"], + "field_longitude_value": ["145.32258130037"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3137"], + "field_project_code": ["01-3645"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Durham Road"], + "field_suburb": ["Kilsyth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20209], + "status": [true], + "title": ["Kilsyth Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9dd2d0b0-fe6b-47d6-a4ee-1806332225c0"] + }, + "sort": ["Kilsyth Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21270:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kilvington-grammar-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded\u00a0\u200bthe centre\u00a0to improve the play space for 4-year-old kinder groups. The upgrade included new climbing equipment with a water area, and a covered auditorium." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $299,940 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kilvington Grammar Early Learning Centre." + ], + "field_latitude": ["-37.899927"], + "field_latitude_longitude_value": ["-37.899927,145.041229"], + "field_latitude_value": ["-37.899927"], + "field_longitude": ["145.041229"], + "field_longitude_value": ["145.041229"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3163"], + "field_project_code": ["15-4279"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Leila Rd"], + "field_suburb": ["Ormond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21270], + "status": [true], + "title": ["Kilvington Grammar Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["30e1c9f9-66f7-4d52-a43a-ddf5a1fb5a6e"] + }, + "sort": ["Kilvington Grammar Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27777:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kinglake-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kinglake Primary School" + ], + "field_latitude": ["-37.521567"], + "field_latitude_longitude_value": ["-37.521567,145.356638"], + "field_latitude_value": ["-37.521567"], + "field_longitude": ["145.356638"], + "field_longitude_value": ["145.356638"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3763"], + "field_project_code": ["01-2188"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["20 Mcmahons Rd"], + "field_suburb": ["Kinglake"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27777], + "status": [true], + "title": ["Kinglake Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["4686d648-e4b3-4726-a62a-9aede5bb187a"] + }, + "sort": ["Kinglake Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23143:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kinglake-ranges-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-09T14:17:09+11:00"], + "field_about_project_processed": [ + "We upgraded the play spaces to make them more functional for children of all abilities and ages." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Building Blocks Inclusion Grant, $200,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kinglake Ranges Children's Centre" + ], + "field_latitude": ["-37.50455626"], + "field_latitude_longitude_value": ["-37.50455626,145.3154689"], + "field_latitude_value": ["-37.50455626"], + "field_longitude": ["145.3154689"], + "field_longitude_value": ["145.3154689"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3757"], + "field_project_code": ["15-1442"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Building and Playgrounds" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["69 Extons Rd"], + "field_suburb": ["Kinglake Central"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23143], + "status": [true], + "title": ["Kinglake Ranges Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d2315d64-2b99-4389-8d30-5a1a8a0032da"] + }, + "sort": ["Kinglake Ranges Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20177:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kinglake-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We helped the school to refurbish the student toilets, to improve amenity, cleanliness and hygiene.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $297,801", + "In the 2020 Minor Capital Works Fund the school was allocated $62,120." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kinglake West Primary School." + ], + "field_latitude": ["-37.481303", "-37.4809908"], + "field_latitude_longitude_value": ["-37.481303,145.259597"], + "field_latitude_value": ["-37.481303"], + "field_longitude": ["145.259597", "145.2577293"], + "field_longitude_value": ["145.259597"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3757"], + "field_project_code": ["D1-01-3255", "01-3255"], + "field_project_title": [ + "Inclusive Schools Fund - Round 9", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2021"], + "field_start_date": ["Q4 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["1041-1061 Whittlesea-Kinglake Rd"], + "field_suburb": ["Kinglake West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20177], + "status": [true], + "title": ["Kinglake West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f03dc5a1-4be8-4ce1-96d8-c895ba829cc7"] + }, + "sort": ["Kinglake West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36733:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/kings-park-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Kings Park Primary School in St Albans.The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.The centre may also include other spaces for community use.Between 2030\u20132032, Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.Subscribe to our mailing list for updates.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Kings Park Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-37.733151"], + "field_latitude_longitude_value": ["-37.733151,144.767544"], + "field_latitude_value": ["-37.733151"], + "field_longitude": ["144.767544"], + "field_longitude_value": ["144.767544"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["15-KPPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["128b Gillespie Road"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36733], + "status": [true], + "title": [ + "Kings Park Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["59341827-9d77-45bf-ab88-e1a652562b79"] + }, + "sort": [ + "Kings Park Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20490:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kingsley-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Block A including the modernisation of four classrooms and other internal refurbishments, ensuring that students learn in an environment designed for delivering modern education.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $780,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kingsley Park Primary School." + ], + "field_latitude": ["-38.172573"], + "field_latitude_longitude_value": ["-38.172573,145.152817"], + "field_latitude_value": ["-38.172573"], + "field_longitude": ["145.152817"], + "field_longitude_value": ["145.152817"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["01-5135"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Franciscan Av"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20490], + "status": [true], + "title": ["Kingsley Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b705a025-6925-4850-9d0d-b87d82f7daa6"] + }, + "sort": ["Kingsley Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24996:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kingston-heath-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade Learning Centres 2 and 3 and build a new oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $5.99 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kingston Heath Primary School" + ], + "field_latitude": ["-37.962778"], + "field_latitude_longitude_value": ["-37.962778,145.07907"], + "field_latitude_value": ["-37.962778"], + "field_longitude": ["145.07907"], + "field_longitude_value": ["145.07907"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["01-5101"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["25 Farm Road"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24996], + "status": [true], + "title": ["Kingston Heath Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["685f436c-0131-4f98-a5c3-85f389808ef2"] + }, + "sort": ["Kingston Heath Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28666:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kingsville-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading this kindergarten. We will paint the building inside and out and replace damaged timber verandah posts. We will also extend the office, upgrade the maternal and child health consulting and waiting rooms and refurbish the staff kitchen." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $375,412.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kingsville Kindergarten." + ], + "field_latitude": ["-37.80381528"], + "field_latitude_longitude_value": ["-37.80381528,144.8712526"], + "field_latitude_value": ["-37.80381528"], + "field_longitude": ["144.8712526"], + "field_longitude_value": ["144.8712526"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3012"], + "field_project_code": ["15-552"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["35 Roberts St"], + "field_suburb": ["West Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28666], + "status": [true], + "title": ["Kingsville Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["12f1ed66-1fba-4528-8543-d2c596d8a8ee"] + }, + "sort": ["Kingsville Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21267:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kingswood-college-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are delivering a new early learning centre to Box Hill South. The purpose-built facility will provide kindergarten, long day care services and play groups to the local community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $1.1 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kingswood College Early Learning Centre." + ], + "field_latitude": ["-37.836772918701172"], + "field_latitude_longitude_value": [ + "-37.836772918701172,145.12322998046875" + ], + "field_latitude_value": ["-37.836772918701172"], + "field_longitude": ["145.12322998046875"], + "field_longitude_value": ["145.12322998046875"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3128"], + "field_project_code": ["15-4181"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["355 Station St"], + "field_suburb": ["Box Hill South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21267], + "status": [true], + "title": ["Kingswood College Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b673df61-49d8-46bf-a553-a18f570277d2"] + }, + "sort": ["Kingswood College Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20481:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kingswood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most.", + "\u200b\u200b\u200b\u200bWe installed an Indigenous flag pole.\u200b\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $694,000 in planning funding. In the 2020\u201321 State Budget, the school received $6.249 million. In 2022, the school was allocated $1.293 million.", + "In the 2015-16 State Budget, $5,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kingswood Primary School" + ], + "field_latitude": ["-37.975063323974609", "-37.9829999"], + "field_latitude_longitude_value": [ + "-37.975063323974609,145.12762451171875" + ], + "field_latitude_value": ["-37.975063323974609"], + "field_longitude": ["145.12762451171875", "145.12393"], + "field_longitude_value": ["145.12762451171875"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3172"], + "field_project_code": ["D1-01-5106", "01-5106"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["1-25 Plaza Cr"], + "field_suburb": ["Dingley Village"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20481], + "status": [true], + "title": ["Kingswood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f1b4c013-a975-49ce-8b27-7c8bbc8b3492"] + }, + "sort": ["Kingswood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21458:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kirrip-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build a new integrated children's centre at Wollert\u00a0Primary School. The Kirrip Community Centre (formerly known as\u00a0Wollert East Community Centre) has 3 kindergarten rooms and outdoor play space, as well as community and allied health services facilities, and a community hall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $2,750,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kirrip Community Centre." + ], + "field_latitude": ["-37.6116242"], + "field_latitude_longitude_value": ["-37.6116242,145.0278743"], + "field_latitude_value": ["-37.6116242"], + "field_longitude": ["145.0278743"], + "field_longitude_value": ["145.0278743"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["ELC-WE"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Integrated Children's Centre" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["135 De Rossi Blvd"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21458], + "status": [true], + "title": ["Kirrip Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68f3c9b8-ece3-45ea-bf4b-c4014765676a"] + }, + "sort": ["Kirrip Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20510:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kismet-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and resurfaced the school oval with synthetic turf.", + "We created\u00a0new spaces to support\u00a0the school's focus on performing arts, as well as improved accessibility in the grounds, enhanced\u00a0the main\u00a0entrance,\u00a0refurbished\u00a0the\u00a0administration area,\u00a0and undertook maintenance\u00a0of the\u00a0physical education and general teaching facilities.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $463,125", + "In the 2016-17 State Budget, $700,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kismet Park Primary School" + ], + "field_latitude": ["-37.5663928", "-37.56641"], + "field_latitude_longitude_value": ["-37.5663928,144.7282503"], + "field_latitude_value": ["-37.5663928"], + "field_longitude": ["144.7282503", "144.72826"], + "field_longitude_value": ["144.7282503"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["D1-01-5180", "01-5180"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Mcewen Drive"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20510], + "status": [true], + "title": ["Kismet Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3ba75319-6e7b-4f73-99ac-b3b4501093ef"] + }, + "sort": ["Kismet Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20612:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/knox-central-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a sensory and community garden that includes\u00a0a calm area for reflection, a creative zone with a range of tactile surfaces, and a high energy zone with accessible play equipment. The garden includes\u00a0plants, seating and pathways made from a variety of materials.", + "We helped the\u00a0school upgrade street-front fencing to improve security and accessibility." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $132,900 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $67,165." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Knox Central Primary School" + ], + "field_latitude": ["-37.86116", "-37.8610665"], + "field_latitude_longitude_value": ["-37.86116,145.254975"], + "field_latitude_value": ["-37.86116"], + "field_longitude": ["145.254975", "145.2549595"], + "field_longitude_value": ["145.254975"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3155"], + "field_project_code": ["01-5429", "D1-01-5429"], + "field_project_title": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2019", "Q3 2021"], + "field_start_date": ["Q4 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["39 Darwin Rd"], + "field_suburb": ["Boronia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20612], + "status": [true], + "title": ["Knox Central Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6c1e282e-3881-42ee-b946-be7ea4190f74"] + }, + "sort": ["Knox Central Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20535:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/knox-gardens-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed roof works. This included replacing and repairing the gutters.", + "We built an inclusive playground, including new play equipment and rubber soft fall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $138,000.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Knox Gardens Primary School." + ], + "field_latitude": ["-37.882282", "-37.8819158"], + "field_latitude_longitude_value": ["-37.882282,145.229582"], + "field_latitude_value": ["-37.882282"], + "field_longitude": ["145.229582", "145.2295706"], + "field_longitude_value": ["145.229582"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3152"], + "field_project_code": ["D1-01-5234", "01-5234"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q1 2023", "Q1 2023"], + "field_start_date": ["Q4 2021", "Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["80 Argyle Way"], + "field_suburb": ["Wantirna South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20535], + "status": [true], + "title": ["Knox Gardens Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f02ffd2f-b0ce-45a9-8d4c-a428a4d5264e"] + }, + "sort": ["Knox Gardens Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28157:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kolbe-catholic-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T14:19:21+11:00"], + "field_about_project_processed": [ + "We are helping the school build a Science, Technology, Engineering and Mathematics facility with 14 general learning areas.", + "We are helping build the first stage of a secondary school campus including general and specialist learning areas, administration space and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million.", + "Under the 2023\u201324 capital funding program for non-government schools, the school received $5 million" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kolbe Catholic College." + ], + "field_latitude": ["-37.61447071", "-37.615321"], + "field_latitude_longitude_value": ["-37.61447071,144.9089078"], + "field_latitude_value": ["-37.61447071"], + "field_longitude": ["144.9089078", "144.909467"], + "field_longitude_value": ["144.9089078"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3059"], + "field_project_code": ["02-2051", "D1-02-2051"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323", + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["Q4 2024", "TBC"], + "field_start_date": ["Q4 2022", "Q2 2023"], + "field_status_name": ["Design", "Planning"], + "field_street_address": ["39 Lysterfield Dr"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28157], + "status": [true], + "title": ["Kolbe Catholic College"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["78e59f76-a811-4154-91ec-2a1ae95137ac"] + }, + "sort": ["Kolbe Catholic College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21449:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/konewark-integrated-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Cardinia Shire Council to build an integrated children's centre at Rix Road, Officer South. Integrated children's centres are key hubs for the community, bringing together a range of services where professionals work together to deliver education, care, health and support services to children and their families. They can provide a focal point for new communities in growth areas, but are equally valuable in improving the accessibility, quality and integration of early childhood services in established metropolitan and regional areas. This centre will deliver three and four-year-old kindergarten, maternal and child health services, family services, supported playgroups, counselling services and community meeting spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $2,000,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Konewark Integrated Children\u2019s Centre." + ], + "field_latitude": ["-38.069145"], + "field_latitude_longitude_value": ["-38.069145,145.407541"], + "field_latitude_value": ["-38.069145"], + "field_longitude": ["145.407541"], + "field_longitude_value": ["145.407541"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["ELC-RR"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Campenalla Av"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21449], + "status": [true], + "title": ["Konewark Integrated Children\u2019s Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9c142b98-2327-4229-98db-dbed1c95a860"] + }, + "sort": ["Konewark Integrated Children’s Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20184:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kongwak-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0facilities, ensuring that students learn in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $100,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kongwak Primary School." + ], + "field_latitude": ["-38.60212"], + "field_latitude_longitude_value": ["-38.60212,145.59726"], + "field_latitude_value": ["-38.60212"], + "field_longitude": ["145.59726"], + "field_longitude_value": ["145.59726"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3951"], + "field_project_code": ["01-3323"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["1445 Wonthaggi Korumburra Rd"], + "field_suburb": ["Kongwak"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20184], + "status": [true], + "title": ["Kongwak Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7244de0c-f5f7-4390-a457-fb04368111a4"] + }, + "sort": ["Kongwak Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20118:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/koo-wee-rup-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade Koo Wee Rup Primary School by building a competition-grade gymnasium.", + "We transformed the school's tired old classrooms, giving students and staff the modern learning environments they need to achieve their best.", + "We built an outdoor learning space with three zones, allowing students to develop their motor skills, engage in individually-tailored play\u00a0and reflect in a calm area.The space\u00a0includes:\u00a0\u200ba 'Zen Zone' \u2013\u00a0a ramp-accessible gazebo space\u00a0that flows to an outdoor seating area with an oversized chess board and speakers to provide calming musica\u00a0'High Energy Zone' \u2013\u00a0equipped for repetitive force movements (including large scale\u00a0musical equipment, and push/pull force equipment such as\u00a0hand water pumps)a\u00a0'Creative and Sensory Zone' \u2013\u00a0featuring a range of tactile surfaces (sand, large rocks, pebbles, logs, gravel, mulch) and a variety of sensory plants." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $6.872 million.", + "In the 2019\u201320 State Budget, the school received $250,000. In 2020, the school received $2.25 million.", + "In 2017, the school received $174,700 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Koo Wee Rup Primary School" + ], + "field_latitude": ["-38.1913612501047", "-38.19474", "-38.19474"], + "field_latitude_longitude_value": [ + "-38.1913612501047,145.500760250137" + ], + "field_latitude_value": ["-38.1913612501047"], + "field_longitude": ["145.500760250137", "145.49248", "145.49248"], + "field_longitude_value": ["145.500760250137"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Koo Wee Rup Primary School." + ], + "field_postcode": ["3981"], + "field_project_code": ["D2-01-2629", "D1-01-2629", "01-2629"], + "field_project_title": [ + "Upgrade and Modernisation - Competition-Grade Gymnasium", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2024", "Q4 2022", "Q3 2018"], + "field_start_date": ["Q2 2021", "Q2 2019", "Q1 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["Moody St"], + "field_suburb": ["Koo Wee Rup"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20118], + "status": [true], + "title": ["Koo Wee Rup Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7172f2c4-f820-499e-8bff-84256b1ff9ae"] + }, + "sort": ["Koo Wee Rup Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35150:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/koo-wee-rup-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-26T15:51:21+10:00"], + "field_about_project_processed": [ + "We are building a 2-room modular kindergarten at Koo Wee Rup Primary School. It will provide 66 kindergarten places for the local community. The kindergarten will include an outdoor play space, and one maternal and child health consulting room.EnrolmentKU Children\u2019s Services has been appointed as the provider for Koo Wee Rup Primary School Kindergarten (interim name).To enrol, you can contact KU Children\u2019s Services at (03) 9999 3331 or through their website.If you have already registered your details with Cardinia Shire council, those details will now be passed on to KU Children\u2019s Services for processing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years and was approved in Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Koo Wee Rup Primary School Kindergarten (interim name)." + ], + "field_latitude": ["-38.19480685"], + "field_latitude_longitude_value": ["-38.19480685,145.492716"], + "field_latitude_value": ["-38.19480685"], + "field_longitude": ["145.492716"], + "field_longitude_value": ["145.492716"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3981"], + "field_project_code": ["15-KWRPSK"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["Moody Street"], + "field_suburb": ["Koo Wee Rup"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35150], + "status": [true], + "title": ["Koo Wee Rup Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e7eeb39d-b235-4e77-8104-06b827572842"] + }, + "sort": ["Koo Wee Rup Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20808:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/koo-wee-rup-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are constructing a basketball court and a play/fitness area.", + "We are refurbishing the student toilets on the top floor of Block A and adjacent to the gym to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We upgraded\u00a0the sick bay, junior building, senior building and the\u00a0Wellbeing Centre. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We upgraded sporting facilities at the school to create a community sporting precinct for students, local sporting clubs and the wider community. Works included upgrading the oval and hockey pitch, and constructing a new pavilion. Facilities The oval was reshaped, with sub-surface works to improve the oval's performance, and the hockey pitch surface was upgraded. The pavilion has change rooms, amenities and a canteen. Students will be able to use the facilities in school hours for PE classes and as a break-out space. Out of school hours and on weekends, the facilities will provide the community and local sporting clubs with new opportunities to participate in sport, addressing growing demand in the area. This will be a safe, high quality resource for the entire Koo Wee Rup community.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $463,125.", + "In the 2022\u201323 State Budget the project received $498,878 from the Minor Capital Works Fund.", + "In the 2018\u201319 State Budget $850,000 was allocated to the school.", + "In 2017\u201318, the school received $1.6 million in Shared Facilities funding." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Koo Wee Rup Secondary College." + ], + "field_latitude": [ + "-38.209322350229", + "-38.197091", + "-38.196754", + "-38.20112" + ], + "field_latitude_longitude_value": [ + "-38.209322350229,145.471567450484" + ], + "field_latitude_value": ["-38.209322350229"], + "field_longitude": [ + "145.471567450484", + "145.495779", + "145.495972", + "145.48648" + ], + "field_longitude_value": ["145.471567450484"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3981"], + "field_project_code": [ + "D2-01-7955", + "D3-01-7955", + "D1-01-7955", + "01-7955" + ], + "field_project_title": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund \u2013 2022\u201323 State Budget", + "Upgrade and Modernisation", + "Shared Facilities Fund" + ], + "field_q_complete": ["Q1 2024", "Q4 2023", "Q2 2020", "Q4 2021"], + "field_start_date": ["Q4 2020", "Q2 2022", "Q2 2018", "Q1 2018"], + "field_status_name": [ + "Construction", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["Rossiter Rd"], + "field_suburb": ["Koo Wee Rup"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20808], + "status": [true], + "title": ["Koo Wee Rup Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["252a42b5-546a-4053-a6a1-46ca07d4e037"] + }, + "sort": ["Koo Wee Rup Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21455:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Koomail-Tardy-Community-Centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This new integrated children's centre gives the Truganina community\u00a0a high-quality learning environment, delivering kindergarten for\u00a03 and 4-year-olds. The centre is located next to\u00a0Garrang Wilam Primary School\u00a0(pronounced\u00a0ga-rung wil-em)." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $1,715,000 was allocated to this project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Koomail Tardy Community Centre." + ], + "field_latitude": ["-37.82900491680727"], + "field_latitude_longitude_value": [ + "-37.82900491680727,144.72401823897238" + ], + "field_latitude_value": ["-37.82900491680727"], + "field_longitude": ["144.72401823897238"], + "field_longitude_value": ["144.72401823897238"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["ELC-TSEIFC"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["117 Alcock Rd"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21455], + "status": [true], + "title": ["Koomail Tardy Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["069ac4be-935e-4580-bc49-5e751e109cfd"] + }, + "sort": ["Koomail Tardy Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33251:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/koondrook-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-06-07T16:07:09+10:00"], + "field_about_project_processed": [ + "We expanded and improved this kindergarten with a new modular building. The new purpose- built kindergarten building provides 33 approved kindergarten places and allowed us to return an existing classroom to the primary school. The new building gives children better spaces to play and learn." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received funding from the $1.68 billion committed to Three Year Old Kindergarten in the 2018-19 budget. Funding was allocated in Round 2B of the 2021-22 Building Blocks Grants Capacity Building stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Koondrook Preschool" + ], + "field_latitude": ["-35.63532"], + "field_latitude_longitude_value": ["-35.63532,144.12939"], + "field_latitude_value": ["-35.63532"], + "field_longitude": ["144.12939"], + "field_longitude_value": ["144.12939"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3580"], + "field_project_code": ["15-KP"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Punt Road"], + "field_suburb": ["Koondrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33251], + "status": [true], + "title": ["Koondrook Preschool"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["d675a9b0-2c41-45d1-9ae1-46aad272b7f2"] + }, + "sort": ["Koondrook Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20807:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/koonung-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will continue to upgrade the school to give students better learning opportunities. We will be delivering the next stage of the school\u2019s masterplan by extending the new 2-storey Year 7\u20139 and administration building.", + "We are refurbishing the student toilets in the main classroom wing to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We built an indoor inclusive learning space, including upgraded environment and sensory space.", + "We demolished the old multi-purpose block and built a new classroom wing\u00a0to deliver more modern facilities for students and staff." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $8.9 million", + "In the 2022\u201323 State Budget the project received $499,127 from the Minor Capital Works Fund.", + "In Round 6 of the Inclusive Schools Fund, this project received $99,000.", + "In the 2019\u201320 State Budget, the school received $6.05 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Koonung Secondary College." + ], + "field_latitude": ["-37.80219", "-37.7987909500242", "-37.80215"], + "field_latitude_longitude_value": ["-37.80219,145.117561"], + "field_latitude_value": ["-37.80219"], + "field_longitude": ["145.117561", "145.118328000456", "145.11656"], + "field_longitude_value": ["145.117561"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3129"], + "field_project_code": [ + "D3-01-7954", + "D2-01-7954", + "D1-01-7954", + "01-7954" + ], + "field_project_title": [ + "Upgrade and Modernisation \u2013 Extension", + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2026", "Q4 2023", "Q3 2023", "Q2 2022"], + "field_start_date": ["Q2 2023", "Q2 2022", "Q2 2021", "Q2 2019"], + "field_status_name": [ + "Design", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["615 Elgar Rd"], + "field_suburb": ["Mont Albert North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20807], + "status": [true], + "title": ["Koonung Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c52aaa9d-2410-4718-b460-83d6713e1b76"] + }, + "sort": ["Koonung Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36771:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/koroit-and-district-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $247,863" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Koroit and District Primary School" + ], + "field_latitude": ["-38.292441"], + "field_latitude_longitude_value": ["-38.292441,142.368702"], + "field_latitude_value": ["-38.292441"], + "field_longitude": ["142.368702"], + "field_longitude_value": ["142.368702"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3282"], + "field_project_code": ["01-618"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["91 Commercial Road"], + "field_suburb": ["Koroit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36771], + "status": [true], + "title": ["Koroit and District Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d0910661-a736-47b3-916f-16bcb8c03121"] + }, + "sort": ["Koroit and District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20162:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/korumburra-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to replace boundary fencing to improve security and student safety." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $86,165" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Korumburra Primary School" + ], + "field_latitude": ["-38.4349207"], + "field_latitude_longitude_value": ["-38.4349207,145.825385"], + "field_latitude_value": ["-38.4349207"], + "field_longitude": ["145.825385"], + "field_longitude_value": ["145.825385"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the\u00a0 kindergarten we're building at Korumburra Primary School" + ], + "field_postcode": ["3950"], + "field_project_code": ["01-3077"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["6 - 16 Mine Road"], + "field_suburb": ["Korumburra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20162], + "status": [true], + "title": ["Korumburra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b0fc0cef-1ffc-4caf-a805-248f717a59e1"] + }, + "sort": ["Korumburra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31136:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/karmai-community-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-10T16:46:53+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new kindergarten at Korumburra Primary School.It will have 2 classrooms as well as outdoor learning areas and play spaces. The centre will provide an extra 66 licensed kindergarten places in the local area and allow the space housing the temporary four-year-old kindergarten program to be returned to the primary school in 2024.Having the kindergarten and school together may help local children make a smoother transition into primary school. It can also make drop-off time simpler for some families.EnrolmentKarmai has been appointed as the provider for Korumburra Primary School Kindergarten (interim name).\u00a0To enrol, you can contact Karmai\u00a0at (03) 5655 2121 or through their website." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $371 million committed in the 2019-20 State Budget to support the rollout of Three-Year-Old-Kindergarten" + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Korumburra Primary School Kindergarten (interim name)." + ], + "field_latitude": ["-38.435133"], + "field_latitude_longitude_value": ["-38.435133,145.825636"], + "field_latitude_value": ["-38.435133"], + "field_longitude": ["145.825636"], + "field_longitude_value": ["145.825636"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3950"], + "field_project_code": ["01-3077-ELC"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["6-16 Mine Road"], + "field_suburb": ["Korumburra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31136], + "status": [true], + "title": ["Korumburra Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3c43da1b-2e23-47f2-9708-ba6145811a46"] + }, + "sort": ["Korumburra Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20809:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/korumburra-secondary-college"], + "changed": ["2023-10-31T15:04:19+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school, including the main classroom wing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $12.836 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Korumburra Secondary College" + ], + "field_latitude": ["-38.438743591308594"], + "field_latitude_longitude_value": [ + "-38.438743591308594,145.82344055175781" + ], + "field_latitude_value": ["-38.438743591308594"], + "field_longitude": ["145.82344055175781"], + "field_longitude_value": ["145.82344055175781"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3950"], + "field_project_code": ["01-7960"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["125 Jumbunna Road"], + "field_suburb": ["Korumburra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20809], + "status": [true], + "title": ["Korumburra Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["10e6b012-3aba-4748-b102-a1971d9a48d3"] + }, + "sort": ["Korumburra Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21259:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kurboroo-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bMaroondah City Council\u00a0upgraded the kindergarten to expand its capacity, enabling it to meet growing demand. Facilities The building has been\u00a0upgraded to allow children to play outside in bad weather, and creating a facility that is accessible for children of all abilities. The playroom, children\u2019s and adult bathrooms and entryway have been\u00a0made accessible. With the new open design, staff are\u00a0able to easily supervise children in the outdoor area, children\u2019s bathroom and internal playroom.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $200,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kurboroo Kindergarten." + ], + "field_latitude": ["-37.77344"], + "field_latitude_longitude_value": ["-37.77344,145.25539"], + "field_latitude_value": ["-37.77344"], + "field_longitude": ["145.25539"], + "field_longitude_value": ["145.25539"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["15-392"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["75 Bemboka Rd"], + "field_suburb": ["Warranwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21259], + "status": [true], + "title": ["Kurboroo Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d185edfd-5b0d-49df-8000-d8fb7a143b6d"] + }, + "sort": ["Kurboroo Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21453:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kurmboon-child-and-family-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build an integrated children's centre\u00a0at Orchard Park\u00a0Primary School. The centre offers high-quality kindergarten\u00a0learning environments and family health services, creating a one-stop shop of support for local families\u00a0from birth through to the end of primary school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kurmboon Child and Family Centre" + ], + "field_latitude": ["-38.05525471880533"], + "field_latitude_longitude_value": [ + "-38.05525471880533,145.39726231349448" + ], + "field_latitude_value": ["-38.05525471880533"], + "field_longitude": ["145.39726231349448"], + "field_longitude_value": ["145.39726231349448"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["ELC-TICFC"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["297 Pink Hill Blvd"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21453], + "status": [true], + "title": ["Kurmboon Child and Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4a1d231b-1cea-416d-9c53-8e8fcc200b78"] + }, + "sort": ["Kurmboon Child and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24962:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Kurmile-Primary-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Officer. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home.It will be able to enrol up to 650 students when the school is complete.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school is open for enrolments for students in Prep to Grade 6. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au\u00a0You can learn more about the school through their website.For all enrolment queries, please email kurmile.ps@education.vic.gov.au" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Kurmile Primary School." + ], + "field_latitude": ["-38.059566"], + "field_latitude_longitude_value": ["-38.059566,145.396195"], + "field_latitude_value": ["-38.059566"], + "field_longitude": ["145.396195"], + "field_longitude_value": ["145.396195"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/OfficerBruntRoadPS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Kurmile Primary\u00a0School was chosen as this new school\u2019s name following a two-week community consultation. Kurmile (pronounced kur-mill-ee) is a Bunurong word meaning white cockatoo. We used\u00a0Officer Brunt Road Primary School\u00a0as an interim name while the school was being planned and designed.", + "Sharon Mitchell has been appointed as principal of the new school. Sharon began her career in primary schools in South Gippsland. Most recently she was principal of Lang Lang Primary School. Sharon is honoured to be the foundation principal of Kurmile Primary School. She\u2019s excited to collaborate with the school community to create a safe and inclusive learning environment where all children can learn and achieve.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 3 learning neighbourhoods a community hub with indoor multi-use court, canteen and arts/music spaces a hard court a carpark. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the\u00a0Bunurong Land Council Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_paragraph_body": [ + "Officer Brunt Road Primary School (interim name) - Introducing Sharon Mitchell \u00a0", + "Officer Brunt Road Primary School (interim name) - new school" + ], + "field_postcode": ["3809"], + "field_project_code": ["01-5602"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["40 Fairweather Pde"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24962], + "status": [true], + "title": ["Kurmile Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["32b0af3c-8a8d-4eb6-8f26-b3064d96b8e8"] + }, + "sort": ["Kurmile Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20890:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kurnai-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed stage 3 of the school's master plan, which included refurbishing the administration block and landscaping.", + "We delivered a new library at Kurnai College.\u00a0", + "We\u00a0delivered\u00a0a\u00a0new science wing, performing arts wing, and space for\u00a0years 9-10. \u200b\u200b", + "Kurnai College redeveloped its science wing. This included\u00a0adding a\u00a0green wall to the facility, integrating\u00a0foliage into learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.778 million.", + "In the 2018\u201319 State Budget, the school was allocated $1.507 million.", + "Over the 2016\u201317 and 2017\u201318 State Budgets, $8.656 million was allocated to the school.", + "In 2018, $145,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kurnai College" + ], + "field_latitude": ["-38.234760284423828", "-38.226452"], + "field_latitude_longitude_value": [ + "-38.234760284423828,146.39498901367188" + ], + "field_latitude_value": ["-38.234760284423828"], + "field_longitude": ["146.39498901367188", "146.432938"], + "field_longitude_value": ["146.39498901367188"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3840"], + "field_project_code": [ + "D3-01-8716", + "D2-01-8716", + "01-8716", + "D1-01-8716" + ], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2023", "Q4 2020", "Q1 2020", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["Bridle Rd"], + "field_suburb": ["Morwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20890], + "status": [true], + "title": ["Kurnai College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c10c69b4-efc0-4c91-b5bd-de02bd161bcb"] + }, + "sort": ["Kurnai College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20697:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kurrun-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in the Shire of Cardinia. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Gavan Hughes was appointed as the first principal of the school. The school was previously known by its interim name, Officer Rix Road Primary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 and 8 July 2022. Kurrun (pronounced kur-run) is a Bunurong word meaning wattle. Facilities The school has the following facilities: an administration building with a library, staff offices and amenities as well as specialist teaching areas for science and food technology 2 learning neighbourhood buildings, incorporating general purpose classrooms, flexible and collaborative teaching spaces a community hub building with a competition-grade gymnasium, canteen, music and drama space 2 outdoor hardcourts a sports field. Kindergarten We partnered with Cardinia Shire Council to build Konewark Integrated Children\u2019s Centre. Previously known as Officer South/Rix Road Integrated Children's and Family Centre. Every new Victorian primary school will have a kindergarten on-site or next door. Co-locating kindergartens at primary schools provides many benefits for Victorian families, including making: kindergarten programs easier to access drop-off time simpler and more convenient the transition from kindergarten to school smoother for children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Kurrun Primary School." + ], + "field_latitude": ["-38.070273"], + "field_latitude_longitude_value": ["-38.070273,145.404917"], + "field_latitude_value": ["-38.070273"], + "field_longitude": ["145.404917"], + "field_longitude_value": ["145.404917"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/KurrunPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["01-5594"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["22 Allsburg Av"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20697], + "status": [true], + "title": ["Kurrun Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["80d8d93e-0c5e-4056-93df-73c44f8c8109"] + }, + "sort": ["Kurrun Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20546:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kurunjang-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We updated and refurbished classrooms and facilities in poor condition to improve standards across the school.\u00a0 The works\u00a0targeted facilities that were most in need, ensuring the school has the learning facilities it requires to deliver modern education.\u200b", + "The City of Melton built\u00a0a community hub next to Kurujang Primary School. The hub\u00a0hosts a range of activities that support community strengthening and development.\u00a0\u200b The Kurujang Community Hub\u00a0features community rooms for a variety of active and passive learning programs. It has a meeting room for consultations with service providers,\u00a0where school welfare officers can meet families away from formal school facilities.\u00a0 There is also a kitchen space for small cooking demonstrations and classes, as well as a larger teaching kitchen, dining area and edible garden based on the Stephanie Alexander Kitchen Garden program. The school can use the hub for curriculum learning, as well as other activities outside school hours. In the 2016\u201317 State Budget, the Victorian Government invested $50 million into the Shared Facilities Fund. The program funds schools, councils and other institutions to develop shared facilities such as early learning centres, sports facilities and community hubs.\u00a0 These co-located and shared facilities improve connections between school and community, build a sense of collective purpose and transform neighbourhoods.\u00a0", + "We helped the school construct a covered walkway." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.005 million was allocated to the school.", + "Through the Shared Facilities Fund, $2.35 million was allocated in 2016\u201317.", + "In the 2020 Minor Capital Works Fund the school was allocated $162,625." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kurunjang Primary School." + ], + "field_latitude": ["-37.6719", "-37.670342", "-37.6703418"], + "field_latitude_longitude_value": ["-37.6719,144.58509"], + "field_latitude_value": ["-37.6719"], + "field_longitude": ["144.58509", "144.586288", "144.5862876"], + "field_longitude_value": ["144.58509"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["01-5256", "D1-01-5256", "D2-01-5256"], + "field_project_title": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2018", "Q3 2019", "Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["37-45 Mowbray Cr"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20546], + "status": [true], + "title": ["Kurunjang Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6a5b77bc-34f2-4cfc-b7d6-cad34c14a8d2"] + }, + "sort": ["Kurunjang Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33020:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kurunjang-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Kurunjang Secondary College" + ], + "field_latitude": ["-37.672914"], + "field_latitude_longitude_value": ["-37.672914,144.585957"], + "field_latitude_value": ["-37.672914"], + "field_longitude": ["144.585957"], + "field_longitude_value": ["144.585957"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["01-8718"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Kurunjang Drive"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33020], + "status": [true], + "title": ["Kurunjang Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["90eba074-ab58-419d-9445-ed325b79544a"] + }, + "sort": ["Kurunjang Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21439:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kyabram-community-and-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Kyabram Community and Learning Centre extended\u00a0their indoor and outdoor spaces to increase\u00a0kindergarten places, as well as those for\u00a0long day care. Through these upgrades, they have been able to create an\u00a0inclusive environment that is accessible for all children and their families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kyabram Community and Learning Centre" + ], + "field_latitude": ["-36.31661"], + "field_latitude_longitude_value": ["-36.31661,145.04611"], + "field_latitude_value": ["-36.31661"], + "field_longitude": ["145.04611"], + "field_longitude_value": ["145.04611"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3620"], + "field_project_code": ["ELC-KCLC"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["21-25 Lake Road"], + "field_suburb": ["Kyabram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21439], + "status": [true], + "title": ["Kyabram Community and Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["91abd2ea-aa96-4180-81e1-b724db6a84d7"] + }, + "sort": ["Kyabram Community and Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20810:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kyabram-p-12-college"], + "changed": ["2023-11-02T15:55:40+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school.The project includes:the Ky Hub \u2013 a new administration and wellbeing building. It has a central break-out area, rooms for one-on-one meetings, and access to the outdoor courtyard and gardensthe Ky Collab area featuring a new library and staff loungea canteen to serve the entire schoola refurbished senior building" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $750,000 in planning funding. In the 2020\u201321 State Budget, the school received $6.75 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Kyabram P-12 College." + ], + "field_latitude": ["-36.3178999"], + "field_latitude_longitude_value": ["-36.3178999,145.0516026"], + "field_latitude_value": ["-36.3178999"], + "field_longitude": ["145.0516026"], + "field_longitude_value": ["145.0516026"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the\u00a0 kindergarten we're building at Kyabram P\u201312 College." + ], + "field_postcode": ["3620"], + "field_project_code": ["01-7965"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["57 Fischer St"], + "field_suburb": ["Kyabram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20810], + "status": [true], + "title": ["Kyabram P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68c44a98-5295-442c-a77f-21193b085b79"] + }, + "sort": ["Kyabram P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31135:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kyabram-p-12-college-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-10T16:46:53+11:00"], + "field_about_project_processed": [ + "We built a kindergarten at Kyabram P\u201312 College.It has 2 classrooms as well as outdoor learning areas and play spaces. The centre provides an extra 66 licensed kindergarten places in the local area.Having a kindergarten and school together may help local children make a smoother transition into primary school. It can also make drop-off time simpler for some families.EnrolmentShine Bright EYM has been announced as the provider for Kyabram P\u201312 College Kindergarten (interim name).\u00a0You can contact Shine Bright through email at info@shinebright.org.au or on 03 5443 1229." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $371 million committed in the 2019\u201320 State Budget to support the rollout of Three-Year-Old-Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Kyabram P-12 College Kindergarten (interim name)" + ], + "field_latitude": ["-36.31801014"], + "field_latitude_longitude_value": ["-36.31801014,145.0518588"], + "field_latitude_value": ["-36.31801014"], + "field_longitude": ["145.0518588"], + "field_longitude_value": ["145.0518588"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3620"], + "field_project_code": ["01-7965-ELC"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["57 Fischer Street"], + "field_suburb": ["Kyabram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31135], + "status": [true], + "title": ["Kyabram P-12 College Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["95648b18-04f3-49bc-b545-6a533f4b7fc3"] + }, + "sort": ["Kyabram P-12 College Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20811:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kyneton-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade the school. These latest works will include upgrading Block J\u00a0and building a new STEAM building.", + "\u200bWe have upgraded the school by repurposing numerous buildings.\u00a0We created a new Year 7 and 8 Learning Centre, with flexible learning environments, as well as\u00a0a vocational education and training hub. We have rebuilt Kyneton Primary School\u200b next door, to form an education precinct. \u200b Facilities We built the\u00a0Training and Innovation Hub, which\u00a0will provide innovative learning spaces, including hands-on workshops.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.991 million.", + "A total of $10.9 million was allocated to this project." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kyneton High School." + ], + "field_latitude": ["-37.223304748535156", "-37.251200"], + "field_latitude_longitude_value": [ + "-37.223304748535156,144.44779968261719" + ], + "field_latitude_value": ["-37.223304748535156"], + "field_longitude": ["144.44779968261719", "144.458100"], + "field_longitude_value": ["144.44779968261719"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3444"], + "field_project_code": ["D1-01-7970", "01-7970"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2023", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q4 2017"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["1-9 Epping St"], + "field_suburb": ["Kyneton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20811], + "status": [true], + "title": ["Kyneton High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5bea62a8-9561-498f-8cd4-3fa8d9c02347"] + }, + "sort": ["Kyneton High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21251:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kyneton-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built a\u00a0two-room kindergarten,\u00a0administration\u00a0facilities and outdoor play space at Kyneton Primary School. Having the kindergarten and school together may help local children make a smooth transition from pre-school and can also make drop-off time simpler for some families.\u00a0 This kindergarten opened in 2022." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 Budget, this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Kyneton Kindergarten" + ], + "field_latitude": ["-37.248604852453276"], + "field_latitude_longitude_value": [ + "-37.248604852453276,144.462675342268" + ], + "field_latitude_value": ["-37.248604852453276"], + "field_longitude": ["144.462675342268"], + "field_longitude_value": ["144.462675342268"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3444"], + "field_project_code": ["15-343"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["49A Edgecombe St"], + "field_suburb": ["Kyneton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21251], + "status": [true], + "title": ["Kyneton Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bd5d4035-ba8e-40b9-9bb3-14b0d6975b46"] + }, + "sort": ["Kyneton Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20191:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/kyneton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the school's oval with new turf and drainage. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "\u200bWe have rebuilt\u00a0Kyneton Primary School on a 3.5 hectare site close to\u00a0Kyneton Secondary College\u200b\u200b to form a local\u00a0education precinct.\u00a0\u200bThe precinct will bring together Kyneton's educational facilities with early years to VCE consolidated in one area.\u200b The new school is\u00a0comprised of three\u00a0buildings on the Edgecombe Street site.\u00a0It includes flexible classrooms,\u00a0specialist learning facilities for physical education, music, art and performing arts,\u00a0as well as outdoor learning areas.\u00a0 The school's design has been developed with the philosophy that every area, including outdoor facilities, are potential learning spaces.\u00a0\u200b\u200b The\u00a0school was also a\u00a0finalist for\u00a0the\u00a0award for the\u00a0Best Primary\u00a0School Project at the\u00a02018 Victorian School Design Awards\u200b.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $399,567 from the Minor Capital Works Fund.", + "In the 2015-16 State Budget, $8 million was allocated to the school. In the 2014-15 State Budget, $3.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Kyneton Primary School" + ], + "field_latitude": ["-37.248889", "-37.24947"], + "field_latitude_longitude_value": ["-37.248889,144.462694"], + "field_latitude_value": ["-37.248889"], + "field_longitude": ["144.462694", "144.4514299"], + "field_longitude_value": ["144.462694"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we built at Kyneton Primary School." + ], + "field_postcode": ["3444"], + "field_project_code": ["D1-01-343", "01-343"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2025", "Q1 2018"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["49-79 Edgecombe St"], + "field_suburb": ["Kyneton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20191], + "status": [true], + "title": ["Kyneton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["159aea13-d8ac-4f7c-9bc4-c80a3c9a896f"] + }, + "sort": ["Kyneton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23304:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/levnt-western-integrated-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We built an integrated learning centre. The centre has:two early learning roomsstaff officesamenitiesallied health suitescounsellor officesand consultation rooms.a multi-purpose area that includes outdoor landscaped play spaces.The large, multi-purpose area provides community meeting spaces for adult education programs. It also serves as a venue for playgroups and school holiday programs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $2,000,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at LEVNT Western Integrated Learning Centre" + ], + "field_latitude": ["-37.85612609317766"], + "field_latitude_longitude_value": [ + "-37.85612609317766,144.6666248294886" + ], + "field_latitude_value": ["-37.85612609317766"], + "field_longitude": ["144.6666248294886"], + "field_longitude_value": ["144.6666248294886"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-LWILC"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["570 Tarneit Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23304], + "status": [true], + "title": ["LEVNT Western Integrated Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f987a083-c448-4e2b-aa69-01f452cdf6ea"] + }, + "sort": ["LEVNT Western Integrated Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24967:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Laa-Yulta-Primary-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Mambourin. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 650 students when the school is complete.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school is open for enrolments for students in Prep to Grade 6. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au.\u00a0For enrolment queries, please email laa.yulta.ps@education.vic.gov.au or call the school during office hours (Monday to Friday, 9.00am to 4.00pm) on 0498 380 095" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Laa Yulta Primary School" + ], + "field_latitude": ["-37.884929"], + "field_latitude_longitude_value": ["-37.884929,144.59657"], + "field_latitude_value": ["-37.884929"], + "field_longitude": ["144.59657"], + "field_longitude_value": ["144.59657"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/BlackForestEast_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Laa Yulta Primary School was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Laa Yulta\u00a0(pronounced\u00a0 la yule-ta ) are\u00a0Wadawurrung words\u00a0meaning many stones. We\u00a0used\u00a0Black Forest East Primary School\u00a0as\u00a0an interim name while the school was being planned and designed.", + "Mark Zahra has been appointed as principal of the new school. Mark has been an educator for 20 years teaching across Melbourne, Geelong and in London. He has taken on several leadership roles throughout this time, most recently as principal of Moriac Primary School. Mark can't wait to be foundation principal of Laa Yulta Primary School . He is looking forward to creating a welcoming and inclusive environment for the community.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 3 learning neighbourhoods a community hub with indoor multi-use court, canteen and arts/music spaces hard courts a sports field a carpark a kindergarten. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Wadawurrung Traditional Owners Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding", + "We're building Laa Yulta Primary School Kindergarten at the school. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families." + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation", + "New kindergarten" + ], + "field_paragraph_body": [ + "Black Forest East Primary School (interim name) - Introducing Mark Zahra \u00a0" + ], + "field_postcode": ["3024"], + "field_project_code": ["01-5599"], + "field_project_title": ["New school"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["10 Elementary Rd"], + "field_suburb": ["Mambourin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24967], + "status": [true], + "title": ["Laa Yulta Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["71b319e5-82b8-4c96-b1c0-d9311c068abe"] + }, + "sort": ["Laa Yulta Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26560:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Laa-Yulta-Primary-School-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-08-01T15:04:53+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Laa Yulta Primary School.Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2024.We used Black Forest East Primary School Kindergarten as an interim name while the kindergarten was being planned, designed, and built.EnrolmentSparkways has been announced as the provider for Laa Yulta Primary School Kindergarten. For enrolments, please contact Wyndham City Council through their kindergarten registration webpage.If you require further assistance, please contact Wyndham City Council's Child and Family support on 1300 370 567." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Laa Yulta Primary School Kindergarten." + ], + "field_latitude": ["-37.8838541456725"], + "field_latitude_longitude_value": [ + "-37.8838541456725,144.5954684779117" + ], + "field_latitude_value": ["-37.8838541456725"], + "field_longitude": ["144.5954684779117"], + "field_longitude_value": ["144.5954684779117"], + "field_mappintype_name": ["Early childhood"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/BlackForestPSKindergarten_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3024"], + "field_project_code": ["15-BFEPSK"], + "field_project_title": ["Kindergarten on a school site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["20 Lecture Circuit"], + "field_suburb": ["Mambourin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26560], + "status": [true], + "title": ["Laa Yulta Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["98fe791b-a369-42be-814e-36082ba6ce03"] + }, + "sort": ["Laa Yulta Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25000:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/laburnum-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. This includes delivering a double storey learning building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $8.755 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Laburnum Primary School" + ], + "field_latitude": ["-37.827098"], + "field_latitude_longitude_value": ["-37.827098,145.139208"], + "field_latitude_value": ["-37.827098"], + "field_longitude": ["145.139208"], + "field_longitude_value": ["145.139208"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["01-4863"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Janet Street"], + "field_suburb": ["Blackburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25000], + "status": [true], + "title": ["Laburnum Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f3ecb9e3-de87-4291-b131-050f1c013c9a"] + }, + "sort": ["Laburnum Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21333:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lady-huntingfield-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the City of Melbourne rebuild\u00a0Lady Huntingfield Children\u2019s Centre.\u00a0 This will\u00a0expand\u00a0the kindergarten so it has\u00a0more places for local children and\u00a0develop\u00a0it into an\u00a0integrated centre that also offers\u00a0child health\u00a0and family services.\u00a0 \u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015-16 Children's Facilities Capital Program Major Grants $1.6 million has been allocated to the child care centre." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lady Huntingfield Childrens Centre" + ], + "field_latitude": ["-37.79873"], + "field_latitude_longitude_value": ["-37.79873,144.94528"], + "field_latitude_value": ["-37.79873"], + "field_longitude": ["144.94528"], + "field_longitude_value": ["144.94528"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3051"], + "field_project_code": ["15-831"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["87 Haines St"], + "field_suburb": ["North Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21333], + "status": [true], + "title": ["Lady Huntingfield Childrens Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["115cc8bc-4192-47cf-afff-f53297335b1b"] + }, + "sort": ["Lady Huntingfield Childrens Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20134:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/laharum-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised\u00a0facilities at the school,\u00a0including refurbishing\u00a0administration and \u200bgeneral teaching areas\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $472,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Laharum Primary School" + ], + "field_latitude": ["-36.94525"], + "field_latitude_longitude_value": ["-36.94525,142.32348"], + "field_latitude_value": ["-36.94525"], + "field_longitude": ["142.32348"], + "field_longitude_value": ["142.32348"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3401"], + "field_project_code": ["01-2805"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1574 Northern Grampians Road"], + "field_suburb": ["Laharum"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20134], + "status": [true], + "title": ["Laharum Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["24799754-bdd7-4263-846a-b997c1439391"] + }, + "sort": ["Laharum Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21204:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lake-boga-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bSwan Hill Rural City Council upgraded\u00a0Lake Boga Preschool,\u00a0increasing floor space\u00a0to allow higher\u00a0enrolments. The work also\u00a0renovated\u00a0wet areas and extended the existing toilets, kitchen and office space.\u00a0 \u00a0 \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-2018 Children's Facilities Capital Program $340,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lake Boga Preschool" + ], + "field_latitude": ["-35.464352"], + "field_latitude_longitude_value": ["-35.464352,143.632309"], + "field_latitude_value": ["-35.464352"], + "field_longitude": ["143.632309"], + "field_longitude_value": ["143.632309"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3584"], + "field_project_code": ["15-1258"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Lalbert Rd"], + "field_suburb": ["Lake Boga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21204], + "status": [true], + "title": ["Lake Boga Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a888051b-9fcb-41f1-a1a8-19783aef3a51"] + }, + "sort": ["Lake Boga Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20179:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lake-boga-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an\u00a0inclusive outdoor area with accessible play equipment, fencing, mulch and rubber surfacing.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lake Boga Primary School" + ], + "field_latitude": ["-35.464511"], + "field_latitude_longitude_value": ["-35.464511,143.63207"], + "field_latitude_value": ["-35.464511"], + "field_longitude": ["143.63207"], + "field_longitude_value": ["143.63207"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3584"], + "field_project_code": ["01-3278"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["8 Williams St"], + "field_suburb": ["Lake Boga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20179], + "status": [true], + "title": ["Lake Boga Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["094840eb-9de5-4a12-9ce6-a21f0fd7057c"] + }, + "sort": ["Lake Boga Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20880:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lake-bolac-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground. It includes new play equipment, shade sails, and soft fall surfacing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lake Bolac College" + ], + "field_latitude": ["-37.7203247"], + "field_latitude_longitude_value": ["-37.7203247,142.8376806"], + "field_latitude_value": ["-37.7203247"], + "field_longitude": ["142.8376806"], + "field_longitude_value": ["142.8376806"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3351"], + "field_project_code": ["01-854"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["90 Montgomery Street"], + "field_suburb": ["Lake Bolac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20880], + "status": [true], + "title": ["Lake Bolac College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d871ed1e-ec1f-4a1d-8d1a-8f45b8db2f20"] + }, + "sort": ["Lake Bolac College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28959:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lake-park-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We improved the yard. We repaired old equipment and upgraded outdoor play areas. These changes help support a range of natural and accessible play experiences for outdoor learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $61,525 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lake Park Kindergarten" + ], + "field_latitude": ["-37.73022064"], + "field_latitude_longitude_value": ["-37.73022064,144.9668214"], + "field_latitude_value": ["-37.73022064"], + "field_longitude": ["144.9668214"], + "field_longitude_value": ["144.9668214"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["15-303"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["20B Carr St"], + "field_suburb": ["Coburg North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28959], + "status": [true], + "title": ["Lake Park Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["da0fb8ea-7d97-4625-bdc0-b34a57333687"] + }, + "sort": ["Lake Park Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21205:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lakes-entrance-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bThe Lakes Entrance Preschool upgraded its facilities to create an accessible front entrance, meeting room, increased storage and staff office space.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-2018 Children's Facilities Capital Program $271,510 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lakes Entrance Preschool" + ], + "field_latitude": ["-37.8733999"], + "field_latitude_longitude_value": ["-37.8733999,148.00323"], + "field_latitude_value": ["-37.8733999"], + "field_longitude": ["148.00323"], + "field_longitude_value": ["148.00323"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3909"], + "field_project_code": ["15-1272"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["49A Coates Rd"], + "field_suburb": ["Lakes Entrance"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21205], + "status": [true], + "title": ["Lakes Entrance Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1fa766c1-fe8e-4389-834e-fd73680a1e08"] + }, + "sort": ["Lakes Entrance Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20123:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lakes-entrance-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are refurbishing the student toilets in Block A to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund, a program for small building projects that make a big difference in our schools.", + "We helped the school upgrade its playground with new inclusive play equipment, 'soft-fall' surfacing and shade sails." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2022\u201323 State Budget the project received $499,397 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $171,165." + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lakes Entrance Primary School" + ], + "field_latitude": ["-37.875976", "-37.8760245"], + "field_latitude_longitude_value": ["-37.875976,147.994237"], + "field_latitude_value": ["-37.875976"], + "field_longitude": ["147.994237", "147.994168"], + "field_longitude_value": ["147.994237"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Lakes Entrance Primary School." + ], + "field_postcode": ["3909"], + "field_project_code": ["D2-01-2672", "D1-01-2672", "01-2672"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund \u2013 2022\u201323 State Budget", + "Minor Capital Works Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q2 2024", + "Q4 2021" + ], + "field_start_date": ["Q2 2023", "Q2 2022", "Q4 2020"], + "field_status_name": ["Planning", "Construction", "Complete"], + "field_street_address": ["49 Myer St"], + "field_suburb": ["Lakes Entrance"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20123], + "status": [true], + "title": ["Lakes Entrance Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e5ae1a32-221e-4154-b13b-4eae2152372f"] + }, + "sort": ["Lakes Entrance Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35012:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/lakes-entrance-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-11-14T17:10:03+11:00"], + "created": ["2023-09-18T12:15:22+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Lakes Entrance Primary School. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2025.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Lakes Entance Primary School Kindergarten (interim name)" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3909"], + "field_project_code": ["15-LEPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_suburb": ["Lakes Entrance"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35012], + "status": [true], + "title": [ + "Lakes Entrance Primary School Kindergarten (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3ae7321b-47f2-4614-a4eb-6226c0dce9c5"] + }, + "sort": ["Lakes Entrance Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22300:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lakes-entrance-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:26+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including new play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lakes Entrance Secondary College" + ], + "field_latitude": ["-37.871343"], + "field_latitude_longitude_value": ["-37.871343,147.998412"], + "field_latitude_value": ["-37.871343"], + "field_longitude": ["147.998412"], + "field_longitude_value": ["147.998412"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3909"], + "field_project_code": ["01-8720"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["1-11 North Street"], + "field_suburb": ["Lakes Entrance"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22300], + "status": [true], + "title": ["Lakes Entrance Secondary College"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["9d5a54b3-454c-42ba-99dc-0efb87e16817"] + }, + "sort": ["Lakes Entrance Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21175:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lakeside-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped upgrade and modernise the school. Works included: building outdoor learning and play areas a new senior primary building and art, design and technology building extending a carpark.", + "We supported Lakeside College to\u00a0complete Stage 2 of the junior school building project.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,100,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lakeside College" + ], + "field_latitude": ["-38.0645413", "-38.06489"], + "field_latitude_longitude_value": ["-38.0645413,145.4557772"], + "field_latitude_value": ["-38.0645413"], + "field_longitude": ["145.4557772", "145.45602"], + "field_longitude_value": ["145.4557772"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["D1-03-2035", "03-2035"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q1 2023", "Q3 2017"], + "field_start_date": ["Q3 2021", "Q3 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2 Portobello Road"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21175], + "status": [true], + "title": ["Lakeside College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f94ddae1-ba9d-42f3-9798-b6d58a140fd6"] + }, + "sort": ["Lakeside College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20883:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lal-lal-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school resurface its oval and install an irrigation system." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $146,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lal Lal Primary School" + ], + "field_latitude": ["-37.676666"], + "field_latitude_longitude_value": ["-37.676666,144.010731"], + "field_latitude_value": ["-37.676666"], + "field_longitude": ["144.010731"], + "field_longitude_value": ["144.010731"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3352"], + "field_project_code": ["01-863"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["12 Vaughan St"], + "field_suburb": ["Lal Lal"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20883], + "status": [true], + "title": ["Lal Lal Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["40dc24ef-9313-4cd0-806c-e1359b5f303e"] + }, + "sort": ["Lal Lal Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20426:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lalor-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered\u00a0new architect-designed modular buildings to Lalor East Primary School. The new buildings\u00a0feature general purpose classrooms, toilets, administration and specialist spaces. Modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $8.9 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lalor East Primary School" + ], + "field_latitude": ["-37.67658"], + "field_latitude_longitude_value": ["-37.67658,145.035535"], + "field_latitude_value": ["-37.67658"], + "field_longitude": ["145.035535"], + "field_longitude_value": ["145.035535"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3074"], + "field_project_code": ["01-4976"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["39 Cleveland Street"], + "field_suburb": ["Thomastown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20426], + "status": [true], + "title": ["Lalor East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f761e672-17f4-477f-90eb-d0b93e282464"] + }, + "sort": ["Lalor East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20648:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lalor-gardens-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have upgraded and modernised facilities, including\u00a0a new gymnasium, music facility and canteen.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, this school shared in 12 million planning funding. The school received an additional $3.8 million in the 2018\u201319 State Budget." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lalor Gardens Primary School" + ], + "field_latitude": ["-37.664486"], + "field_latitude_longitude_value": ["-37.664486,145.005920"], + "field_latitude_value": ["-37.664486"], + "field_longitude": ["145.005920"], + "field_longitude_value": ["145.005920"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3075"], + "field_project_code": ["01-5532"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["134 Kingsway Drive"], + "field_suburb": ["Lalor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20648], + "status": [true], + "title": ["Lalor Gardens Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["05600877-2bdf-4f89-8eca-b8aeb1396c9d"] + }, + "sort": ["Lalor Gardens Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20450:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lalor-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe have\u00a0delivered\u00a0a new architect-designed modular building to Lalor North Primary School to replace Block B with new classrooms, an art and craft room and student toilets.\u00a0 \u00a0 \u00a0", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $3,092,000 was allocated to the school", + "In Round 9 of the Inclusive Schools Fund, the project received $281,608" + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lalor North Primary School" + ], + "field_latitude": ["-37.66422", "-37.66415051"], + "field_latitude_longitude_value": ["-37.66422,145.02836"], + "field_latitude_value": ["-37.66422"], + "field_longitude": ["145.02836", "145.0285352"], + "field_longitude_value": ["145.02836"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3075"], + "field_project_code": ["01-5035", "D1-01-5035"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q4 2018", "Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["2 Derna Crescent"], + "field_suburb": ["Lalor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20450], + "status": [true], + "title": ["Lalor North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["490279dc-7d1e-440f-8403-31abb1cdbdeb"] + }, + "sort": ["Lalor North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20326:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lalor-primary-school"], + "changed": ["2023-08-03T15:19:42+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including Block A.", + "We built\u00a0a nature play and active area. As well as being a space for students to mix and socialise, the school uses it for outdoor learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $12.923 million.", + "From the 2019\u201320 School Pride and Sports Fund the school received $200,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lalor Primary School." + ], + "field_latitude": ["-37.665985107421875", "-37.665985107421875"], + "field_latitude_longitude_value": [ + "-37.665985107421875,145.00874328613281" + ], + "field_latitude_value": ["-37.665985107421875"], + "field_longitude": ["145.00874328613281", "145.00874328613281"], + "field_longitude_value": ["145.00874328613281"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Lalor Primary School." + ], + "field_postcode": ["3075"], + "field_project_code": ["01-4709", "D1-01-4709"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2023", "Q1 2021"], + "field_start_date": ["Q4 2020", "Q1 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["26 Maxwell St"], + "field_suburb": ["Lalor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20326], + "status": [true], + "title": ["Lalor Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["62267ed6-8f7b-442c-bfc0-1f14ac63c514"] + }, + "sort": ["Lalor Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21372:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lalor-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Lalor Primary School. This 2-room centre provides 66 kindergarten places and opens into an outdoor learning and play space.\u00a0This kindergarten was built using modular construction, which means the bulk of the building works took place off-site. Having the kindergarten and school together may help local children make a smoother transition into primary school and can also make drop-off time simpler for some families. For information on kindergarten enrolments, please contact the City of Whittlesea or email keo@whittlesea.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten funding, delivered over four years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lalor Primary School Kindergarten." + ], + "field_latitude": ["-37.670868"], + "field_latitude_longitude_value": ["-37.670868,145.025859"], + "field_latitude_value": ["-37.670868"], + "field_longitude": ["145.025859"], + "field_longitude_value": ["145.025859"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3075"], + "field_project_code": ["15-LPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["26 Maxwell St"], + "field_suburb": ["Lalor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21372], + "status": [true], + "title": ["Lalor Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fdd97ef7-e295-4dc8-af32-3a5ecf11cf5f"] + }, + "sort": ["Lalor Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20812:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lalor-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading Lalor Secondary College. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $652,000 in planning funding. In the 2020-21 State Budget, the school received $26.175 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lalor Secondary College" + ], + "field_latitude": ["-37.665985107421875"], + "field_latitude_longitude_value": [ + "-37.665985107421875,145.00874328613281" + ], + "field_latitude_value": ["-37.665985107421875"], + "field_longitude": ["145.00874328613281"], + "field_longitude_value": ["145.00874328613281"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3075"], + "field_project_code": ["01-7985"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["118 David Street"], + "field_suburb": ["Lalor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20812], + "status": [true], + "title": ["Lalor Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["86f65053-662f-436c-8de4-483d77e9f027"] + }, + "sort": ["Lalor Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20041:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lancaster-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to improve and paint the interiors of multiple historic buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $75,020." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lancaster Primary School" + ], + "field_latitude": ["-36.3128517"], + "field_latitude_longitude_value": ["-36.3128517,145.1322436"], + "field_latitude_value": ["-36.3128517"], + "field_longitude": ["145.1322436"], + "field_longitude_value": ["145.1322436"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3620"], + "field_project_code": ["01-1814"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["8 Weller Rd"], + "field_suburb": ["Lancaster"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20041], + "status": [true], + "title": ["Lancaster Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6e2d326c-83f4-48e6-9551-ad2a10d27554"] + }, + "sort": ["Lancaster Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28330:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lancefield-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-02T13:56:10+11:00"], + "field_about_project_processed": [ + "We are building a 3-room modular kindergarten next door to Lancefield Primary School. The new kinder will offer 99 places for local children. The kindergarten will also include a maternal and child health room.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 3 of the 2022\u201323 Building Blocks Capacity Grant stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lancefield Kindergarten." + ], + "field_latitude": ["-37.27518851"], + "field_latitude_longitude_value": ["-37.27518851,144.7278381"], + "field_latitude_value": ["-37.27518851"], + "field_longitude": ["144.7278381"], + "field_longitude_value": ["144.7278381"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3435"], + "field_project_code": ["15-1098"], + "field_project_title": [ + "Building Blocks Capacity Grant- Modular Kinder" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["76A High St"], + "field_suburb": ["Lancefield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28330], + "status": [true], + "title": ["Lancefield Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["69f79aa2-15c4-40be-9d49-fda0fdf63e31"] + }, + "sort": ["Lancefield Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20733:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lancefield-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0convert the school\u00a0library into a discovery learning centre. It has\u00a0a science focus drawing on unique natural history, including megafauna." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $288,900 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lancefield Primary School" + ], + "field_latitude": ["-37.2748"], + "field_latitude_longitude_value": ["-37.2748,144.72681"], + "field_latitude_value": ["-37.2748"], + "field_longitude": ["144.72681"], + "field_longitude_value": ["144.72681"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3435"], + "field_project_code": ["01-707"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["80 High Street"], + "field_suburb": ["Lancefield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20733], + "status": [true], + "title": ["Lancefield Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7387546b-f9ad-444d-a038-504aa599ed15"] + }, + "sort": ["Lancefield Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20142:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lang-lang-primary-school"], + "changed": ["2023-09-11T14:56:21+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed the school's old classrooms so students and staff have modern learning environments to achieve their best.", + "We refurbished the student bathroom to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $153,800. In 2020, the school received $1.384 million.", + "In Round 2 of the Minor Capital Works Fund, the project received $359,127" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lang Lang Primary School." + ], + "field_latitude": ["-38.26345", "-38.263173"], + "field_latitude_longitude_value": ["-38.26345,145.56913"], + "field_latitude_value": ["-38.26345"], + "field_longitude": ["145.56913", "145.569397"], + "field_longitude_value": ["145.56913"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3984"], + "field_project_code": ["01-2899", "D1-01-2899"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q1 2022", "Q3 2023"], + "field_start_date": ["Q2 2019", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["52 Westernport Road"], + "field_suburb": ["Lang Lang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20142], + "status": [true], + "title": ["Lang Lang Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0c83edfa-dc81-4053-a41e-aa805abd4af0"] + }, + "sort": ["Lang Lang Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19973:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/langley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and replaced the boundary fence." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $79,125" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Langley Primary School" + ], + "field_latitude": ["-37.1721085457456"], + "field_latitude_longitude_value": [ + "-37.1721085457456,144.494638145155" + ], + "field_latitude_value": ["-37.1721085457456"], + "field_longitude": ["144.494638145155"], + "field_longitude_value": ["144.494638145155"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3444"], + "field_project_code": ["01-1275"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Crn Kyneton/Heathcote & Parsells Rd"], + "field_suburb": ["Langley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19973], + "status": [true], + "title": ["Langley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ef3162da-1347-4e9c-b31f-a33ec19121af"] + }, + "sort": ["Langley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22354:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/langwarrin-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:24:06+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We provided a landscaping upgrade, including constructing a terraced area for outdoor seating." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $163,520.", + "In Round 2 of the Minor Capital Works Fund, the project received $59,233." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Langwarrin Park Primary School." + ], + "field_latitude": ["-38.150915", "-38.150915"], + "field_latitude_longitude_value": ["-38.150915,145.2025"], + "field_latitude_value": ["-38.150915"], + "field_longitude": ["145.2025", "145.2025"], + "field_longitude_value": ["145.2025"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3910"], + "field_project_code": ["d1-5257", "01-5257"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q1 2024", "Q3 2022"], + "field_start_date": ["Q4 2022", "Q4 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["19-27 Northgateway"], + "field_suburb": ["Langwarrin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22354], + "status": [true], + "title": ["Langwarrin Park Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["bddcb279-ad4e-4855-af67-6e9f279d6499"] + }, + "sort": ["Langwarrin Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20198:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/langwarrin-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an outdoor learning space. This inclusive landscaped area has a new shade sail and decking.", + "We delivered\u00a0a new architect-designed modular building to Langwarrin Primary School to replace Block A.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $133,000", + "In Round 3 of the program, the school was allocated $4,032,000." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Langwarrin Primary School" + ], + "field_latitude": ["-38.1603551", "-38.160278"], + "field_latitude_longitude_value": ["-38.1603551,145.1896759"], + "field_latitude_value": ["-38.1603551"], + "field_longitude": ["145.1896759", "145.189697"], + "field_longitude_value": ["145.1896759"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3910"], + "field_project_code": ["D1-01-3531", "01-3531"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2023", "Q3 2019"], + "field_start_date": ["Q2 2021", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["90 Warrandyte Road"], + "field_suburb": ["Langwarrin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20198], + "status": [true], + "title": ["Langwarrin Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eae05594-137b-40ba-a90d-e1c3a98165bf"] + }, + "sort": ["Langwarrin Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20773:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lara-lake-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the perimeter fencing. It will provide more safety and security for the school community.\u00a0", + "We refurbished\u00a0the main teaching area and library space. We also\u00a0replaced outdated relocatable buildings with newer relocatables that feature external decking to promote indoor/outdoor activities.\u200b", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $250,165", + "In the 2017\u201318 State Budget, $1.809 million was allocated to the school.", + "In Round 9 of the Inclusive Schools Fund, the project received $299,999" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lara Lake Primary School" + ], + "field_latitude": ["-38.0510647000081", "-38.031101", "-38.030405"], + "field_latitude_longitude_value": [ + "-38.0510647000081,144.391260850164" + ], + "field_latitude_value": ["-38.0510647000081"], + "field_longitude": ["144.391260850164", "144.395081", "144.395642"], + "field_longitude_value": ["144.391260850164"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3212"], + "field_project_code": ["D1-01-769", "01-769", "D2-01-769"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q2 2023", "Q2 2019", "Q4 2025"], + "field_start_date": ["Q4 2020", "Q4 2023"], + "field_status_name": ["Complete", "Complete", "Planning"], + "field_street_address": ["89 Forest Road South"], + "field_suburb": ["Lara Lake"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20773], + "status": [true], + "title": ["Lara Lake Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f13aaa33-cba0-404c-b00c-a95acc75021c"] + }, + "sort": ["Lara Lake Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22351:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lara-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:24:03+11:00"], + "field_about_project_processed": [ + "We completed roof works. This included replacing the gutters and downpipes." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $481,729" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lara Primary School" + ], + "field_latitude": ["-38.015915"], + "field_latitude_longitude_value": ["-38.015915,144.410543"], + "field_latitude_value": ["-38.015915"], + "field_longitude": ["144.410543"], + "field_longitude_value": ["144.410543"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3212"], + "field_project_code": ["01-4885"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["120 Flinders Avenue"], + "field_suburb": ["Lara"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22351], + "status": [true], + "title": ["Lara Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["5251188a-f53a-4a1a-9b80-ae443c12b61d"] + }, + "sort": ["Lara Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36781:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lara-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an indoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $77,704" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lara Secondary College" + ], + "field_latitude": ["-38.018176"], + "field_latitude_longitude_value": ["-38.018176,144.41157"], + "field_latitude_value": ["-38.018176"], + "field_longitude": ["144.41157"], + "field_longitude_value": ["144.41157"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3212"], + "field_project_code": ["01-8841"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["34 Alkara Avenue"], + "field_suburb": ["Lara"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36781], + "status": [true], + "title": ["Lara Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9cc5051e-1647-43fc-9beb-8a3d93235fa5"] + }, + "sort": ["Lara Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20597:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lardner-and-district-primary-school"], + "changed": ["2023-09-11T14:26:50+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space, including a shade structure, water feature and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lardner and District Primary School" + ], + "field_latitude": ["-38.2045897"], + "field_latitude_longitude_value": ["-38.2045897,145.8798821"], + "field_latitude_value": ["-38.2045897"], + "field_longitude": ["145.8798821"], + "field_longitude_value": ["145.8798821"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3821"], + "field_project_code": ["01-5393"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["270 Burnt Store Road"], + "field_suburb": ["Lardner"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20597], + "status": [true], + "title": ["Lardner and District Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fa9b8994-a2d6-4d43-b31e-af54aac32280"] + }, + "sort": ["Lardner and District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20111:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/launching-place-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the\u00a0multipurpose room used for\u00a0for assemblies, gatherings and sport, and completed minor refurbishments\u00a0to the\u00a0administration area.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $500,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Launching Place Primary School" + ], + "field_latitude": ["-37.782848"], + "field_latitude_longitude_value": ["-37.782848,145.569687"], + "field_latitude_value": ["-37.782848"], + "field_longitude": ["145.569687"], + "field_longitude_value": ["145.569687"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3139"], + "field_project_code": ["01-2599"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Carter Street"], + "field_suburb": ["Launching Place"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20111], + "status": [true], + "title": ["Launching Place Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aa6f342d-db25-48d5-86fd-719d9e50b6d3"] + }, + "sort": ["Launching Place Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20636:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/laurimar-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the staff room to better accommodate increased staff numbers.", + "We upgraded one of the school's netball courts to provide lighting and an all-weather cover. This cover\u00a0creates a protected outdoor learning and active recreation space where students can participate in enhanced learning, active play and after-school care. Laurimar Power Netball Club will also use the court. The cover and lighting mean that the netball club can train and play in low light, at night and when it is raining. The local community can also use the covered area.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $124,965", + "\u200b\u200b\u200bIn the 2016\u201317 State Budget $225,000 was allocated to the school through the Shared Facilities Fund (SFF)." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Laurimar Primary School" + ], + "field_latitude": ["-37.5861993205194", "-37.58612"], + "field_latitude_longitude_value": [ + "-37.5861993205194,145.126775458927" + ], + "field_latitude_value": ["-37.5861993205194"], + "field_longitude": ["145.126775458927", "145.12815"], + "field_longitude_value": ["145.126775458927"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["D1-01-5497", "01-5497"], + "field_project_title": [ + "Minor Capital Works Fund", + "Shared Facilities Fund" + ], + "field_q_complete": ["Q4 2022", "Q4 2018"], + "field_start_date": ["Q4 2020", "Q1 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Armidale Road"], + "field_suburb": ["Doreen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20636], + "status": [true], + "title": ["Laurimar Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["28ed857d-eb1e-42ca-b63c-2ec886af1e08"] + }, + "sort": ["Laurimar Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20608:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/le-page-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive outdoor learning space, including sensory equipment and timber decking.", + "We installed new boundary fencing around the school grounds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2020 Minor Capital Works Fund the school was allocated $176,125." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Le Page Primary School" + ], + "field_latitude": ["-37.95926069", "-37.9593225"], + "field_latitude_longitude_value": ["-37.95926069,145.0681429"], + "field_latitude_value": ["-37.95926069"], + "field_longitude": ["145.0681429", "145.0682829"], + "field_longitude_value": ["145.0681429"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["D1-01-5422", "01-5422"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2023", "Q3 2022"], + "field_start_date": ["Q4 2021", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["77 Argus St"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20608], + "status": [true], + "title": ["Le Page Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5b6c6c85-a033-45dd-8840-862455b27551"] + }, + "sort": ["Le Page Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21443:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/leading-leaps-werribee-islamic-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build a new integrated children's centre for the Wyndham community on the site of the Werribee Islamic Centre. The new centre\u00a0provides kindergarten to three- and four-year-olds,\u00a0long day care, playgroup and an integrated Maternal and Child Health service." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Leading Leaps - Werribee Islamic Centre" + ], + "field_latitude": ["-37.86321"], + "field_latitude_longitude_value": ["-37.86321,144.68412"], + "field_latitude_value": ["-37.86321"], + "field_longitude": ["144.68412"], + "field_longitude_value": ["144.68412"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["ELC-LLWIC"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["143a Hogans Road"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21443], + "status": [true], + "title": ["Leading Leaps - Werribee Islamic Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ba83f83-96fe-48a1-9a4c-2f5d4d8e41aa"] + }, + "sort": ["Leading Leaps - Werribee Islamic Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28132:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/learning-co-operative-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school refubish existing buildings to create new staff and administration facilities, a new kitchen area, student and staff support rooms, a new entry and new student amenities. Works also include upgrading walkways and landscaping to create accessible connections between buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Learning Co-Operative School." + ], + "field_latitude": ["-37.62890785106059"], + "field_latitude_longitude_value": [ + "-37.62890785106059,145.21436159725758" + ], + "field_latitude_value": ["-37.62890785106059"], + "field_longitude": ["145.21436159725758"], + "field_longitude_value": ["145.21436159725758"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3099"], + "field_project_code": ["01-1721"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["10 Laceys Rd"], + "field_suburb": ["Cottles Bridge"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28132], + "status": [true], + "title": ["Learning Co-Operative School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["9159e787-0fd4-4199-8e28-41a9b564cf92"] + }, + "sort": ["Learning Co-Operative School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21247:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/leitchville-preschool-play-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Gannawarra Shire Council to remove the existing, rundown building and install a modular kindergarten. This refurbishment increased the centre\u2019s capacity to 33 places, added an administration space and improved accessibility for children of all abilities. The modular building also allows the centre to facilitate a range of community services including maternal child health and allied health programs, a toy library, and a general library that can be used as a community meeting space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-2018 Children's Facilities Capital Program $314,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Leitchville Preschool Play Centre" + ], + "field_latitude": ["-35.90613"], + "field_latitude_longitude_value": ["-35.90613,144.30078"], + "field_latitude_value": ["-35.90613"], + "field_longitude": ["144.30078"], + "field_longitude_value": ["144.30078"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3567"], + "field_project_code": ["15-318"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Kitchener St"], + "field_suburb": ["Leitchville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21247], + "status": [true], + "title": ["Leitchville Preschool Play Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a0051ad6-c9c8-41d7-949c-40ca20bbd708"] + }, + "sort": ["Leitchville Preschool Play Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20282:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lemnos-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish an outdoor toilet block to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $168,020" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lemnos Primary School" + ], + "field_latitude": ["-36.34864185"], + "field_latitude_longitude_value": ["-36.34864185,145.461976650005"], + "field_latitude_value": ["-36.34864185"], + "field_longitude": ["145.461976650005"], + "field_longitude_value": ["145.461976650005"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3631"], + "field_project_code": ["01-4269"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Lemnos Road"], + "field_suburb": ["Lemnos"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20282], + "status": [true], + "title": ["Lemnos Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4b85094c-fa74-4e04-af73-397fad6ce4df"] + }, + "sort": ["Lemnos Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28650:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/len-jeffrey-memorial-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the preschool by painting walls, building cabinetry to improve storage and installing new window shades. We will also build a gazebo with toy storage in the outdoor play area. The gazebo will provide shade and shelter for children and parents on hot and wet days." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $110,321.25 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Len Jeffrey Memorial Preschool." + ], + "field_latitude": ["-37.92803501"], + "field_latitude_longitude_value": ["-37.92803501,145.3566004"], + "field_latitude_value": ["-37.92803501"], + "field_longitude": ["145.3566004"], + "field_longitude_value": ["145.3566004"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3160"], + "field_project_code": ["15-1159"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["102 Colby Dr"], + "field_suburb": ["Belgrave South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28650], + "status": [true], + "title": ["Len Jeffrey Memorial Preschool"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["4b87c7db-bd75-4c87-bb6c-09d1afdeabda"] + }, + "sort": ["Len Jeffrey Memorial Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21480:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/leneva-frederic-street-road-primary-school-interim-name" + ], + "changed": ["2023-09-18T14:17:48+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are planning a new primary school in Wodonga East.This school will help meet increasing enrolment demand from a growing local population, alleviate pressure on surrounding schools, and ensure all Victorian students have access to high-quality education.\u200bDetails on how to enrol your child and enrolment boundaries will be published in the year before the school opens.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the State for planning. This includes funding for this school." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Leneva (Frederic Street Road) Primary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["LA-LFSPS"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Land acquisition"], + "field_suburb": ["Wodonga East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21480], + "status": [true], + "title": [ + "Leneva (Frederic Street Road) Primary School (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ee1f22dd-81fe-44e7-842e-c411a9351656"] + }, + "sort": ["Leneva (Frederic Street Road) Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21371:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/leongatha-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping build Leongatha Early Learning Centre to support the roll-out of subsidised kindergarten for three-year-olds, which commenced in 2020. The Leongatha Early Learning Centre is a new early years facility incorporating kindergarten, long day care, maternal and child health, supported playgroups and space for related family services in Leongatha." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 20-21 Building Blocks Capacity Grants $2,375,291 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Leongatha Early learning Centre" + ], + "field_latitude": ["-38.4755442"], + "field_latitude_longitude_value": ["-38.4755442,145.9393346"], + "field_latitude_value": ["-38.4755442"], + "field_longitude": ["145.9393346"], + "field_longitude_value": ["145.9393346"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3953"], + "field_project_code": ["15-LELC"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centres" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Symmons St"], + "field_suburb": ["Leongatha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21371], + "status": [true], + "title": ["Leongatha Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bc493c03-621c-462f-a2c4-7160eb05fc55"] + }, + "sort": ["Leongatha Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20152:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/leongatha-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school install fencing along two school boundaries to improve security and road safety." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $68,120" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Leongatha Primary School" + ], + "field_latitude": ["-38.4824744849289"], + "field_latitude_longitude_value": [ + "-38.4824744849289,145.98832302547" + ], + "field_latitude_value": ["-38.4824744849289"], + "field_longitude": ["145.98832302547"], + "field_longitude_value": ["145.98832302547"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3953"], + "field_project_code": ["01-2981"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Nerrena Road"], + "field_suburb": ["Leongatha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20152], + "status": [true], + "title": ["Leongatha Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b768b305-ab57-4994-bbf7-2e09160eb3bc"] + }, + "sort": ["Leongatha Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33021:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/leongatha-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Leongatha Secondary College" + ], + "field_latitude": ["-38.47868659"], + "field_latitude_longitude_value": ["-38.47868659,145.9612411"], + "field_latitude_value": ["-38.47868659"], + "field_longitude": ["145.9612411"], + "field_longitude_value": ["145.9612411"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3953"], + "field_project_code": ["01-8745"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["115 Nerrena Road"], + "field_suburb": ["Leongatha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33021], + "status": [true], + "title": ["Leongatha Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["f9530f4b-28b1-4b76-9066-358f19cf9959"] + }, + "sort": ["Leongatha Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19953:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/leopold-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground.", + "We upgraded\u00a0and modernised\u00a0facilities at Leopold Primary School. This included providing a new\u00a0learning community with\u00a0classrooms, amenities and staff work areas. We also replaced\u00a0the relocatable student amenities block with a permanent building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $178,480", + "In the 2017\u201318 State Budget, $3.22 million was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Leopold Primary School" + ], + "field_latitude": ["-38.187261", "-38.187500"], + "field_latitude_longitude_value": ["-38.187261,144.464367"], + "field_latitude_value": ["-38.187261"], + "field_longitude": ["144.464367", "144.463340"], + "field_longitude_value": ["144.464367"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3224"], + "field_project_code": ["D1-01-1146", "01-1146"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q3 2019"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["1 Kensington Road"], + "field_suburb": ["Leopold"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19953], + "status": [true], + "title": ["Leopold Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aef20eeb-0e4b-4ee5-ab98-8abe1ea80a0b"] + }, + "sort": ["Leopold Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21163:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lighthouse-christian-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct a\u00a0two-storey, Years 9\u201310 building.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Capital Funding Program for Non-Government Schools, $1,302,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lighthouse Christian College" + ], + "field_latitude": ["-38.001556"], + "field_latitude_longitude_value": ["-38.001556,145.143906"], + "field_latitude_value": ["-38.001556"], + "field_longitude": ["145.143906"], + "field_longitude_value": ["145.143906"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["03-1923"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["927 Springvale Road"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21163], + "status": [true], + "title": ["Lighthouse Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5bad985f-feb2-493e-b5e8-8e7ac001628c"] + }, + "sort": ["Lighthouse Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21462:en", + "_score": null, + "_ignored": [ + "field_paragraph_body.keyword", + "field_paragraph_accordion_body.keyword" + ], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/lilydale-district-and-yarra-valley-education-plan" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local secondary education through the Lilydale District and Yarra Valley Education Plan.\u00a0 Work on the plan began in 2017. Its vision is to provide every secondary student in these communities with the knowledge, capabilities and attributes they need to thrive throughout their lives. In 2020, the plan grew from 3 to 6 local schools to meet the needs of a growing community. It will give each school access to more expertise and resources than ever before. As part of this plan, we are significantly upgrading and modernising buildings at: Lilydale Heights College Lilydale High School Upper Yarra Secondary College Before they joined the plan, we upgraded buildings at Healesville High School, Mooroolbark College\u00a0and Yarra Hills Secondary College. Community engagement We consulted community members and stakeholders in the Lilydale and Upper Yarra area during July, August and September 2017 to collect data that would assist to develop the education plan. Community members and stakeholders were asked to identify what was working well and what could be improved in the education system in the area.\u00a0 The feedback we received painted a clear picture of strengths to build upon, and a desire to improve opportunities for young people in the area. You can contact us for a copy of this enagement report." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, this project shared in $7 million planning funding. This project has received an additional $20 million in the 2018\u201319 State Budget. In 2020, schools in this Education Plan shared in an additional $12.677 million of funding." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Lilydale District and Yarra Valley Education Plan" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "The Department of Education and Training acknowledges Victorian Traditional Owners and pays respect to their Elders past, present and emerging, and values the rich culture and history of the First Peoples of this land. Throughout this report, the term Koorie is used to refer to both Aboriginal and Torres Strait Islander people. Use of the terms Aboriginal, Aboriginal and Torres Strait Islander and Indigenous are retained in the names of programs and initiatives and, unless noted otherwise, are inclusive of all Aboriginal and Torres Strait Islander peoples.", + "The 6 secondary schools involved in the Lilydale District and Yarra Valley Education Plan have come together to develop a Collaborative Indigenous Strategy, supporting the individual needs of local Koorie students, improving student knowledge, and targeting Aboriginal inclusion. This is being done to achieve the vision of the state-wide Marrung Aboriginal Education Plan 2016\u20132026.", + "This commitment means students will experience a culturally inclusive education, in an environment where they feel safe to stand strong in their cultural identity. Aboriginal cultures and histories. will be celebrated and learnt by the whole school community. Students will have more opportunities to connect with their culture and communities, and more pathways to achieve their aspirations and needs.", + "The strategy will see Aboriginal culture and history not only celebrated but embedded in the six schools\u2019 curriculum. Koorie students will feel a sense of connection, be strong in their cultural identity and fully engaged in secondary education to reach their own goals. Koorie student voices will be heard, and their learning needs tailored to. Partnerships with local Aboriginal communities will be developed, and strengthened relationships will offer students greater pathways, development, and transition opportunities.", + "The six schools have worked with the Department\u2019s Koorie Teams and students to plan successful delivery of the Collaborative Indigenous Strategy. Each school has appointed a First Nations Advocate, who is a key driver of the strategy and a mentor for Koorie students. In Term 1, 2021, each of the six schools facilitated a yarning circle with their Koorie students, the local Koorie Engagement Support Officers and First Nations Advocates. Work is underway to implement student feedback on what they wanted to see happening in their schools, as well as how they would like to connect with Aboriginal culture in the future. Yarning circles will now occur each term and aim to include a guest speaker for students to talk to and engage in cultural activities. Yarra Ranges Tech School has established a Koorie Student Program, which began in Term 2, 2021. \u00a0The bespoke program is being co-designed by local Koorie students, who will visit the Tech School five times a term. They will complete workshops to solve real life problems, combining Aboriginal cultural practices with current and emerging technologies. Since its inception, the program has seen great success with 45 students (roughly a third of local Koorie students) enrolled for the Term 2 program. The program will be repeated in Term 4, 2021 and over the next two years for more students. Koorie students and their needs will remain at the heart of all current and future work.", + "Marrung is the Wemba Wemba word for the Murray Cypress pine tree, representing branches of education and knowledge. We thank the Wemba Wemba people for allowing the use of their language in the naming of this plan. Marrung aims to ensure that all Koorie Victorians achieve their learning aspirations. Marrung\u2019s vision is for Victoria to be a state where the rich and thriving culture, knowledge and experience of our First Nations peoples are celebrated by all Victorians; where our universal service systems are inclusive, responsive and respectful of Koorie people at every stage of their learning and development journey; and where every Koorie person achieves their potential, succeeds in life, and feels strong in their cultural identity.", + "The Lilydale District and Yarra Valley Education Plan began in 2017 as the Lilydale and Upper Yarra Education Plan when three secondary schools \u2013 Lilydale Heights College, Lilydale High School and Upper Yarra Secondary College \u2013 came together to revitalise secondary education across their communities and improve school infrastructure. In 2020, the plan expanded to build on current and future needs of a growing community with Healesville High School, Mooroolbark College and Yarra Hills Secondary College joining to deliver a shared goal of seeing greater educational outcomes for their students.", + "You can access a designed version of this report.\u00a0 \u00a0" + ], + "field_paragraph_accordion_name": [ + "Acknowledgement", + "Introduction", + "What does this mean for local Koorie students?", + "What are the goals of the strategy?", + "What\u2019s being delivered?", + "What is the Marrung Aboriginal Education Plan 2016-2026?", + "What is the Lilydale District and Yarra Valley Education Plan?", + "Designed report" + ], + "field_paragraph_body": [ + "For more information on learning programs and partnerships this plan is delivering, please visit the Department of Education and Training . This is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to others across the state, please visit the VSBA education plans page. For all other information queries contact:\u00a0 education.plans@edumail.vic.gov.au ." + ], + "field_paragraph_title": ["Collaborative Indigenous Strategy"], + "field_project_code": ["EP_LUY"], + "field_project_title": ["Education Plan"], + "field_suburb": ["Lilydale and Upper Yarra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21462], + "status": [true], + "title": ["Lilydale District and Yarra Valley Education Plan"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cdf4de96-e620-41e1-9a08-025ba451ffa1"] + }, + "sort": ["Lilydale District and Yarra Valley Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20744:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lilydale-heights-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded facilities at this school as part of the Lilydale District and Yarra Valley Education Plan.We upgraded and modernised the school's science and maths building, and the technology and arts building.", + "We upgraded the library, administration areas and toilets.\u00a0This project\u00a0is\u00a0part of the\u00a0Lilydale District and Yarra Valley Education Plan.", + "We upgraded\u00a0and modernised\u00a0facilities as part of the\u00a0Lilydale District and Yarra Valley Education Plan. We delivered a Sustainable Learning Hub and\u00a0new gymnasium, and created\u00a0a \u2018town centre\u2019 where students can meet, learn and discuss issues. As part of the project, we also completed refurbishment works,\u00a0providing\u00a0a new canteen and staffroom. These works ensured the school is equipped\u00a0for\u00a0modern\u00a0learning that supports students\u00a0intellectually, and gives them hands-on opportunities that will help them learn\u00a0throughout school and beyond. The new facilities also encourage\u00a0social engagement among students, parents/carers and teachers, and can be shared\u00a0across the six schools in\u00a0the education plan.", + "We linked learning spaces\u00a0to a newly created sensory and therapeutic garden. The garden includes a herb and veggie patch, an orchid/olive grove and a reflective flower area. A quiet sanctuary was also developed. It features a planted entrance and\u00a0an accessible,\u00a0sheltered seating area.\u00a0\u200b\u200b \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $11.3 million.", + "In 2020, the school received $5.35 million to deliver the next stage of works at the school.", + "In the 2018-19 State Budget, $8 million was allocated to the school as part of the Lilydale and Upper Yarra Education Plan.", + "In 2016, the school received $199,400 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lilydale Heights College" + ], + "field_latitude": ["-37.755607604980469", "-37.744934", "-37.745991"], + "field_latitude_longitude_value": [ + "-37.755607604980469,145.34904479980469" + ], + "field_latitude_value": ["-37.755607604980469"], + "field_longitude": ["145.34904479980469", "145.341248", "145.341080"], + "field_longitude_value": ["145.34904479980469"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Lilydale Heights College gymnasium | concrete pour" + ], + "field_postcode": ["3140"], + "field_project_code": [ + "D3-01-7219", + "D2-01-7219", + "D1-01-7219", + "01-7219" + ], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q3 2022", "Q2 2021", "Q4 2017"], + "field_start_date": ["Q4 2020", "Q2 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["17-19 Nelson Road"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20744], + "status": [true], + "title": ["Lilydale Heights College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4e9a39ca-74ac-4e38-b64f-264f47f9ac3f"] + }, + "sort": ["Lilydale Heights College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20813:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lilydale-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded facilities at this school as part of the Lilydale District and Yarra Valley Education Plan.These works included building a library and refurbishing relocatable buildings.", + "We upgraded\u00a0facilities at this school\u00a0as part of the\u00a0Lilydale District and Yarra Valley Education Plan. We rebuilt\u00a0the Zoology Learning Centre to include science learning spaces, and\u00a0improved\u00a0the school\u2019s reptile room (providing purpose-built enclosures to house lizards, snakes and other animals). The school also gained new administration facilities. These works\u00a0ensure the school is equipped\u00a0for\u00a0modern\u00a0learning that supports students\u00a0intellectually, and gives them hands-on opportunities that will help them learn\u00a0throughout school and beyond. The new facilities also encourage\u00a0social engagement among students, parents/carers and teachers, and could be shared\u00a0across the 6 schools in\u00a0the education plan.", + "We built new\u00a0outdoor learning areas, refurbished relocatable classrooms and demolished the administration building. This project is part of the\u00a0Lilydale District and Yarra Valley Education Plan." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6.37 million.", + "In the 2018-19 State Budget, $5.8 million was allocated to the school as part of the Lilydale and Upper Yarra Education Plan.", + "In 2020, the school received $3.2 million in funding." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lilydale High School." + ], + "field_latitude": ["-37.755607604980469", "-37.760090", "-37.759922"], + "field_latitude_longitude_value": [ + "-37.755607604980469,145.34904479980469" + ], + "field_latitude_value": ["-37.755607604980469"], + "field_longitude": ["145.34904479980469", "145.344200", "145.344269"], + "field_longitude_value": ["145.34904479980469"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3140"], + "field_project_code": ["D2-01-7995", "01-7995", "D1-01-7995"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": ["Q3 2023", "Q4 2020", "Q3 2022"], + "field_start_date": ["Q4 2020", "Q2 2018", "Q2 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["25 Melba Av"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20813], + "status": [true], + "title": ["Lilydale High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ff85bc0a-b947-4669-9bbb-6e30fbb5de75"] + }, + "sort": ["Lilydale High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21310:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lilydale-lakeside-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Box Hill Institute have replaced\u00a0the current Lilydale Lakeside Children's Centre with a new integrated children's centre. It\u00a0comprises of 3 rooms for different age groups. The centre accommodates 3 year old and 4 year old kindergarten programs and long day care, a Maternal and Child Health Centre operated by Yarra Ranges Council, early childhood intervention services, family services, a local playgroup, and a toy library.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lilydale Lakeside Children's Centre" + ], + "field_latitude": ["-37.7569999694824"], + "field_latitude_longitude_value": [ + "-37.7569999694824,145.372116088867" + ], + "field_latitude_value": ["-37.7569999694824"], + "field_longitude": ["145.372116088867"], + "field_longitude_value": ["145.372116088867"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3140"], + "field_project_code": ["15-5596"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["40-50 Melba Ave"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21310], + "status": [true], + "title": ["Lilydale Lakeside Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["52e03aaa-5edb-4a21-9689-d5fe7d709524"] + }, + "sort": ["Lilydale Lakeside Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20903:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lilydale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities at the school. Works\u00a0included the refurbishment of 4 general purpose classrooms and a music room in Block B\u200b.", + "We refurbished the school's\u00a0futsal pitch and installed a surrounding fence to increase safety." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $804,000 has been allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $62,670." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lilydale Primary School." + ], + "field_latitude": ["-37.75385", "-37.754293"], + "field_latitude_longitude_value": ["-37.75385,145.35334"], + "field_latitude_value": ["-37.75385"], + "field_longitude": ["145.35334", "145.3538856"], + "field_longitude_value": ["145.35334"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3140"], + "field_project_code": ["01-876", "D1-01-876"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2019", "Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["63-65 Castella St"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20903], + "status": [true], + "title": ["Lilydale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4bae9bd9-7700-44fa-94f1-e9108c226b89"] + }, + "sort": ["Lilydale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24255:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lincolnville-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T17:06:42+11:00"], + "field_about_project_processed": [ + "We upgraded the bathroom. We added a changing bench, storage and sink. The upgrade improves accessibility and supports children with additional needs.We also installed an accessible veranda and swing set. The playground is now more inclusive for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Inclusion Grant, $75,200 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lincolnville Preschool" + ], + "field_latitude": ["-37.74975531"], + "field_latitude_longitude_value": ["-37.74975531,144.8731747"], + "field_latitude_value": ["-37.74975531"], + "field_longitude": ["144.8731747"], + "field_longitude_value": ["144.8731747"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3033"], + "field_project_code": ["15-680"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["1/3 Devon Ave"], + "field_suburb": ["Keilor East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24255], + "status": [true], + "title": ["Lincolnville Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7c20761b-e66b-4880-9080-b2570dde3871"] + }, + "sort": ["Lincolnville Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19948:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lindenow-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded Lindenow Primary School by building a\u00a0new administration building and\u00a0library\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $804,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lindenow Primary School" + ], + "field_latitude": ["-37.8008857"], + "field_latitude_longitude_value": ["-37.8008857,147.4538216"], + "field_latitude_value": ["-37.8008857"], + "field_longitude": ["147.4538216"], + "field_longitude_value": ["147.4538216"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3865"], + "field_project_code": ["01-1120"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["140 Henry Street"], + "field_suburb": ["Lindenow"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19948], + "status": [true], + "title": ["Lindenow Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["464df5ad-d1a5-4631-a3f6-f72ebf15de96"] + }, + "sort": ["Lindenow Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20915:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/linton-primary-school"], + "changed": ["2023-10-04T15:11:14+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. We collaborated with school leaders to ensure that the upgrade helps them achieve their educational goals. We also made sure that improvements were targeted where they were needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.978 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Linton Primary School" + ], + "field_latitude": ["-37.68634033203125"], + "field_latitude_longitude_value": [ + "-37.68634033203125,143.56289672851562" + ], + "field_latitude_value": ["-37.68634033203125"], + "field_longitude": ["143.56289672851562"], + "field_longitude_value": ["143.56289672851562"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3360"], + "field_project_code": ["01-880"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Adair St"], + "field_suburb": ["Linton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20915], + "status": [true], + "title": ["Linton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dba81a39-3ef8-4d64-9ae0-21c602d75d98"] + }, + "sort": ["Linton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21098:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lisieux-catholic-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade general learning areas, student amenities and associated areas.", + "\u200b\u200bWe helped build\u00a0a new Catholic primary school in the Torquay North area using\u00a0Non-Government Grant\u00a0funds. Stage 1 of the project included creating\u00a0general learni\u200b\u200bng and associated areas, and site infrastructure.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $4,000,000 has been allocated to the school.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2.5 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lisieux Catholic Primary School." + ], + "field_latitude": ["-38.32554", "-38.30209"], + "field_latitude_longitude_value": ["-38.32554,144.31485"], + "field_latitude_value": ["-38.32554"], + "field_longitude": ["144.31485", "144.332337"], + "field_longitude_value": ["144.31485"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3228"], + "field_project_code": ["D1-02-2221", "02-2221"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2019-20", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q4 2021", "Q1 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["90 South Beach Rd"], + "field_suburb": ["Torquay North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21098], + "status": [true], + "title": ["Lisieux Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["036776bf-1499-4eaf-916f-bf6438600f1a"] + }, + "sort": ["Lisieux Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19977:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lismore-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We refurbished\u00a0and modernised\u00a0classrooms and facilities in poor condition. These works targeted facilities that needed it most, ensuring that students learn in an environment designed for delivering modern education.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2018\u201319 State Budget $110,000 was allocated to the school." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lismore Primary School" + ], + "field_latitude": ["-37.954780"], + "field_latitude_longitude_value": ["-37.954780,143.339160"], + "field_latitude_value": ["-37.954780"], + "field_longitude": ["143.339160"], + "field_longitude_value": ["143.339160"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3324"], + "field_project_code": ["D1-01-1293", "01-1293"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q3 2019"], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["77 William Street"], + "field_suburb": ["Lismore"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19977], + "status": [true], + "title": ["Lismore Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["21a14ffd-883f-4110-b850-b6a0f80aa330"] + }, + "sort": ["Lismore Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21281:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/little-beacons-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe partnered with Beaconhills College to deliver an integrated children's centre including: four rooms for children aged 6 months to 3 years;\u00a0 four rooms for children aged 3 to 5 years;\u00a0 rooms for before and after school and vacation care;\u00a0 a multipurpose playroom that can accommodate supported playgroup;\u00a0 and consulting rooms for maternal and child health, early intervention, and health and allied services.\u00a0 External providers are\u00a0able to use the facilities to deliver integrated services. This is\u00a0a community facility that works with families to support children to reach their full potential.\u200b\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-2018 Children's Facilities Capital Program $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Integrated Early Learning Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Little Beacons Learning Centre" + ], + "field_latitude": ["-38.063740"], + "field_latitude_longitude_value": ["-38.063740,145.456497"], + "field_latitude_value": ["-38.063740"], + "field_longitude": ["145.456497"], + "field_longitude_value": ["145.456497"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["15-4772"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["92 Kangan Drive"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21281], + "status": [true], + "title": ["Little Beacons Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["15b8b690-15ae-4fbe-91b3-46a376b7a80b"] + }, + "sort": ["Little Beacons Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27778:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/little-bendigo-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are upgrading an indoor learning area to be more inclusive." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $37,450." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Little Bendigo Primary School" + ], + "field_latitude": ["-37.54290101"], + "field_latitude_longitude_value": ["-37.54290101,143.8950582"], + "field_latitude_value": ["-37.54290101"], + "field_longitude": ["143.8950582"], + "field_longitude_value": ["143.8950582"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-2093"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["8 Monte St"], + "field_suburb": ["Nerrina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27778], + "status": [true], + "title": ["Little Bendigo Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["8f8b81d9-3ec3-4e27-a40c-c30c1d4a0bae"] + }, + "sort": ["Little Bendigo Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24233:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/little-yarra-steiner-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T13:22:45+11:00"], + "field_about_project_processed": [ + "We partnered with Little Yarra Steiner School to rebuild their onsite kindergarten. We removed the existing modular building and built a fit-for-purpose centre with 3 kindergarten rooms, kitchen, laundry, storage spaces, toilets, and a covered veranda deck." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019-20, this project was allocated $1,000,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Children's Facilities Capital Program"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Little Yarra Steiner Kindergarten" + ], + "field_latitude": ["-37.79392836"], + "field_latitude_longitude_value": ["-37.79392836,145.6312875"], + "field_latitude_value": ["-37.79392836"], + "field_longitude": ["145.6312875"], + "field_longitude_value": ["145.6312875"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3797"], + "field_project_code": ["15-1290"], + "field_project_title": [ + "Children's Facilities Capital Program - Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["205 Little Yarra Rd"], + "field_suburb": ["Yarra Junction"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24233], + "status": [true], + "title": ["Little Yarra Steiner Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d271b446-459d-4478-acea-68423da80280"] + }, + "sort": ["Little Yarra Steiner Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21161:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/little-yarra-steiner-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported Little Yarra Steiner School to upgrade their gym into a multifunction room." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $844,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Little Yarra Steiner School" + ], + "field_latitude": ["-37.79368"], + "field_latitude_longitude_value": ["-37.79368,145.63086"], + "field_latitude_value": ["-37.79368"], + "field_longitude": ["145.63086"], + "field_longitude_value": ["145.63086"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3797"], + "field_project_code": ["03-1914"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["205 Little Yarra Road"], + "field_suburb": ["Yarra Junction"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21161], + "status": [true], + "title": ["Little Yarra Steiner School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["592303dc-4b70-4674-8e12-6152f4f77f7b"] + }, + "sort": ["Little Yarra Steiner School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21397:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/livingston-family-and-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Livingston Family and Community Centre is a key inter-generational hub for the Cranbourne East community, bringing together a range of services where professionals work together to deliver education, care, health and support services to children and their families.\u00a0 The centre\u00a0includes\u00a0two maternal child health consulting rooms, staff and\u00a0community amenities, three kindergarten rooms, a\u00a0large multipurpose community room and meeting areas.\u00a0 This project was delivered in partnership with the City of Casey. This kindergarten is next to\u00a0Casey Fields Primary School. Having the kindergarten and school together may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children. \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $1,600,000 has been allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Livingston Family and Community Centre" + ], + "field_latitude": ["-38.12083"], + "field_latitude_longitude_value": ["-38.12083,145.29613"], + "field_latitude_value": ["-38.12083"], + "field_longitude": ["145.29613"], + "field_longitude_value": ["145.29613"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["ELC-12"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["31S Parkhurst Drive"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21397], + "status": [true], + "title": ["Livingston Family and Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7f2c7b31-7cb0-4319-a0a8-c804d797f9f3"] + }, + "sort": ["Livingston Family and Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36779:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/livingstone-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $189,327" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Livingstone Primary School" + ], + "field_latitude": ["-37.85289"], + "field_latitude_longitude_value": ["-37.85289,145.18067"], + "field_latitude_value": ["-37.85289"], + "field_longitude": ["145.18067"], + "field_longitude_value": ["145.18067"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3133"], + "field_project_code": ["01-5113"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["25 - 29 Livingstone Road"], + "field_suburb": ["Vermont South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36779], + "status": [true], + "title": ["Livingstone Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["df3e310a-ad29-4760-89ba-7d5757b3e10e"] + }, + "sort": ["Livingstone Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20145:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/loch-primary-school"], + "changed": ["2023-09-12T16:14:26+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground with new play equipment and soft fall.", + "We are refurbishing the staff/visitor toilets in the administration building to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000", + "In the 2022-23 State Budget the project received $163,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Loch Primary School" + ], + "field_latitude": ["-38.3686131", "-38.368623"], + "field_latitude_longitude_value": ["-38.3686131,145.7031233"], + "field_latitude_value": ["-38.3686131"], + "field_longitude": ["145.7031233", "145.70295"], + "field_longitude_value": ["145.7031233"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3945"], + "field_project_code": ["01-2912", "D1-01-2912"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2023", "Q2 2024"], + "field_start_date": ["Q2 2021", "Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["2 Victoria Road"], + "field_suburb": ["Loch"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20145], + "status": [true], + "title": ["Loch Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4772dda3-1aa0-42f7-a078-ae34b0564628"] + }, + "sort": ["Loch Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20541:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/loch-sport-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the outdoor play areas and oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $444,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Loch Sport Primary School." + ], + "field_latitude": ["-38.0573073"], + "field_latitude_longitude_value": ["-38.0573073,147.5678913"], + "field_latitude_value": ["-38.0573073"], + "field_longitude": ["147.5678913"], + "field_longitude_value": ["147.5678913"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3851"], + "field_project_code": ["01-5245"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Charlies St"], + "field_suburb": ["Loch Sport"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20541], + "status": [true], + "title": ["Loch Sport Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6b2b7383-a9a1-4f95-ad73-9dcb29447dfd"] + }, + "sort": ["Loch Sport Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33004:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lockerbie-secondary-school-interim-name"], + "changed": ["2023-08-21T14:12:47+10:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We're building a new secondary school in Kalkallo. It will open in 2026 with places for up to 800 students. This will help the growing local population get a great education close to home.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Lockerbie Proposed Secondary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-7998"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33004], + "status": [true], + "title": ["Lockerbie Secondary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["3353d706-a36e-4f1f-bf56-7e08d3537395"] + }, + "sort": ["Lockerbie Secondary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33005:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lockerbie-specialist-school-interim-name"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We're planning for a new specialist school in Kalkallo. It will open with places for up to 148 students. This will help the growing local population get a great education close to home. The school will provide educational programs for students with mild to profound intellectual disability. A full enrolment policy providing detailed entry eligibility criteria will be available once a principal is appointed." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Lockerbie Specialist School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-6367"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33005], + "status": [true], + "title": ["Lockerbie Specialist School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["eef89306-da16-42b6-b918-e7fbdd283cd8"] + }, + "sort": ["Lockerbie Specialist School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20755:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lockwood-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the female toilet block in the main school building to improve amenity, cleanliness and hygeine.", + "We upgraded and modernised Lockwood Primary School, including refurbished\u00a0classrooms and facilities. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $285,120.", + "In the 2017\u201318 State Budget, $613,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lockwood Primary School" + ], + "field_latitude": ["-36.802779", "-36.80278"], + "field_latitude_longitude_value": ["-36.802779,144.1615034"], + "field_latitude_value": ["-36.802779"], + "field_longitude": ["144.1615034", "144.1615"], + "field_longitude_value": ["144.1615034"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["D1-01-744", "01-744"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q4 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["190 Wiegards Rd"], + "field_suburb": ["Lockwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20755], + "status": [true], + "title": ["Lockwood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4648982c-6238-441c-9ada-231eef1721a3"] + }, + "sort": ["Lockwood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20696:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lollypop-creek-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in the City of Wyndham. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Joel Riddle was appointed as the first principal of the school. Lollypop Creek Primary School was chosen as the new school name. We consulted with the community on school's name from 20 June 2022 and 8 July 2022. The school is named after the creek that runs past the school. Facilities The school has the following facilities: an administration building with a library, staff offices and amenities 2 learning neighbourhood buildings with general purpose classrooms, and flexible and collaborative teaching spaces a specialist learning neighbourhood for subjects such as food technology and science a community hub with a competition-grade gymnasium, canteen, music and drama space 2 outdoor hardcourts a sports field a bike shed. Kindergarten We are partnering with Wyndham City Council to build Black Forest Road South Community Centre. Every new Victorian primary school will have a kindergarten on-site or next door. Co-locating kindergartens at primary schools provides many benefits for Victorian families, including making: kindergarten programs easier to access drop-off time simpler and more convenient the transition from kindergarten to school smoother for children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Lollypop Creek Primary School." + ], + "field_latitude": ["-37.910821"], + "field_latitude_longitude_value": ["-37.910821,144.61328"], + "field_latitude_value": ["-37.910821"], + "field_longitude": ["144.61328"], + "field_longitude_value": ["144.61328"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/LollypopCreekPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-5593"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["114 Shipwright Pde"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20696], + "status": [true], + "title": ["Lollypop Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["16f30e50-3c6c-4848-9e9a-e604da18c293"] + }, + "sort": ["Lollypop Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20107:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/longwarry-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200b\u200b\u200bWe\u00a0upgraded an\u00a0old staff room into a new school kitchen to better support the local Breakfast Club run by the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $30,000 was allocated to the school." + ], + "field_funding_type_name": ["School Improvement Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Longwarry Primary School" + ], + "field_latitude": ["-38.114700"], + "field_latitude_longitude_value": ["-38.114700,145.768112"], + "field_latitude_value": ["-38.114700"], + "field_longitude": ["145.768112"], + "field_longitude_value": ["145.768112"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3816"], + "field_project_code": ["01-2505"], + "field_project_title": ["School Improvement Fund"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["5 McCrae Street"], + "field_suburb": ["Longwarry"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20107], + "status": [true], + "title": ["Longwarry Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2c727127-8442-4b05-9bf9-9afce9a9843a"] + }, + "sort": ["Longwarry Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20125:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/longwood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the oval and basketball courts." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $281,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Longwood Primary School." + ], + "field_latitude": ["-36.8070904"], + "field_latitude_longitude_value": ["-36.8070904,145.4223675"], + "field_latitude_value": ["-36.8070904"], + "field_longitude": ["145.4223675"], + "field_longitude_value": ["145.4223675"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3665"], + "field_project_code": ["01-2707"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1\u201321 Hurley St"], + "field_suburb": ["Longwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20125], + "status": [true], + "title": ["Longwood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b2d93676-25fe-4f31-9837-f6c286bc9f2c"] + }, + "sort": ["Longwood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20814:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lorne-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school. This includes demolishing Block A and Block D, and constructing a new specialist building that includes visual arts, textiles, media arts, visual communications and food technology learning spaces. We are also adding accessible pathways.", + "We redesigned the school library to make it an inviting and inclusive learning space. The library area can now be used during class times, play times and for voluntary use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $8.972 million.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lorne P-12 College" + ], + "field_latitude": ["-38.5389761", "-38.53917804"], + "field_latitude_longitude_value": ["-38.5389761,143.9732143"], + "field_latitude_value": ["-38.5389761"], + "field_longitude": ["143.9732143", "143.9738904"], + "field_longitude_value": ["143.9732143"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3232"], + "field_project_code": ["D1-01-7997", "01-7997"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["15 Grove Rd"], + "field_suburb": ["Lorne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20814], + "status": [true], + "title": ["Lorne P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["10b099c0-30c3-45f7-9661-eac9fd4da5f5"] + }, + "sort": ["Lorne P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21304:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lorne-street-kindergarten-fawkner-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading Lorne Street Kindergarten at Fawkner Primary School. We\u2019re adding a new one-room modular kindergarten building and an outdoor learning space. This will give children extra spaces to learn and play. The upgrade will create 33 new kindergarten places for local families by early 2024.", + "We upgraded the\u00a0kindergarten to improve the overall quality of the outdoor play space.We expanded the outdoor area at the kindergarten to ensure children are supported to engage in physical activity and play.", + "We refreshed the wall and floor finishes. These improvements make the space more inviting for children, families, and kindergarten staff." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the State Government and Merri-Bek City Council. The Victorian Government has provided $10.7 million to support 11 projects that will create 329 new kindergarten places in the local government area.", + "In the 2020\u201321 Building Blocks Improvement Grant $305,000 was allocated to the project.", + "In the 2022-23 Building Blocks Improvement Grants $65,226 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lorne Street Kindergarten at Fawkner Primary School." + ], + "field_latitude": ["-37.71562012", "-37.690803527832031"], + "field_latitude_longitude_value": ["-37.71562012,144.9744024"], + "field_latitude_value": ["-37.71562012"], + "field_longitude": ["144.9744024", "144.96038818359375"], + "field_longitude_value": ["144.9744024"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3060"], + "field_project_code": ["D2-15-5487", "15-5487", "D1-15-5487"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular Kindergarten", + "Building Blocks Improvement Grant - Upgrade", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q4 2023", "Q4 2021", "Q3 2023"], + "field_start_date": ["Q3 2023", "Q4 2020", "Q4 2022"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["40 Lorne St"], + "field_suburb": ["Fawkner"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21304], + "status": [true], + "title": ["Lorne Street Kindergarten at Fawkner Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1198c4e8-c914-49a3-bac9-f4cbd044edf2"] + }, + "sort": ["Lorne Street Kindergarten at Fawkner Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20929:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lowanna-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0transformed the current large open learning area\u00a0to create a more adaptive and collaborative setting for student learning. The new layout created four learning environments. With operable walls, the spaces are better suited to team-teaching and for student collaboration in various group sizes and configurations. This gives students new\u00a0opportunities to develop skills for independent learning and working in teams \u2013 valuable assets for their future learning and careers. Also included was\u00a0a new staff room and locker area. Internal refurbishments upgraded\u200b finishes, lighting and furniture\u200b\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$500,000 was allocated to the school in the 2016\u201317 State Budget update." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lowanna College" + ], + "field_latitude": ["-38.17504"], + "field_latitude_longitude_value": ["-38.17504,146.28538"], + "field_latitude_value": ["-38.17504"], + "field_longitude": ["146.28538"], + "field_longitude_value": ["146.28538"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["01-8821"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["72-96 Newark Avenue"], + "field_suburb": ["Newborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20929], + "status": [true], + "title": ["Lowanna College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["650e5d2f-7445-43d8-b88b-372545d56ece"] + }, + "sort": ["Lowanna College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19978:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lower-plenty-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the roof sheeting and skylights in the hall.", + "We built\u00a0a nature-based play area and sensory space.", + "\u200b\u200bWe delivered\u00a0a new architect-designed modular building to Lower Plenty Primary School to replace Block E with a new library.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $112,247 from the Minor Capital Works Fund.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In the 2017\u201318 State Budget, $660,000 was allocated to the school" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lower Plenty Primary School" + ], + "field_latitude": ["-37.726172", "-37.72883", "-37.72883"], + "field_latitude_longitude_value": ["-37.726172,145.115498"], + "field_latitude_value": ["-37.726172"], + "field_longitude": ["145.115498", "145.10811", "145.10811"], + "field_longitude_value": ["145.115498"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3093"], + "field_project_code": ["D2-01-1295", "D1-01-1295", "01-1295"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q3 2023", "Q3 2021", "Q4 2018"], + "field_start_date": ["Q2 2022", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["126-146 Main Road"], + "field_suburb": ["Lower Plenty"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19978], + "status": [true], + "title": ["Lower Plenty Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["09a1489b-88c9-4517-9bab-09163047c8cd"] + }, + "sort": ["Lower Plenty Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36994:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lucas-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-20T11:54:48+11:00"], + "field_about_project_processed": [ + "We are expanding the kindergarten to create space for up to 33 more local children per day. We are creating space for staff planning, children\u2019s toilets and outdoor space. These changes will help expand free kindergarten, as part of the Best Start, Best Life reforms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 4 of the 2023 Building Blocks Capacity Grant, $1,500,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lucas Kindergarten" + ], + "field_latitude": ["-37.54441988"], + "field_latitude_longitude_value": ["-37.54441988,143.7831843"], + "field_latitude_value": ["-37.54441988"], + "field_longitude": ["143.7831843"], + "field_longitude_value": ["143.7831843"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["15-5714"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["17 Coltman Plaza"], + "field_suburb": ["Lucas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36994], + "status": [true], + "title": ["Lucas Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b9e7120f-184a-427f-93d1-42132163a213"] + }, + "sort": ["Lucas Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20604:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lucas-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new\u00a0primary school. Lucas Primary School will help ease enrolment pressures at surrounding schools and meet future demand from a growing population. The new school includes state of the art general and specialist teaching spaces, administration areas and a performing arts and physical education building.\u200b\u200b\u00a0This project, designed by Architectus with K2LD and DesignInc, was the winner of \u2018Best Primary School Project\u2019 in the\u00a02020 Victorian School Design Awards. Cherish Early Learning Centre is located next to Lucas Primary School, helping local\u00a0children make\u00a0a smooth transition from pre-school and reducing the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Further information on the school can be found at its official Facebook page. \u200b \u200b School name Lucas Primary School is named after the Ballarat suburb where it is located.\u00a0 The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017-18 State Budget allocated funding to buy land in this area for a new school. The school received an additional $17.1 million in the 2018-19 State Budget for construction. In the 2019-20 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Lucas Primary School" + ], + "field_latitude": ["-37.547552"], + "field_latitude_longitude_value": ["-37.547552,143.781287"], + "field_latitude_value": ["-37.547552"], + "field_longitude": ["143.781287"], + "field_longitude_value": ["143.781287"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Inside the new Lucas Primary School"], + "field_postcode": ["3350"], + "field_project_code": ["01-5413"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["46 O'Shannassy Parade"], + "field_suburb": ["Lucas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20604], + "status": [true], + "title": ["Lucas Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d8168019-20c2-4ed3-b624-7ac4e9e1afc4"] + }, + "sort": ["Lucas Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21472:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lucknow-kindergarten"], + "changed": ["2023-08-01T10:13:39+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a kindergarten at Lucknow Primary School. The new kindergarten will include two learning rooms, providing 66 places to local 3 and 4-year-olds.\u00a0Having the kindergarten and school together may help local children make a smoother transition into primary school. It can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 Budget this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lucknow Kindergarten" + ], + "field_latitude": ["-37.81554"], + "field_latitude_longitude_value": ["-37.81554,147.62755"], + "field_latitude_value": ["-37.81554"], + "field_longitude": ["147.62755"], + "field_longitude_value": ["147.62755"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["K-01-1231"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Balmoral Crescent"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21472], + "status": [true], + "title": ["Lucknow Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1da97956-b90d-4380-8b2a-cff7e9d8b073"] + }, + "sort": ["Lucknow Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25375:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lucknow-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $402,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lucknow Primary School" + ], + "field_latitude": ["-37.812667"], + "field_latitude_longitude_value": ["-37.812667,147.630748"], + "field_latitude_value": ["-37.812667"], + "field_longitude": ["147.630748"], + "field_longitude_value": ["147.630748"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Lucknow Primary School." + ], + "field_postcode": ["3875"], + "field_project_code": ["01-1231"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["35 Howitt Avenue"], + "field_suburb": ["Eastwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25375], + "status": [true], + "title": ["Lucknow Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5b9258f3-cd7a-4b05-b52d-26a4dcf4678a"] + }, + "sort": ["Lucknow Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21075:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lumen-christi-school-point-cook"], + "changed": ["2023-11-28T13:58:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Lumen Christi School to construct a new building. The building has 8 general learning areas and facilities. We also helped refurbish administration spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Lumen Christi School (Point Cook)" + ], + "field_latitude": ["-37.8926344"], + "field_latitude_longitude_value": ["-37.8926344,144.7546224"], + "field_latitude_value": ["-37.8926344"], + "field_longitude": ["144.7546224"], + "field_longitude_value": ["144.7546224"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["02-1991"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["260\u2013278 Point Cook Road"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21075], + "status": [true], + "title": ["Lumen Christi School (Point Cook)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d3c16422-b21e-426e-8ab2-46f634eb7810"] + }, + "sort": ["Lumen Christi School (Point Cook)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20817:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lynall-hall-community-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built\u00a0a new administration area and a\u00a0multi-purpose room with specialist music resources. We also\u00a0revamped the main entry to the school, and refurbished\u00a0existing facilities.", + "We built\u00a0counselling and meeting rooms for the health and wellbeing services, as well as a calming sensory room for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.9 million was allocated to the school. In the 2016\u201317 State Budget, the school shared in $12 million planning funding that allocated to schools across the State.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lynall Hall Community School" + ], + "field_latitude": ["-37.816872"], + "field_latitude_longitude_value": ["-37.816872,145.002029"], + "field_latitude_value": ["-37.816872"], + "field_longitude": ["145.002029"], + "field_longitude_value": ["145.002029"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3121"], + "field_project_code": ["01-8003", "D1-01-8003"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2019", "Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cnr Gleadell & Highett St"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20817], + "status": [true], + "title": ["Lynall Hall Community School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2b9085e7-f5e4-435c-bf06-922191b5b79d"] + }, + "sort": ["Lynall Hall Community School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20634:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lynbrook-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished\u00a0an existing space\u00a0so the school could position\u00a0the library and EAL learning spaces together." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $357,616" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lynbrook Primary School" + ], + "field_latitude": ["-38.0477864"], + "field_latitude_longitude_value": ["-38.0477864,145.2486563"], + "field_latitude_value": ["-38.0477864"], + "field_longitude": ["145.2486563"], + "field_longitude_value": ["145.2486563"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3975"], + "field_project_code": ["01-5494"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Paterson Drive"], + "field_suburb": ["Lynbrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20634], + "status": [true], + "title": ["Lynbrook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fa32213e-2a45-408b-a7d4-602cd16c9df4"] + }, + "sort": ["Lynbrook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20816:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lyndale-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed the next stage of the school's master plan. We built a new learning environment block and upgraded the BER building.\u00a0", + "We built a new library and IT wing. The existing library was converted into a\u00a0staff administration facility with an extensive student services area. We also constructed a new Technology Art facility incorporating Food Tech.", + "\u200b\u200bStage 1 converted the existing hall into a performing arts centre with a caf\u00e9/canteen. The project also replaced the current science facilities with a single storey\u200b science, technology, engineering and mathematics (STEM) building which included\u00a0general purp\u200bose classrooms.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.8 million.", + "The first two stages of the upgrade and modernisation at the school received total of $16.8 million.", + "The first two stages of the upgrade and modernisation at the school received total of $16.8 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Lyndale Secondary College" + ], + "field_latitude": ["-37.955070495605469", "-37.957732", "-37.95756"], + "field_latitude_longitude_value": [ + "-37.955070495605469,145.21453857421875" + ], + "field_latitude_value": ["-37.955070495605469"], + "field_longitude": ["145.21453857421875", "145.206877", "145.20464"], + "field_longitude_value": ["145.21453857421875"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["D2-01-8000", "D1-01-8000", "01-8000"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q3 2023", "Q1 2020", "Q3 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["170-174 Gladstone Rd"], + "field_suburb": ["Dandenong North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20816], + "status": [true], + "title": ["Lyndale Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bddeef64-f2bf-471d-b11d-a438844bd29b"] + }, + "sort": ["Lyndale Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20737:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lyndhurst-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We replaced the perimeter fencing with steel fencing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2020 Minor Capital Works Fund, the school was allocated $303,165" + ], + "field_funding_type_name": ["Planning", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lyndhurst Secondary College" + ], + "field_latitude": ["-38.1158808500587"], + "field_latitude_longitude_value": [ + "-38.1158808500587,145.285286449791" + ], + "field_latitude_value": ["-38.1158808500587"], + "field_longitude": ["145.285286449791"], + "field_longitude_value": ["145.285286449791"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["D1-01-7108", "01-7108"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Subject to future funding", "Q2 2022"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["950 South Gippsland Highway"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20737], + "status": [true], + "title": ["Lyndhurst Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eafd52ff-cd65-4875-b87d-a637df354c99"] + }, + "sort": ["Lyndhurst Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20045:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lysterfield-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space including a water feature, timber decking and paving." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Lysterfield Primary School" + ], + "field_latitude": ["-37.9110664500034"], + "field_latitude_longitude_value": [ + "-37.9110664500034,145.276515400009" + ], + "field_latitude_value": ["-37.9110664500034"], + "field_longitude": ["145.276515400009"], + "field_longitude_value": ["145.276515400009"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["01-1866"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Bellfield Dr"], + "field_suburb": ["Lysterfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20045], + "status": [true], + "title": ["Lysterfield Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e172f87a-0974-458c-a578-fcbbb727caf1"] + }, + "sort": ["Lysterfield Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21044:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mackillop-catholic-regional-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported\u00a0Mackillop Catholic Regional College to\u00a0construct\u00a014 general learning areas,\u00a0refurbish general learning areas and\u00a0provide a library. As part of the project,\u00a0refurbishment works were\u00a0completed to provide staff work areas, student services and a car park. Existing reloctable buildings were\u00a0also demolished.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$2,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at MacKillop Catholic Regional College" + ], + "field_latitude": ["-37.912319"], + "field_latitude_longitude_value": ["-37.912319,144.665741"], + "field_latitude_value": ["-37.912319"], + "field_longitude": ["144.665741"], + "field_longitude_value": ["144.665741"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["02-1684"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Russell Street"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21044], + "status": [true], + "title": ["MacKillop Catholic Regional College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a5c2acd9-b86d-43ae-a624-d20f35239269"] + }, + "sort": ["MacKillop Catholic Regional College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20829:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/macrobertson-girls-high-school"], + "changed": ["2023-09-19T13:00:58+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to increase the number of students who can enrol at the school, in this development jointly-funded by the school. This builds on our earlier review of select entry schooling to ensure girls and boys have equal access to select entry schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $4 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at MacRobertson Girls High School." + ], + "field_latitude": ["-37.815460205078125"], + "field_latitude_longitude_value": [ + "-37.815460205078125,144.9671630859375" + ], + "field_latitude_value": ["-37.815460205078125"], + "field_longitude": ["144.9671630859375"], + "field_longitude_value": ["144.9671630859375"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3004"], + "field_project_code": ["01-8135"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["350-370 Kings Way"], + "field_suburb": ["Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20829], + "status": [true], + "title": ["MacRobertson Girls High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["932e366b-de25-4617-ae43-3bb21a26946f"] + }, + "sort": ["MacRobertson Girls High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20014:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/macarthur-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to upgrade the existing school playground.", + "We updated\u00a0classrooms, student toilets and\u00a0administration area, as well as built a covered area adjacent to the\u00a0outdoor sports court.\u200b\u200b We also\u00a0made general\u00a0repairs\u00a0to\u00a0the roof, replaced the windows, and upgraded paths,\u00a0driveways and\u00a0external lighting.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $65,120", + "In the 2016\u201317 State Budget, $299,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Macarthur Primary School" + ], + "field_latitude": ["-38.0309912", "-38.03099"], + "field_latitude_longitude_value": ["-38.0309912,142.0016333"], + "field_latitude_value": ["-38.0309912"], + "field_longitude": ["142.0016333", "142.00163"], + "field_longitude_value": ["142.0016333"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3286"], + "field_project_code": ["D1-01-1571", "01-1571"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2021", "Q2 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["23 Russell Street"], + "field_suburb": ["Macarthur"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20014], + "status": [true], + "title": ["Macarthur Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a5ea036c-13cc-4db4-b451-16f007f8bca7"] + }, + "sort": ["Macarthur Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20062:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/macarthur-street-primary-school"], + "changed": ["2023-10-26T11:26:30+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We redeveloped the student toilet block. It now has modern and comfortable amenities for students.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $448,665" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Macarthur Street Primary School" + ], + "field_latitude": ["-37.5515934"], + "field_latitude_longitude_value": ["-37.5515934,143.8579061"], + "field_latitude_value": ["-37.5515934"], + "field_longitude": ["143.8579061"], + "field_longitude_value": ["143.8579061"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-2022"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["401 Macarthur Street"], + "field_suburb": ["Soldiers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20062], + "status": [true], + "title": ["Macarthur Street Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a8a33df2-1868-4a3a-b9f9-62dca89062ef"] + }, + "sort": ["Macarthur Street Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28954:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/macedon-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We modernised the outdoor play area and swings and replaced old structures with modern ones. The new multi-play units and swings are sustainable and accessible and are designed to help children learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $64,262 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Macedon Kindergarten" + ], + "field_latitude": ["-37.42095171"], + "field_latitude_longitude_value": ["-37.42095171,144.5651934"], + "field_latitude_value": ["-37.42095171"], + "field_longitude": ["144.5651934"], + "field_longitude_value": ["144.5651934"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3440"], + "field_project_code": ["15-597"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["55 Bruce Street"], + "field_suburb": ["Macedon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28954], + "status": [true], + "title": ["Macedon Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["8e03c158-c925-4ab5-b968-021c4bb06e00"] + }, + "sort": ["Macedon Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20025:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/macedon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We redeveloped a multipurpose room to be a contemporary library learning hub.", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $369,125.", + "In Round 9 of the Inclusive Schools Fund, the project received $297,773" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Macedon Primary School." + ], + "field_latitude": ["-37.4189107", "-37.41869064"], + "field_latitude_longitude_value": ["-37.4189107,144.562417"], + "field_latitude_value": ["-37.4189107"], + "field_longitude": ["144.562417", "144.5626788"], + "field_longitude_value": ["144.562417"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3440"], + "field_project_code": ["01-1660", "D1-01-1660"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q3 2022", "Q4 2025"], + "field_start_date": ["Q4 2020", "Q4 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["67 Smith St"], + "field_suburb": ["Macedon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20025], + "status": [true], + "title": ["Macedon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["74319681-e04a-46fd-b199-6b02e52cc1e7"] + }, + "sort": ["Macedon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24603:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/macedon-ranges-shire-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping Macedon Ranges Shire Council complete feasibility studies, planning and design work for a number of kindergarten building projects. These projects would create more kindergarten places for local 3 and 4-year-olds. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $63,250 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Macedon Ranges Shire Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MRSCK"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24603], + "status": [true], + "title": [ + "Macedon Ranges Shire Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7054365e-6a0d-44e6-90ff-9f40e2118e9f"] + }, + "sort": [ + "Macedon Ranges Shire Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20568:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mackellar-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0built\u00a0inclusive play spaces with equipment that can be used by students with additional needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mackellar Primary School" + ], + "field_latitude": ["-37.71812"], + "field_latitude_longitude_value": ["-37.71812,144.77732"], + "field_latitude_value": ["-37.71812"], + "field_longitude": ["144.77732"], + "field_longitude_value": ["144.77732"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3037"], + "field_project_code": ["01-5297"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["29-35 Goldsmith Av"], + "field_suburb": ["Delahey"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20568], + "status": [true], + "title": ["Mackellar Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ba2ace17-0cd7-4494-9d31-35aa9f1c118b"] + }, + "sort": ["Mackellar Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20717:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/macleod-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new science building, created new primary school play areas and completed entry landscaping. We also demolished older buildings and facilities that were no longer needed.", + "We converted the tennis courts into a meditation garden.\u200b\u200b\u200b\u200b\u200b\u200b\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $492,900. In 2020, the school received $4.44 million.", + "In the 2015\u201316 State Budget, $5,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Macleod College" + ], + "field_latitude": ["-37.72919", "-37.72919"], + "field_latitude_longitude_value": ["-37.72919,145.07089"], + "field_latitude_value": ["-37.72919"], + "field_longitude": ["145.07089", "145.07091"], + "field_longitude_value": ["145.07089"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3085"], + "field_project_code": ["D1-01-6242", "01-6242"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Carwarp Street"], + "field_suburb": ["Macleod"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20717], + "status": [true], + "title": ["Macleod College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["81166e87-c7d7-410b-a8cb-a35bce656545"] + }, + "sort": ["Macleod College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36776:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/magpie-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $102,311" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Magpie Primary School" + ], + "field_latitude": ["-37.615709"], + "field_latitude_longitude_value": ["-37.615709,143.843266"], + "field_latitude_value": ["-37.615709"], + "field_longitude": ["143.843266"], + "field_longitude_value": ["143.843266"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3352"], + "field_project_code": ["01-2271"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["61 Docwra Street"], + "field_suburb": ["Magpie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36776], + "status": [true], + "title": ["Magpie Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["fe65c113-f4d9-45a9-93b3-d931329dd61f"] + }, + "sort": ["Magpie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20413:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mahogany-rise-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at the school. We will be building a new synthetic turf oval and providing fresh landscaping.", + "We\u00a0significantly upgraded\u00a0and modernised\u00a0Mahogany Rise Primary School\u00a0as part of\u00a0the\u00a0of\u00a0the Frankston North Education Plan. \u200b This included: innovative, flexible spaces that\u00a0support modern teaching practices, and allow the school to offer integrated family,\u00a0health and wellbeing services \u200bintegrating the early learning centre\u00a0 a\u00a0welcoming community area, inviting parents\u00a0and the wider community to share school resources.\u200b The early learning\u00a0centre includes the 'Our Place' model, a one-stop-shop for the community which aims to promote positive education outcomes for families and children. The Our Place model was developed as part of the partnership between the Department of Education\u00a0and the Colman Foundation. The model offers parents and families access to a range of services from one location, including: kindergarten for three-year-olds\u00a0(funded from 2022) funded\u00a0kindergarten for four-year-olds primary, secondary and adult education maternal and child health services health and wellbeing support training and job seeking services.\u00a0", + "Mahogany Rise Primary School used this funding to\u00a0build a community kitchen, as well as fit out the\u00a0inside of the community hub.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $700,000", + "In the 2017-18 State Budget, the Frankston North Education Plan project shared in $7 million planning funding. In the 2018-19 State Budget, $4.5 million was allocated to the school as part of the Frankston North Education Plan.", + "In the 2016-17 State Budget, $200,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mahogany Rise Primary School" + ], + "field_latitude": ["-38.125751"], + "field_latitude_longitude_value": ["-38.125751,145.157074"], + "field_latitude_value": ["-38.125751"], + "field_longitude": ["145.157074"], + "field_longitude_value": ["145.157074"], + "field_mappintype_name": ["Early childhood", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Mahogany Rise Primary School \u2013 upgrade and modernisation", + "Mahogany Rise Primary School - Lunch Program" + ], + "field_postcode": ["3200"], + "field_project_code": ["D2-01-4939", "D1-01-4939", "01-4939"], + "field_project_title": [ + "Upgrade and Modernisation - Oval and Landscaping", + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q3 2025", "Q1 2021"], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["25 Forster Avenue"], + "field_suburb": ["Frankston North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20413], + "status": [true], + "title": ["Mahogany Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c1a6d572-2400-4d13-8530-633be6fbd2a0"] + }, + "sort": ["Mahogany Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21444:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/maiden-gully-early-years-kindergarten-day-care-and-community-centre" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "A new integrated children's centre will enable the Maiden Gully community to access a high quality learning environment, delivering three and four year old kindergarten. The centre will also provide long day care and allied health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Maiden Gully Early Years Kindergarten, Day Care and Community Centre." + ], + "field_latitude": ["-36.7585371645039"], + "field_latitude_longitude_value": [ + "-36.7585371645039,144.230384831416" + ], + "field_latitude_value": ["-36.7585371645039"], + "field_longitude": ["144.230384831416"], + "field_longitude_value": ["144.230384831416"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["ELC-MG"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Bolitho Tce"], + "field_suburb": ["Maiden Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21444], + "status": [true], + "title": [ + "Maiden Gully Early Years Kindergarten, Day Care and Community Centre" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0b745be3-06eb-46bb-b4c1-1648372e9d9b"] + }, + "sort": [ + "Maiden Gully Early Years Kindergarten, Day Care and Community Centre" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20019:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/maiden-gully-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. We collaborated with school leaders to ensure that the upgrade helps them achieve their educational goals. We also made sure that improvements were targeted where they were needed most.", + "We built a new inclusive play space with shade structures to enable year-round use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $510,000 in planning funding. In the 2020\u201321 State Budget, the school received $4.59 million.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Maiden Gully Primary School" + ], + "field_latitude": ["-36.751998901367188", "-36.7441"], + "field_latitude_longitude_value": [ + "-36.751998901367188,144.20808410644531" + ], + "field_latitude_value": ["-36.751998901367188"], + "field_longitude": ["144.20808410644531", "144.21059"], + "field_longitude_value": ["144.20808410644531"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["D1-01-1592", "01-1592"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q1 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["10 Carolyn Way"], + "field_suburb": ["Maiden Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20019], + "status": [true], + "title": ["Maiden Gully Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["21a0c41a-24e6-4633-bb80-45f888e9616c"] + }, + "sort": ["Maiden Gully Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21308:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mainview-boulevard-family-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This will be a new early learning and community hub co-located with Dohertys\u00a0Creek\u00a0P-9\u200b\u200b College\u200b. This centre was previously known as\u00a0Truganina East Early Years Centre while in planning.\u00a0 The\u00a0Mainview Boulevard Family Learning Centre\u00a0will provide early education and specialist support services for children, community learning for adults, health services for local families,\u00a0and formal training in early years education and care.\u00a0 There will\u00a0also be a\u00a0multipurpose space which can be used for parent groups, playgroups and other community events.\u00a0\u200bThis approach will provide\u00a0a one-stop-shop for developing the potential of local children, supporting their families and building community bonds.\u200b\u200b\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $565,000 was allocated to this project. $650,000 was allocated to this project in the 2016\u201317 round." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mainview Boulevard Family Learning Centre" + ], + "field_latitude": ["-37.84331"], + "field_latitude_longitude_value": ["-37.84331,144.73345"], + "field_latitude_value": ["-37.84331"], + "field_longitude": ["144.73345"], + "field_longitude_value": ["144.73345"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-5586"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Elmhurst Rd and Mainview Blvd"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21308], + "status": [true], + "title": ["Mainview Boulevard Family Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4309e85e-7267-4baa-8fc3-e8db4f3bff10"] + }, + "sort": ["Mainview Boulevard Family Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19971:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/maldon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0and repaired\u00a0the soccer and football area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2019\u201320 School Pride and Sports Fund the school received $230,000 and an additional $83,000" + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Maldon Primary School" + ], + "field_latitude": ["-36.995941162109375"], + "field_latitude_longitude_value": [ + "-36.995941162109375,144.0662841796875" + ], + "field_latitude_value": ["-36.995941162109375"], + "field_longitude": ["144.0662841796875"], + "field_longitude_value": ["144.0662841796875"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3463"], + "field_project_code": ["01-1254"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["109 High Street"], + "field_suburb": ["Maldon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19971], + "status": [true], + "title": ["Maldon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0943bdc1-94d6-4f9d-a5db-fe31339c4ff7"] + }, + "sort": ["Maldon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21373:en", + "_score": null, + "_ignored": [ + "field_paragraph_body.keyword", + "field_paragraph_accordion_body.keyword" + ], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mallacoota-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Mallacoota Kindergarten was damaged significantly after heavy rainfall in January 2020. The site had suffered damage from smoke and ash during the New Year's Eve bushfires, which destroyed dozens of homes in Mallacoota and isolated the community for many days.The kindergarten had up to 24 children enrolled across three and four-year-old kinder in 2021. It is owned by the East Gippsland Shire Council and operated by YMCA Ballarat.\u00a0A temporary facility was established at the Mallacoota P-12 College while the council undertook remediation works and the children returned to their original kindergarten building. But a long-term solution was needed.On 27 February 2020, the Minister for Education announced up to $2.5 million to establish or reinstate a new kindergarten in Mallacoota as soon as possible. The new kindergarten was established using modular construction to ensure it was up and running as soon as possible.The community now have a modern facility with a new playground, landscaping and car parking on the Mallacoota P-12 site. This co-location benefits children, families and the staff of the two education services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the Minister for Education announced up to $2.5 million to establish or reinstate a new kindergarten in Mallacoota." + ], + "field_funding_type_name": ["Kindergarten"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mallacoota Kindergarten" + ], + "field_latitude": ["-37.55981408616406"], + "field_latitude_longitude_value": [ + "-37.55981408616406,149.7516384772509" + ], + "field_latitude_value": ["-37.55981408616406"], + "field_longitude": ["149.7516384772509"], + "field_longitude_value": ["149.7516384772509"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "As the next step in designing Mallacoota\u2019s new kindergarten, we asked the local community to share their ideas for the playground and outdoor spaces. This report summarises that feedback.", + "In February 2020, the Victorian Government announced up to $2.5 million to build a new kindergarten for Mallacoota after the original building was badly damaged by bushfire and storms. We aimed to do that as soon as possible, either at the original site or on the grounds of Mallacoota P-12 College. Following significant community consultation and site investigation works, the Minister for Early Childhood and the Minister for Education approved the Department of Education and Training\u2019s recommendation that Mallacoota P-12 College become the location for the new Mallacoota Kindergarten. The Department made its recommendation after considering stakeholder feedback, listening to the views of the community and learning the outcome of cultural heritage site investigations. Following community feedback and the fire engineering report, we are built the new kindergarten with a bushfire attack level (BAL) of 40. This means we considered the potential impact of embers, debris, heat and flames as we planned and designed the building, including what materials we used for the landscaping and playground.", + "We heard a range of ideas about the playground and outdoor spaces at the new kindergarten: The most important features include natural materials, open spaces and outdoor play equipment. The most popular features of the old kindergarten that participants wanted to see at the new site included the personalised bricks, heritage water pump and student murals. People also wanted fire protection, natural gardens, and links to the local community.", + "In May 2021, we began asking the community for feedback on the kindergarten\u2019s playground and outdoor spaces. Between 17 May to 7 June 2021, community members were given the opportunity to participate in an online survey. We received 56 responses, which helped develop a plan for playground and outdoor spaces at the new kindergarten. We heard from community members, parents, families and carers of children enrolled at the kindergarten. We also heard from the broader Mallacoota community. The community was asked to consider what outdoor play equipment they would like to be included on the new site. This report summarises what we heard from the Mallacoota community during this engagement.", + "We thank the Mallacoota community for their thoughtful feedback and suggestions during this difficult time. We have provided the community\u2019s ideas and feedback to the project team to consider while designing playground and outdoor spaces for the new kindergarten. We engaged with the YMCA, Parent Advisory Group, the Mallacoota P-12 College, East Gippsland Shire Council and Mallacoota Kindergarten educators as we completed the new Mallacoota Kindergarten.", + "You can access a designed version of this report: \u00a0" + ], + "field_paragraph_accordion_name": [ + "Introduction", + "Background", + "What we heard", + "About the engagement", + "Next steps", + "Designed report" + ], + "field_paragraph_body": [ + "Playground and outdoor spaces engagement", + "Site Announcement In April 2021, the Minister for Early Childhood and the Minister for Education approved the Department of Education and Training\u2019s recommendation that the Mallacoota P-12 College become the location for the new Mallacoota Kindergarten. The recommendation was informed by stakeholder feedback, listening to the views of the community and the outcome of cultural heritage site investigations. We engaged with the community and project stakeholders as we delivered the new kindergarten for Mallacoota Community Information Session - March 2021 Thank you for joining us at the information session on Monday 22 March 2021 at 7:30pm via Zoom with Dr Gordon and facilitator Gillian Hayman, to discuss the results of cultural heritage investigations, the importance of the Aboriginal Heritage Act 2006 and next steps for the project. The cultural heritage investigations found a significant number of cultural artefacts at the Greer St site, whilst no artefacts were found at the Mallacoota P-12 College site. For the Greer St site, the cultural heritage report \"strongly recommends\u2026 that no future ground disturbing impacts occur\u2026\". The information gathered during consultation and the site assessments was provided to the Minister for Early Childhood and the Minister for Education for final decision. Based on the finding of the cultural heritage investigations and the Department of Education and Training\u2019s commitment to the Aboriginal Heritage Act 2006, it recommended the school site, Mallacoota P-12 College, as the proposed location of the new Mallacoota Kindergarten You can contact us for a copy of the cultural heritage report and frequently asked questions from May 2021.\u00a0 Community Information Session - August 2020 Thank you to everybody who joined the VSBA, Bushfire Recovery Victoria (BRV) and trauma recovery specialist Dr Rob Gordon at the community information session on Saturday 29 August 2020 via Zoom. The event allowed us to discuss the options, opportunities and concerns detailed in the 'What We Heard' report. The next step is to undertake further cultural heritage assessments on both proposed sites (this will ensure any plans consider what is necessary to protect local Aboriginal cultural heritage). We have now collated the comments and feedback into a summary of the event and a list of frequently asked questions. You can contact us for a copy of the session summary, frequently asked questions, What We Heard report and project information from August 2020.", + "Explore more about kindergartens" + ], + "field_postcode": ["3892"], + "field_project_code": ["15-MK"], + "field_project_title": ["Kindergarten"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Hunter St"], + "field_suburb": ["Mallacoota"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21373], + "status": [true], + "title": ["Mallacoota Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fa2d7e8b-4929-44b6-9ab8-50928bf5b005"] + }, + "sort": ["Mallacoota Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20197:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mallacoota-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school entrance and car park, including resurfacing and safety improvements.", + "We refurbished the science block, administration, reception and staff areas. We replaced windows, lighting, roof, guttering and downpipe. We have maintained electrical work, repaired pavements, and built a new storage shed and a covered walkway to the library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $107,125.", + "In the 2019\u201320 School Pride and Sports Fund the school was allocated $904,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mallacoota P-12 College." + ], + "field_latitude": ["-37.5604608", "-37.559427"], + "field_latitude_longitude_value": ["-37.5604608,149.7537506"], + "field_latitude_value": ["-37.5604608"], + "field_longitude": ["149.7537506", "149.754296"], + "field_longitude_value": ["149.7537506"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3892"], + "field_project_code": ["01-3515", "D1-01-3515"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2022", "Q2 2022"], + "field_start_date": ["Q4 2020", "Q2 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["25 Bucknall St"], + "field_suburb": ["Mallacoota"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20197], + "status": [true], + "title": ["Mallacoota P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a724c426-efd4-4bdd-87e3-008ed99ce88b"] + }, + "sort": ["Mallacoota P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21403:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mallee-minors-childcare-centre-ouyen"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Mallee Track Health and Community Service upgraded\u00a0Mallee Minors Childrens Centre by expanding the centre's kinder capacity to allow more children access to the program.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015-16 Children's Facilities Capital Program $157,134 was allocated to the childcare centre." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mallee Minors Childcare Centre Ouyen" + ], + "field_latitude": ["-35.07119"], + "field_latitude_longitude_value": ["-35.07119,142.32579"], + "field_latitude_value": ["-35.07119"], + "field_longitude": ["142.32579"], + "field_longitude_value": ["142.32579"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3490"], + "field_project_code": ["ELC-18"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Hughes Street"], + "field_suburb": ["Ouyen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21403], + "status": [true], + "title": ["Mallee Minors Childcare Centre Ouyen"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9af85bc7-0929-4fd9-b6d5-bbe98600a49b"] + }, + "sort": ["Mallee Minors Childcare Centre Ouyen"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19990:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/malmsbury-primary-school"], + "changed": ["2023-11-09T09:29:38+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We demolished and rebuilt the student toilet block. The new facilities are safe, hygienic, and closer to the classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $499,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Malmsbury Primary School." + ], + "field_latitude": ["-37.1873787"], + "field_latitude_longitude_value": ["-37.1873787,144.3871104"], + "field_latitude_value": ["-37.1873787"], + "field_longitude": ["144.3871104"], + "field_longitude_value": ["144.3871104"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3446"], + "field_project_code": ["01-1408"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Cameron St"], + "field_suburb": ["Malmsbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19990], + "status": [true], + "title": ["Malmsbury Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["559db9f7-9780-4229-8d7b-60f3a27dfb74"] + }, + "sort": ["Malmsbury Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22341:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/malvern-central-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:23:49+11:00"], + "field_about_project_processed": [ + "We are providing new external decking and internal refurbishments including toilets in the gymnasium." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $495,609" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Malvern Central School" + ], + "field_latitude": ["-37.856009"], + "field_latitude_longitude_value": ["-37.856009,145.034401"], + "field_latitude_value": ["-37.856009"], + "field_longitude": ["145.034401"], + "field_longitude_value": ["145.034401"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3144"], + "field_project_code": ["01-1604"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Spring Road"], + "field_suburb": ["Malvern"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22341], + "status": [true], + "title": ["Malvern Central School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["627ebbf6-994b-48f4-8315-48f6f430f51b"] + }, + "sort": ["Malvern Central School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36782:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/malvern-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,799" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Malvern Primary School" + ], + "field_latitude": ["-37.871592"], + "field_latitude_longitude_value": ["-37.871592,145.038458"], + "field_latitude_value": ["-37.871592"], + "field_longitude": ["145.038458"], + "field_longitude_value": ["145.038458"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3145"], + "field_project_code": ["01-2586"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["17 Tooronga Road"], + "field_suburb": ["Malvern East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36782], + "status": [true], + "title": ["Malvern Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["56180ff4-c820-4cda-97fa-baa3678790bf"] + }, + "sort": ["Malvern Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27779:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/manangatang-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Manangatang P-12 College" + ], + "field_latitude": ["-35.056234"], + "field_latitude_longitude_value": ["-35.056234,142.884879"], + "field_latitude_value": ["-35.056234"], + "field_longitude": ["142.884879"], + "field_longitude_value": ["142.884879"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3546"], + "field_project_code": ["01-6235"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["4105 Mallee Hwy"], + "field_suburb": ["Manangatang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27779], + "status": [true], + "title": ["Manangatang P-12 College"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["4fbe0b5d-7bf7-4fb1-b668-0f0fb0b71b27"] + }, + "sort": ["Manangatang P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20441:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/manchester-primary-school"], + "changed": ["2023-07-24T15:31:16+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Manchester Primary School.\u00a0We will demolish Block B and build a new open plan classroom block with STEM and art learning space. We're also delivering a new school entry, reception and senior staff offices." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $4.704 million, with a further $0.79 million in 2023." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Manchester Primary School" + ], + "field_latitude": ["-37.775086"], + "field_latitude_longitude_value": ["-37.775086,145.306127"], + "field_latitude_value": ["-37.775086"], + "field_longitude": ["145.306127"], + "field_longitude_value": ["145.306127"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3138"], + "field_project_code": ["01-5009"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Monomeith Street"], + "field_suburb": ["Mooroolbark"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20441], + "status": [true], + "title": ["Manchester Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["05835858-8c47-402a-bfc9-d7782cb10d63"] + }, + "sort": ["Manchester Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20511:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mandama-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We built an inclusive indoor play space. \u200b\u200b\u200b\u200b\u200bWe transformed\u00a0a bike shed into an indoor/outdoor sensory play area to provide all students with opportunities to extend their body and movement awareness.\u00a0 \u200b \u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $421,258 from the Minor Capital Works Fund.", + "In 2017, the school received $200,000 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mandama Primary School" + ], + "field_latitude": ["-38.200395", "-38.19994"], + "field_latitude_longitude_value": ["-38.200395,144.327883"], + "field_latitude_value": ["-38.200395"], + "field_longitude": ["144.327883", "144.32832"], + "field_longitude_value": ["144.327883"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["D1-01-5185", "01-5185"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q1 2019"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["10 Corang Avenue"], + "field_suburb": ["Grovedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20511], + "status": [true], + "title": ["Mandama Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["86c92c69-003e-4d44-b9ed-a20e6593fa44"] + }, + "sort": ["Mandama Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20277:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/manifold-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded\u00a0and modernised Building C,\u00a0which contains the\u00a0administration and staff areas, classrooms, toilets and ancillary spaces. This upgrade has created additional spaces in the classrooms, a new entry into the school and\u00a0general internal and external refurbishment works.\u200b\u200b \u200b Our focus\u00a0was upgrading\u00a0a heritage-style building, where the solid double brick construction had\u00a0restricted the school\u00a0expanding\u00a0a\u00a0learning activity space. We achieved this by redesigning adjacent\u00a0support areas and making use of\u00a0previously inaccessible parts of the building.\u00a0 We also undertook significant maintenance of\u00a0the building, minimised solar gain into classrooms, upgraded\u00a0all external treatments including\u00a0guttering and fascia, as well as removing\u00a0asbestos. \u200bWe also renovated the front entry to address\u00a0congestion\u00a0and brought\u00a0disabled access up to compliance.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $839,000 has been allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Manifold Heights Primary School" + ], + "field_latitude": ["-38.13617"], + "field_latitude_longitude_value": ["-38.13617,144.3330499"], + "field_latitude_value": ["-38.13617"], + "field_longitude": ["144.3330499"], + "field_longitude_value": ["144.3330499"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3218"], + "field_project_code": ["01-4224"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["20-24 Strachan Avenue"], + "field_suburb": ["Manifold Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20277], + "status": [true], + "title": ["Manifold Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f822067b-aea4-4bf7-8a8a-c3b078c53a46"] + }, + "sort": ["Manifold Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21402:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/manna-gum-family-and-community-centre-interim-name" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0worked\u00a0with the City of Casey to\u00a0deliver a\u00a0new\u00a0integrated children\u2019s and community centre in fast-growing Clyde North. This centre was previously known as Kilora Family and Community Centre. This kindergarten is next to\u00a0Grayling Primary School. Having the kindergarten and school together may help local children make a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children. This community facility\u00a0includes: two maternal and child health consulting rooms, with a\u00a0waiting area three four-year-\u200bold kindergarten rooms with outdoor play space a large multipurpose community room and courtyard a staffed reception area with public Wi-Fi a public art installation.\u00a0 This intergenerational hub is a focal point for the community. It\u00a0improves\u00a0the accessibility, quality and integration of early childhood services in an area where demand was\u00a0exceeding what the existing services were able to\u00a0provide.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u20132018 Children's Facilities Capital Program $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Manna Gum Family And Community Centre" + ], + "field_latitude": ["-38.08091"], + "field_latitude_longitude_value": ["-38.08091,145.37357"], + "field_latitude_value": ["-38.08091"], + "field_longitude": ["145.37357"], + "field_longitude_value": ["145.37357"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["ELC-17"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2-16 Calgary Way"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21402], + "status": [true], + "title": ["Manna Gum Family And Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8064f7cf-baf5-4ec3-91e0-b4718addc892"] + }, + "sort": ["Manna Gum Family And Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22631:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/manna-gum-family-and-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are extending the northern and western outdoor play spaces. The northern area will include quiet, natural play areas. We\u2019ll upgrade the western area to promote inclusion, participation and a sense of belonging for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $360,600 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Manna Gum Family and Childrens Centre" + ], + "field_latitude": ["-37.48511919"], + "field_latitude_longitude_value": ["-37.48511919,144.5818204"], + "field_latitude_value": ["-37.48511919"], + "field_longitude": ["144.5818204"], + "field_longitude_value": ["144.5818204"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3437"], + "field_project_code": ["15-595"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["71 Robertson St"], + "field_suburb": ["Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22631], + "status": [true], + "title": ["Manna Gum Family and Childrens Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2a05b654-741b-4589-8760-4ef14dee4857"] + }, + "sort": ["Manna Gum Family and Childrens Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20942:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/manor-lakes-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building on our previous work to upgrade and expand Manor Lakes P-12 College. With this latest project, we will replace temporary facilities with permanent buildings that will allow the school to offer places to an extra 400 local students.", + "We upgraded the school\u2019s oval. We replaced the oval\u2019s surface, installed sports lighting and built a 4-wicket cricket net.", + "We expanded\u00a0and upgraded\u00a0the\u00a0school to ensure it\u00a0can better cope with\u00a0rapid enrolment growth\u00a0across\u00a0all year levels. The school consulted\u00a0with\u00a0students, teachers and the local community to identify and prioritise the school\u2019s building requirements.\u00a0 This considered the\u00a0curriculum needs of the school, as well as their future ambitions.\u00a0 The project delivered:\u00a0 a secondary centre with new classrooms and new\u00a0administration facilities a new caf\u00e9\u200b/canteen and student lounge\u00a0 facilities for trades learning\u00a0 a new health hub\u00a0with competition-grade netball courts\u00a0and outdoor learning spaces a new health hub with outdoor learning spaces\u00a0 covered walkways between buildings\u200b new basketball and oval areas for outdoor sports landscaping\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received at least $9.402 million.", + "In 2016\u201317, the school received $935,000 in Shared Facilities funding.", + "In the 2016\u201317 State Budget, $10.9 million has been allocated to this project. In Round 1 of the Inclusive Schools Fund, the school received $200,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Manor Lakes P-12 College" + ], + "field_latitude": ["-37.8767379", "-37.876730"], + "field_latitude_longitude_value": ["-37.8767379,144.6028167"], + "field_latitude_value": ["-37.8767379"], + "field_longitude": ["144.6028167", "144.602030"], + "field_longitude_value": ["144.6028167"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3024"], + "field_project_code": ["D2-01-8848", "D1-01-8848", "01-8848"], + "field_project_title": [ + "Upgrade and Modernisation - Building Capacity", + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2024", "Q1 2023", "Q3 2019"], + "field_start_date": ["Q2 2021", "Q3 2018", "Q1 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["2-50 Minindee Road"], + "field_suburb": ["Wyndham Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20942], + "status": [true], + "title": ["Manor Lakes P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b91ff43e-a41c-48f2-96ab-2f57c3f828a9"] + }, + "sort": ["Manor Lakes P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33022:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/manorvale-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Manorvale Primary School" + ], + "field_latitude": ["-37.89406"], + "field_latitude_longitude_value": ["-37.89406,144.643892"], + "field_latitude_value": ["-37.89406"], + "field_longitude": ["144.643892"], + "field_longitude_value": ["144.643892"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-5091"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["232-246 Greaves St North"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33022], + "status": [true], + "title": ["Manorvale Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["6a2f20d7-462f-4119-9e87-5f898c88a90d"] + }, + "sort": ["Manorvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21068:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mansfield-autism-statewide-services"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping Mansfield Autism Statewide Services build the first stage of a new school campus to meet their growing enrolment demand. The facilities will include five general learning area classrooms with separate amenities; vocational, life experience, therapy and training spaces with observations areas; and a break out space \u2013 all built with high resilience and low sensory design for autistic students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $4.877 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mansfield Autism Statewide Services" + ], + "field_latitude": ["-37.07812110025731"], + "field_latitude_longitude_value": [ + "-37.07812110025731,146.10743287184943" + ], + "field_latitude_value": ["-37.07812110025731"], + "field_longitude": ["146.10743287184943"], + "field_longitude_value": ["146.10743287184943"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3722"], + "field_project_code": ["02-1935"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["128 Ogilvies Road"], + "field_suburb": ["Mansfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21068], + "status": [true], + "title": ["Mansfield Autism Statewide Services"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a12394d4-e35f-41da-a593-1f0b748e3a96"] + }, + "sort": ["Mansfield Autism Statewide Services"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21331:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mansfield-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are restoring and expanding the historic Mechanics Institute building in preparation for the roll-out of funded kindergarten for three year olds.", + "We are partnering with Mansfield Shire Council to add a third teaching space and amenities to Mansfield Kindergarten. We are also making modifications to the existing classrooms to accommodate the new spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 20\u201321 Building Blocks Improvement Grants $300,000 was allocated to the project.", + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $1,460,676 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mansfield Kindergarten" + ], + "field_latitude": ["-37.0545861", "-37.0545861"], + "field_latitude_longitude_value": ["-37.0545861,146.0888387"], + "field_latitude_value": ["-37.0545861"], + "field_longitude": ["146.0888387", "146.0888387"], + "field_longitude_value": ["146.0888387"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3722"], + "field_project_code": ["15-816", "D1-15-816"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade", + "Building Blocks Capacity Grant - Expansion" + ], + "field_q_complete": ["Q3 2024", "Q3 2024"], + "field_start_date": ["Q4 2020", "Q4 2020"], + "field_status_name": ["Construction", "Construction"], + "field_street_address": ["64-66 Ailsa St"], + "field_suburb": ["Mansfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21331], + "status": [true], + "title": ["Mansfield Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["414b71fe-c2ec-408a-ac6b-a63a47d98556"] + }, + "sort": ["Mansfield Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19947:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mansfield-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0built a\u00a0learning centre, refurbished\u00a0the St Johns Building, and created\u00a0new pathways and landscaping.\u00a0 The new learning centre includes: six new rooms with an adjacent\u00a0breakout space staff areas\u00a0with a direct connection to the north and eastern courtyards student, staff & disabled toilets covered walkways &\u00a0outdoor learning space. \u00a0 Minor refurbishment works\u00a0have been completed\u00a0in the library block (St Johns Building). We also completed external works that include: new courtyards new seating landscaping external covered access to connect the\u00a0St Johns Building to the new learning centre additional paving and seating areas for the middle terrace and connecting the original school building southern deck to the north of the new learning centre.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u20132017 State Budget $112,000 was allocated to the school as part of the Planned Maintenance Program. In the 2017\u201318 State Budget, $2.1 million was allocated to this school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mansfield Primary School" + ], + "field_latitude": ["-37.055720"], + "field_latitude_longitude_value": ["-37.055720,146.085570"], + "field_latitude_value": ["-37.055720"], + "field_longitude": ["146.085570"], + "field_longitude_value": ["146.085570"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3722"], + "field_project_code": ["01-1112"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Apollo Street"], + "field_suburb": ["Mansfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19947], + "status": [true], + "title": ["Mansfield Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dc3d3142-5ace-4e43-ba0d-bbce09593f26"] + }, + "sort": ["Mansfield Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20818:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mansfield-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bStage 2 works for Mansfield Secondary College\u00a0included a new gymnasium, extending\u00a0the STEM centre, and improving\u00a0the language centre and hospitality classroom.", + "We've completed\u00a0stage 1 of upgrading\u00a0and modernising\u00a0facilities at Mansfield Secondary College. This project involved\u00a0constructing\u00a0a new science, technology, engineering and mathematics (STEM) centre with general learning spaces, visual arts spaces and science laboratories equipped to cater for all year levels including VET students.\u00a0 We also completed external works\u00a0to provide new courtyards, seating, landscaping and\u00a0external covered access to connect buildings. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget the school was allocated $4.85 million .", + "The 2016-17 State Budget allocated $3.4 million to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mansfield Secondary College" + ], + "field_latitude": ["-37.062222"], + "field_latitude_longitude_value": ["-37.062222,146.088120"], + "field_latitude_value": ["-37.062222"], + "field_longitude": ["146.088120"], + "field_longitude_value": ["146.088120"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3722"], + "field_project_code": ["D1-01-8010", "01-8010"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q3 2021", "Q1 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["15 View Street"], + "field_suburb": ["Mansfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20818], + "status": [true], + "title": ["Mansfield Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fec271db-f095-455e-b539-5c9db1a1e326"] + }, + "sort": ["Mansfield Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28677:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mansfield-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this kindergarten. This includes building updates to improve learning areas, and removing asbestos that may pose a future health risk. A licensed technician will remove asbestos sheeting in line with occupational health and safety regulations. They will monitor air quality throughout the process and certify the building is safe. They will complete the asbestos removal when children and staff are offsite." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $290,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mansfield Street Kindergarten." + ], + "field_latitude": ["-38.03270976"], + "field_latitude_longitude_value": ["-38.03270976,145.340178"], + "field_latitude_value": ["-38.03270976"], + "field_longitude": ["145.340178"], + "field_longitude_value": ["145.340178"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["15-109"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["11 Mansfield St"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28677], + "status": [true], + "title": ["Mansfield Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["4e3cbc00-fefa-4a08-a15e-19420525b74b"] + }, + "sort": ["Mansfield Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20567:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/maramba-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school gym's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We built\u00a0a Natural Outdoor Sensory Learning Environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $404,502 from the Minor Capital Works Fund.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Maramba Primary School" + ], + "field_latitude": ["-38.003437", "-38.00784"], + "field_latitude_longitude_value": ["-38.003437,145.304125"], + "field_latitude_value": ["-38.003437"], + "field_longitude": ["145.304125", "145.30835"], + "field_longitude_value": ["145.304125"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["D1-01-5293", "01-5293"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q3 2021"], + "field_start_date": ["Q4 2023", "Q4 2019"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Maramba Dr"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20567], + "status": [true], + "title": ["Maramba Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["525f2ef1-df05-4935-979e-a0fb64ba1a27"] + }, + "sort": ["Maramba Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21144:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/maranatha-christian-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build a new senior school building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Maranatha Christian School" + ], + "field_latitude": ["-37.967986"], + "field_latitude_longitude_value": ["-37.967986,145.274268"], + "field_latitude_value": ["-37.967986"], + "field_longitude": ["145.274268"], + "field_longitude_value": ["145.274268"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["03-1679"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["104 Reema Boulevard"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21144], + "status": [true], + "title": ["Maranatha Christian School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["65c8c835-7710-4a1c-900e-06cd096f9b5f"] + }, + "sort": ["Maranatha Christian School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28133:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marian-college-ararat"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish existing learning areas to build a new STEM facility which will include a library and resource centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marian College (Ararat)." + ], + "field_latitude": ["-37.28466260159827"], + "field_latitude_longitude_value": [ + "-37.28466260159827,142.938458297244" + ], + "field_latitude_value": ["-37.28466260159827"], + "field_longitude": ["142.938458297244"], + "field_longitude_value": ["142.938458297244"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3377"], + "field_project_code": ["01-0411"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2025"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["304 Barkly St"], + "field_suburb": ["Ararat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28133], + "status": [true], + "title": ["Marian College (Ararat)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["7386fa59-f569-4e5c-b3b9-a38d295d00e0"] + }, + "sort": ["Marian College (Ararat)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28134:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marian-college-myrtleford"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish existing relocatable buildings and replace them with a new well-being and learning building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marian College (Myrtleford)." + ], + "field_latitude": ["-37.28461992036375"], + "field_latitude_longitude_value": [ + "-37.28461992036375,142.93838319539643" + ], + "field_latitude_value": ["-37.28461992036375"], + "field_longitude": ["142.93838319539643"], + "field_longitude_value": ["142.93838319539643"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3737"], + "field_project_code": ["01-1694"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["11 Prince St"], + "field_suburb": ["Myrtleford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28134], + "status": [true], + "title": ["Marian College (Myrtleford)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["f42abe8f-ce78-43cf-8930-22b0358139b2"] + }, + "sort": ["Marian College (Myrtleford)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23309:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/maribyrnong-community-centre-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are refurbishing and expanding Maribyrnong Community Centre. This will create 2 large kindergarten rooms, more outdoor play space and an office. Following these works, the centre will be able to run 2 rooms of funded kindergarten for 3 and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Building Blocks Capacity Building Grant, $1,799,952 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Maribyrnong Community Centre Kindergarten (interim name)" + ], + "field_latitude": ["-37.76712916"], + "field_latitude_longitude_value": ["-37.76712916,144.8876849"], + "field_latitude_value": ["-37.76712916"], + "field_longitude": ["144.8876849"], + "field_longitude_value": ["144.8876849"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3032"], + "field_project_code": ["15-MARIB"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["9 Randall St"], + "field_suburb": ["Maribyrnong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23309], + "status": [true], + "title": ["Maribyrnong Community Centre Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["566e369b-ad82-465f-8ad2-e11adac0a2e5"] + }, + "sort": ["Maribyrnong Community Centre Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21325:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/marie-williams-kilmore-family-and-childrens-centre" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the\u00a0centre in preparation for the roll-out of subsidised kindergarten for three-year-olds. This project has doubled the existing kindergarten capacity through the construction of two new rooms and a minor expansion of an existing room. We also integrated the kindergarten and maternal and child health facilities to create a one-stop-shop for the Kilmore community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020-21 Building Blocks Capacity Grants $1.86 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marie Williams Kilmore Family and Children's Centre." + ], + "field_latitude": ["-37.296089172363281"], + "field_latitude_longitude_value": [ + "-37.296089172363281,144.95211791992187" + ], + "field_latitude_value": ["-37.296089172363281"], + "field_longitude": ["144.95211791992187"], + "field_longitude_value": ["144.95211791992187"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3764"], + "field_project_code": ["15-709"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["3 Skehan Pl"], + "field_suburb": ["Kilmore"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21325], + "status": [true], + "title": ["Marie Williams Kilmore Family and Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["13b6f19f-0945-49c1-9521-1c8420795db8"] + }, + "sort": ["Marie Williams Kilmore Family and Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21091:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marist-college-bendigo"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school build a science, technology, engineering, arts and mathematics (STEAM) building.", + "We supported Marist College Bendigo to build a\u00a0new Year 5 and 6 Learning Centre area and associated areas.\u200b\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,000,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marist College Bendigo." + ], + "field_latitude": ["-36.7316802", "-36.73168"], + "field_latitude_longitude_value": ["-36.7316802,144.2217623"], + "field_latitude_value": ["-36.7316802"], + "field_longitude": ["144.2217623", "144.22176"], + "field_longitude_value": ["144.2217623"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["D1-02-2098", "02-2098"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q3 2023", "Q1 2018"], + "field_start_date": ["Q3 2021", "Q1 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["95 Golf Links Road"], + "field_suburb": ["Maiden Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21091], + "status": [true], + "title": ["Marist College Bendigo"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["20f3847a-857d-4e82-abe7-ceaf75e92df7"] + }, + "sort": ["Marist College Bendigo"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21007:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marist-sion-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported Marist-Sion College to\u00a0demolish\u00a0five aging relocatable classrooms and replace\u00a0them with six modern learning areas and associated spaces better suited for 21st century learning\u200b\u200b.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2017, $2 million was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marist-Sion College" + ], + "field_latitude": ["-38.157742"], + "field_latitude_longitude_value": ["-38.157742,145.906570"], + "field_latitude_value": ["-38.157742"], + "field_longitude": ["145.906570"], + "field_longitude_value": ["145.906570"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["02-1497"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["165 Burke Street"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21007], + "status": [true], + "title": ["Marist-Sion College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["14c6df21-0263-489d-87a3-10080872dd4e"] + }, + "sort": ["Marist-Sion College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20459:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marlborough-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a sensory and passive play garden, providing an alternate play space and\u00a0offering stimulating sensory experiences for all children, particularly those\u00a0with additional needs. It includes calm zones for quiet, self-focused reflection, creative zones with opportunities for students to engage with a range of tactile surfaces, and energy zones\u00a0with equipment for more active play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Marlborough Primary School" + ], + "field_latitude": ["-37.83602"], + "field_latitude_longitude_value": ["-37.83602,145.23052"], + "field_latitude_value": ["-37.83602"], + "field_longitude": ["145.23052"], + "field_longitude_value": ["145.23052"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["01-5045"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Hardy Cr"], + "field_suburb": ["Heathmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20459], + "status": [true], + "title": ["Marlborough Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["027dbadd-223e-4798-bc39-d488ba919c31"] + }, + "sort": ["Marlborough Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20625:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marnebek-school-cranbourne"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding we are upgrading and modernising the school, including constructing additional permanent buildings. We're building 3\u00a0new double-storey learning neighbourhoods at the New Holland Drive and Corrigans Road campuses. The New Holland Drive campus will also receive a new resource-intensive learning building. While at Corrigans Road, we'll also be doing extra\u00a0refurbishment and landscaping. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $38.843 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Marnebek School Cranbourne" + ], + "field_latitude": ["-38.106643676757813"], + "field_latitude_longitude_value": [ + "-38.106643676757813,145.27919006347656" + ], + "field_latitude_value": ["-38.106643676757813"], + "field_longitude": ["145.27919006347656"], + "field_longitude_value": ["145.27919006347656"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5464"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["9 New Holland Dr"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20625], + "status": [true], + "title": ["Marnebek School Cranbourne"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["56ebb286-9247-40a5-9355-5f0a04ee0973"] + }, + "sort": ["Marnebek School Cranbourne"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34294:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marong-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-31T09:43:45+10:00"], + "field_about_project_processed": [ + "We are building an early learning centre with 3 kindergarten rooms, 2 maternal and child health rooms and additional space for community programs. This will allow the centre to offer 99 kinder places to local 3 and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2023 Building Blocks Capacity Building Grants, $5,500,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of Marong Kindergarten" + ], + "field_latitude": ["-36.73382726"], + "field_latitude_longitude_value": ["-36.73382726,144.1331206"], + "field_latitude_value": ["-36.73382726"], + "field_longitude": ["144.1331206"], + "field_longitude_value": ["144.1331206"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3515"], + "field_project_code": ["15-818"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["36 Torrens St"], + "field_suburb": ["Marong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34294], + "status": [true], + "title": ["Marong Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["61ba6614-9dfd-47e4-b377-08e0b04831e0"] + }, + "sort": ["Marong Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20251:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marong-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a multipurpose performing arts centre, and\u00a0repurposed Block C for outside of school hours care.\u00a0We also\u00a0reconfigured\u00a0office space for a general purpose classroom and staff lounge, and delivered an additional two classrooms.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This includes funding for Marong Primary School. In the 2019\u201320 State Budget, the school received $6.403 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Marong Primary School" + ], + "field_latitude": ["-36.73537"], + "field_latitude_longitude_value": ["-36.73537,144.13581"], + "field_latitude_value": ["-36.73537"], + "field_longitude": ["144.13581"], + "field_longitude_value": ["144.13581"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3515"], + "field_project_code": ["01-400"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Leslie Street"], + "field_suburb": ["Marong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20251], + "status": [true], + "title": ["Marong Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["746d9c23-c3da-4a0d-91fa-6f14877e0b2c"] + }, + "sort": ["Marong Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36656:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/maroona-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are upgrading the multipurpose hardcourt with new synthetic grass and line marking. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $105,395 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Maroona Primary School" + ], + "field_latitude": ["-37.432795"], + "field_latitude_longitude_value": ["-37.432795,142.858473"], + "field_latitude_value": ["-37.432795"], + "field_longitude": ["142.858473"], + "field_longitude_value": ["142.858473"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3377"], + "field_project_code": ["01-1943"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["7431 Mortlake-ararat Road"], + "field_suburb": ["Maroona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36656], + "status": [true], + "title": ["Maroona Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["7bea4e24-e4a5-408e-bb92-46cea8ce969b"] + }, + "sort": ["Maroona Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24591:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/maroondah-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Maroondah City Council employ someone to oversee kindergarten planning and design. They will develop a series of kindergarten building projects to create more places for local children. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Maroondah City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MARCC"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24591], + "status": [true], + "title": [ + "Maroondah City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5fa52678-3e56-454e-9a08-148b759986e5"] + }, + "sort": [ + "Maroondah City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21199:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marrang-kindergarten"], + "changed": ["2023-10-02T13:09:25+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are expanding this kindergarten. We are building 2 modular kindergarten rooms, providing 66 additional kindergarten places for the local community. The kindergarten will include an outdoor play space.", + "We helped the Northern Grampians Shire Council plan an expansion of Marrang Kindergarten. The plan considered how to make more kindergarten places for 3 and 4-year-olds.", + "In partnership with Horsham & District Kindergarten Association, we have upgraded Marrang Kindergarten to make their outdoor spaces inclusive for kids of all abilities to enjoy. The project delivered new accessible\u00a0play spaces, a\u00a0sensory garden and\u00a0pathways,\u00a0making playtime fun for everyone. \u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years and was approved in Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream.", + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project.", + "In 2019\u201320, this project was allocated $97,818 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Planning Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marrang Kindergarten" + ], + "field_latitude": ["-37.06089", "-37.06089"], + "field_latitude_longitude_value": ["-37.06089,142.76359"], + "field_latitude_value": ["-37.06089"], + "field_longitude": ["142.76359", "142.76359"], + "field_longitude_value": ["142.76359"], + "field_mappintype_name": [ + "Early childhood", + "Early childhood", + "Early childhood" + ], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3380"], + "field_project_code": ["D2-15-1222", "D1-15-1222", "15-1222"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular", + "Building Blocks Planning Grant", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023", "Q4 2023", "Q4 2020"], + "field_start_date": ["Q3 2023", "Q1 2020"], + "field_status_name": ["Construction", "Planning", "Complete"], + "field_street_address": ["Darcy St"], + "field_suburb": ["Stawell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21199], + "status": [true], + "title": ["Marrang Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e2ed63d9-4cf6-41d4-bb88-50c3b7dba2c2"] + }, + "sort": ["Marrang Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21134:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mary-queen-of-heaven-greenvale"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping to build this new school's general learning building and associated spaces.", + "We supported the first stage of building this new Catholic primary school in Greenvale." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $5 million", + "Under the 2020-21 capital funding program for non-government schools, the school received $4 million." + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mary Queen of Heaven Catholic Primary School, Greenvale" + ], + "field_latitude": ["-37.629761", "-37.6297006218077"], + "field_latitude_longitude_value": ["-37.629761,144.885119"], + "field_latitude_value": ["-37.629761"], + "field_longitude": ["144.885119", "144.886175070547"], + "field_longitude_value": ["144.885119"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3059"], + "field_project_code": ["D1-02-2248", "02-GRN"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic", + "Non-Government Schools Capital Fund - New School" + ], + "field_q_complete": ["TBC", "Q2 2023"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["French Road"], + "field_suburb": ["Greenvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21134], + "status": [true], + "title": ["Mary Queen of Heaven Catholic Primary School, Greenvale"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3533c488-ec6c-4403-b033-f6a0c0ebe17a"] + }, + "sort": ["Mary Queen of Heaven Catholic Primary School, Greenvale"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20940:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/maryborough-education-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created a sensory playground and an inclusive outdoor learning space. This area has been developed to be environmentally sustainable.", + "\u200b\u200bThe school used the\u00a0$250,000\u00a0allocation\u00a0for ground works and landscaping its\u00a0entrance.\u200b \u200bThe School Improvement Fund supports small school projects that contribute to the community's pride in the school and help to foster a great relationship between the school and its local community.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund.", + "In the 2015\u201316 State Budget, $250,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Maryborough Education Centre" + ], + "field_latitude": ["-37.04178", "-37.04178"], + "field_latitude_longitude_value": ["-37.04178,143.72245"], + "field_latitude_value": ["-37.04178"], + "field_longitude": ["143.72245", "143.72245"], + "field_longitude_value": ["143.72245"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3465"], + "field_project_code": ["D1-01-8845", "01-8845"], + "field_project_title": [ + "Inclusive Schools Fund", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["102-192 Balaclava Rd"], + "field_suburb": ["Maryborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20940], + "status": [true], + "title": ["Maryborough Education Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bbd32fa0-d0f9-4194-bab4-d1db69569030"] + }, + "sort": ["Maryborough Education Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21078:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marymede-catholic-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to extend the performing arts area, which will incorporate 4 specialised dance and drama spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $3.45 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marymede Catholic College." + ], + "field_latitude": ["-37.6439898"], + "field_latitude_longitude_value": ["-37.6439898,145.0893862"], + "field_latitude_value": ["-37.6439898"], + "field_longitude": ["145.0893862"], + "field_longitude_value": ["145.0893862"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3752"], + "field_project_code": ["02-2032"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Williamsons Rd"], + "field_suburb": ["South Morang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21078], + "status": [true], + "title": ["Marymede Catholic College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["28e5c1f3-8414-4c4d-8104-3a7b6d19a4fb"] + }, + "sort": ["Marymede Catholic College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21404:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marymede-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Marymede Catholic College have built\u00a0a new kindergarten on the college site. The kindergarten\u00a0offers\u00a0a 4-year-old and 3-year-old kindergarten program.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016-2017 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marymede Early Learning Centre" + ], + "field_latitude": ["-37.64244"], + "field_latitude_longitude_value": ["-37.64244,145.09088"], + "field_latitude_value": ["-37.64244"], + "field_longitude": ["145.09088"], + "field_longitude_value": ["145.09088"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3752"], + "field_project_code": ["ELC-19"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Williamsons Road"], + "field_suburb": ["South Morang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21404], + "status": [true], + "title": ["Marymede Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3a70d278-81cb-420a-abae-2bbbe0e807b8"] + }, + "sort": ["Marymede Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23311:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/marymede-early-learning-centre-doreen"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We built an early learning centre at Marymede Catholic College. The centre helps 3 and 4-year-olds access funded kindergarten in the area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $2,200,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Marymede Early Learning Centre - Doreen" + ], + "field_latitude": ["-37.59864497"], + "field_latitude_longitude_value": ["-37.59864497,145.1156431"], + "field_latitude_value": ["-37.59864497"], + "field_longitude": ["145.1156431"], + "field_longitude_value": ["145.1156431"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["15-DOREE"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["95 Cookes Rd"], + "field_suburb": ["Doreen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23311], + "status": [true], + "title": ["Marymede Early Learning Centre - Doreen"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d01abec6-2c0b-4122-9899-62e4b410a582"] + }, + "sort": ["Marymede Early Learning Centre - Doreen"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28965:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/marysville-and-district-kindergarten-association-inc" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We are repainting inside the building and replacing the flooring." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $84,363 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Marysville and District Kindergarten Association Inc" + ], + "field_latitude": ["-37.51172509"], + "field_latitude_longitude_value": ["-37.51172509,145.7492933"], + "field_latitude_value": ["-37.51172509"], + "field_longitude": ["145.7492933"], + "field_longitude_value": ["145.7492933"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3779"], + "field_project_code": ["15-6"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["15 Falls Rd"], + "field_suburb": ["Marysville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28965], + "status": [true], + "title": ["Marysville and District Kindergarten Association Inc"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["61f5baa0-ea4f-4011-bddb-f4faab38c682"] + }, + "sort": ["Marysville and District Kindergarten Association Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21032:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mater-christi-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0supported\u00a0Mater Christi College to upgrade existing Science and STEM learning areas and associated spaces.\u00a0\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mater Christi College" + ], + "field_latitude": ["-37.91078"], + "field_latitude_longitude_value": ["-37.91078,145.35954"], + "field_latitude_value": ["-37.91078"], + "field_longitude": ["145.35954"], + "field_longitude_value": ["145.35954"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3160"], + "field_project_code": ["02-1644"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Bayview Road"], + "field_suburb": ["BELGRAVE"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21032], + "status": [true], + "title": ["Mater Christi College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fb74af01-c31e-4bc1-91b3-485d8ae571be"] + }, + "sort": ["Mater Christi College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20819:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/matthew-flinders-girls-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We carried out roof repairs. We also refurbished the interior of the Hall.", + "\u200b\u200b\u200bWe\u00a0upgraded\u00a0the\u00a0facilities on the main campus, which was\u00a0the first step to consolidating the school's\u00a0two campuses on a single site. The Embling Wing was\u00a0refurbished to include a new library, three modern science labs, an innovation and maker space, and flexible learning areas with\u00a0break-out spaces for group or independent work. We upgraded the Music Block to accommodate\u00a0the main office as well as a food technology classroom. \u200b\u200b", + "We\u00a0upgraded the existing wellbeing hub, including adding an art space. To increase flexibility in these learning areas, we installed partitions. We\u00a0also built a sensory courtyard and a sunken sensory garden with egg-shaped seating.", + "We built an inclusive play space at Matthew Flinders Girls Secondary College. The space has been designed to help students make social connections and develop their fitness." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $496,645.", + "In the 2016\u201317 State Budget, $7.8 million was allocated to the school. In the 2019\u201320 State Budget, the school received $800,000.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In 2019, $119,446 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Matthew Flinders Girls Secondary College" + ], + "field_latitude": ["-38.149587", "-38.150110", "-38.14918"], + "field_latitude_longitude_value": ["-38.149587,144.353208"], + "field_latitude_value": ["-38.149587"], + "field_longitude": ["144.353208", "144.358500", "144.3533"], + "field_longitude_value": ["144.353208"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": [ + "D3-01-8022", + "01-8022", + "D1-01-8022", + "D2-01-8022" + ], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Upgrade and Modernisation", + "Inclusive Schools Fund \u2013 Round 4", + "Inclusive Schools Fund - Round 5" + ], + "field_q_complete": ["Q3 2023", "Q1 2020", "Q4 2019", "Q2 2021"], + "field_start_date": ["Q4 2021", "Q1 2018", "Q4 2018", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["2 Little Ryrie St"], + "field_suburb": ["Geelong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20819], + "status": [true], + "title": ["Matthew Flinders Girls Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d32b88fe-c4ac-4d52-9ba7-4ff38a07c8dc"] + }, + "sort": ["Matthew Flinders Girls Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21043:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mazenod-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We're helping the school refurbish a building to modernise: general learning areas specialist science, technology, engineering, arts and maths (STEAM) spaces an administration area staff and student toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mazenod College" + ], + "field_latitude": ["-37.9155573000121"], + "field_latitude_longitude_value": [ + "-37.9155573000121,145.164939299996" + ], + "field_latitude_value": ["-37.9155573000121"], + "field_longitude": ["145.164939299996"], + "field_longitude_value": ["145.164939299996"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3170"], + "field_project_code": ["02-1673"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Kernot Ave"], + "field_suburb": ["Mulgrave"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21043], + "status": [true], + "title": ["Mazenod College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["534ca239-6f81-4275-90f1-08d114f1e7c1"] + }, + "sort": ["Mazenod College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36731:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/mcclelland-college-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at McClelland Secondary College in Frankston, next to Ballam Park Primary School.\u00a0The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.\u00a0The centre may also include other spaces for community use.Between 2030\u20132032, Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of McClelland College Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-38.14632"], + "field_latitude_longitude_value": ["-38.14632,145.158453"], + "field_latitude_value": ["-38.14632"], + "field_longitude": ["145.158453"], + "field_longitude_value": ["145.158453"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["15-MSC-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["31 Belar Avenue"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36731], + "status": [true], + "title": [ + "McClelland College Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4e403542-f8a2-4fb0-bb8a-4880613d9944"] + }, + "sort": [ + "McClelland College Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20935:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mcclelland-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the Year 8 Learning Centre to provide a flexible teaching and learning space for students.", + "We upgraded the school. This work included:constructing a new competition grade gym and refurbishing the existing onerefurbishing the science wing, trades block, STEAM room, staff room, library conversion and performing arts areapart demolishing the music buildingdemolishing the covered waylandscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $370,165.", + "In the 2016\u201317 State Budget, $5.8 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at McClelland Secondary College." + ], + "field_latitude": ["-38.144213050073", "-38.14533"], + "field_latitude_longitude_value": [ + "-38.144213050073,145.158818550064" + ], + "field_latitude_value": ["-38.144213050073"], + "field_longitude": ["145.158818550064", "145.15763"], + "field_longitude_value": ["145.158818550064"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at McClelland Secondary College." + ], + "field_postcode": ["3199"], + "field_project_code": ["D1-01-8835", "01-8835"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q1 2019"], + "field_start_date": ["Q4 2020", "Q1 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Belar Av"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20935], + "status": [true], + "title": ["McClelland Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a61255bb-f918-4c06-b6c0-f53406207b63"] + }, + "sort": ["McClelland Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20292:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mckinnon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We helped resurface the oval with artificial turf and installed fencing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "The school received $280,000 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": [ + "Planning", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at McKinnon Primary School." + ], + "field_latitude": ["-37.908049"], + "field_latitude_longitude_value": ["-37.908049,145.052795"], + "field_latitude_value": ["-37.908049"], + "field_longitude": ["145.052795"], + "field_longitude_value": ["145.052795"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["D1-01-4366", "01-4366"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Subject to future funding", "Q2 2018"], + "field_start_date": ["Q2 2023", "Q2 2017"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["253 Tucker Rd"], + "field_suburb": ["Ormond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20292], + "status": [true], + "title": ["McKinnon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2fbf6a1b-f9fa-4623-867e-aadfb8fd73a2"] + }, + "sort": ["McKinnon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20828:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mckinnon-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a second campus for McKinnon Secondary College in the Virginia Park East Bentleigh precinct, opening in 2022. The state-of-the-art school complements the existing campus by catering to the diverse needs of all students, while supporting the growing demand for local secondary school places. The name for this new campus \u2013 East Campus \u2013 reflects the location of the site in the local area. Facilities The new campus has the following facilities: a 4-storey building running the length of the site outdoor sports amenities with feature landscaping modern learning environments for science, technology, design, art, music, and drama a gymnasium with retractable seating and a commercial kitchen, which could be shared for community use. Design consultation More than 230 students, teachers, parents and community members from McKinnon and the surrounding area participated in a consultation in August/September 2018 on the design, features and use of the planned campus. We have incorporated the main themes they raised into the master plan: Build on McKinnon's community spirit, school reputation and commitment to excellence Need more capacity and facilities for this growing school community Existing school design and branding should be used to connect the two campuses Share events, safe access and technology will help connect the two campuses Outdoor recreation areas, green spaces and communal areas are important for connection and retreat.", + "We have built\u00a0a 3-storey VCE centre with specialist science teaching facilities, senior study, flexible learning areas and general purpose classrooms. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2018\u201319 State Budget allocated $4.1 million for early works on a second campus at this school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools.", + "In the 2015\u201316 State Budget, $9 million was allocated to the school for upgrade and modernisations." + ], + "field_funding_type_name": [ + "New School Campus", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the build of McKinnon Secondary College." + ], + "field_latitude": ["-37.911858", "-37.90931"], + "field_latitude_longitude_value": ["-37.911858,145.048747"], + "field_latitude_value": ["-37.911858"], + "field_longitude": ["145.048747", "145.02554"], + "field_longitude_value": ["145.048747"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/McKinnonSC_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["01-8125", "D1-01-8125"], + "field_project_title": [ + "New School Campus - East Campus", + "Upgrade and Modernisation - McKinnon Campus" + ], + "field_q_complete": ["Q1 2022", "Q3 2018"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["291a McKinnon Road"], + "field_suburb": ["McKinnon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20828], + "status": [true], + "title": ["McKinnon Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5d4c5c2b-7803-4965-969a-5dc1183afa1e"] + }, + "sort": ["McKinnon Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21284:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mcleans-road-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the City of Whittlesea rebuild Mcleans Road Kindergarten, creating more kindergarten places for local three and four-year-olds. The centre will also provide playgroups, family support services and a maternal and child health outreach program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019-2020 Children's Facilities Capital Program $1,000,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at McLeans Road Kindergarten" + ], + "field_latitude": ["-37.694839"], + "field_latitude_longitude_value": ["-37.694839,145.044949"], + "field_latitude_value": ["-37.694839"], + "field_longitude": ["145.044949"], + "field_longitude_value": ["145.044949"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3083"], + "field_project_code": ["15-4808"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["151 McLeans Rd"], + "field_suburb": ["Bundoora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21284], + "status": [true], + "title": ["McLeans Road Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["69e6eb6d-6121-488b-ae8b-8e5880af0eda"] + }, + "sort": ["McLeans Road Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20563:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/meadowglen-primary-school"], + "changed": ["2023-08-03T15:19:23+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe have built\u00a0a multi-purpose inclusive play space and learning area, with an accessible playground, safety flooring and shading.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, $200,000 was allocated to the school from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Meadowglen Primary School." + ], + "field_latitude": ["-37.64336"], + "field_latitude_longitude_value": ["-37.64336,145.0535"], + "field_latitude_value": ["-37.64336"], + "field_longitude": ["145.0535"], + "field_longitude_value": ["145.0535"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Meadowglen Primary School." + ], + "field_postcode": ["3076"], + "field_project_code": ["01-5286"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["22-48 Meadow Glen Dr"], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20563], + "status": [true], + "title": ["Meadowglen Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["32c0e76c-5d4d-4a30-9318-d86d4d65cd9d"] + }, + "sort": ["Meadowglen Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22609:en", + "_score": null, + "_ignored": [ + "field_paragraph_body.keyword", + "field_paragraph_accordion_body.keyword" + ], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/meadowglen-primary-school-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Meadowglen Primary School. This 2-room centre provides 66 kindergarten places and opens into an outdoor learning and play space. Having the kindergarten and school together may help local children make a smoother transition into primary school and can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 Budget, this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Meadowglen Primary School Kindergarten." + ], + "field_latitude": ["-37.64317122"], + "field_latitude_longitude_value": ["-37.64317122,145.0531303"], + "field_latitude_value": ["-37.64317122"], + "field_longitude": ["145.0531303"], + "field_longitude_value": ["145.0531303"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Construction of Meadowglen Primary School Kindergarten is underway. This kindergarten is being built using modular construction, which means the bulk of the building works will take place off-site. Builders will start to prepare the local construction site in late August and the kindergarten is planned to open for Term 1, 2023.", + "Kindergartens built using modular construction are an efficient solution for delivering quality buildings in short timeframes. They are constructed in a factory in sections known as \u201cmodules\u201d. These modules are delivered to the kindergarten site, where builders assemble them, connect utilities and complete outdoor areas. Constructing the modules offsite minimises disruptions to the community and kindergarten. The process also reduces the time required for a traditional build and gives children faster access to high-quality learning environments. Learn more about Modular Kindergarten facilities.", + "For information on kindergarten enrolments, please contact the City of Whittlesea or email keo@whittlesea.vic.gov.au ." + ], + "field_paragraph_accordion_name": [ + "When will construction start and how long will it take?", + "Why are you using modular construction?", + "How can I enrol?" + ], + "field_paragraph_body": [ + "Watch how modular kindergartens are assembled Kyneton Kindergarten \u00a0is a modular kindergarten, which opened next to\u00a0 Kyneton Primary School \u00a0in 2022. It took just 8 weeks from delivery of the modular building to the kindergarten site to complete the project. Landscaping began a few weeks before the modules were delivered and was completed in line with the building works." + ], + "field_paragraph_title": ["Frequently Asked Questions"], + "field_postcode": ["3076"], + "field_project_code": ["15-MDGK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Meadow Glen Dr"], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22609], + "status": [true], + "title": ["Meadowglen Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b2004199-0ab9-4166-8987-302b1f92af2d"] + }, + "sort": ["Meadowglen Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20644:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/meadows-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Meadows Primary School, adding new facilities that will allow it to offer places to an extra 200 local students. We built a new single-storey building that includes 10 collaborative learning spaces, student amenities and staff work spaces. We also delivered outdoor learning areas and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $5.86 million, which is a share in $130.1 million from the Established Areas Program." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Meadows Primary School" + ], + "field_latitude": ["-37.688110"], + "field_latitude_longitude_value": ["-37.688110,144.929184"], + "field_latitude_value": ["-37.688110"], + "field_longitude": ["144.929184"], + "field_longitude_value": ["144.929184"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["01-5524"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["41 Gerbert St"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20644], + "status": [true], + "title": ["Meadows Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1922265f-74a4-4b03-b32f-69fa87776844"] + }, + "sort": ["Meadows Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21307:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/meadows-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the kindergarten in preparation for the roll-out of subsidised kindergarten for three-year-olds. This project will improve the quality of the learning environment and increase capacity, ensuring local children have access to two years of funded kindergarten from 2022.", + "We refurbished the flooring to help integrate the older building with the new kindergarten room. We also added a new nappy-change facility." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $564,250 was allocated to the project.", + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $229,500 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Meadows Primary School Kindergarten." + ], + "field_latitude": ["-37.6875419", "-37.68773097"], + "field_latitude_longitude_value": ["-37.6875419,144.9293049"], + "field_latitude_value": ["-37.6875419"], + "field_longitude": ["144.9293049", "144.9296849"], + "field_longitude_value": ["144.9293049"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["15-5585", "D1-15-5585"], + "field_project_title": [ + "Building Blocks Capacity Grant - Expansion", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022", "Q1 2022"], + "field_start_date": ["Q4 2020", "Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["41 Gerbert St"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21307], + "status": [true], + "title": ["Meadows Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ae9222e8-be23-46a9-b991-1f2264c2a059"] + }, + "sort": ["Meadows Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20606:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/meeniyan-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the toilet blocks.", + "We upgraded and modernised facilities at Meeniyan (previously\u00a0Tarwin Valley Primary School), including building an administration block at the school entrance. We designed the building\u00a0in a similar style to the neighbouring BER building, while prioritising modern design.\u00a0\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $258,128.", + "In the 2018\u201319 State Budget $500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Meeniyan Primary School." + ], + "field_latitude": ["-38.5794451", "-38.579739"], + "field_latitude_longitude_value": ["-38.5794451,146.0156997"], + "field_latitude_value": ["-38.5794451"], + "field_longitude": ["146.0156997", "146.015076"], + "field_longitude_value": ["146.0156997"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3956"], + "field_project_code": ["D1-01-5420", "01-5420"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q2 2020"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["6 Geale St"], + "field_suburb": ["Meeniyan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20606], + "status": [true], + "title": ["Meeniyan Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8cd94af2-889f-4ca8-9457-c5eaf638fbab"] + }, + "sort": ["Meeniyan Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20973:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melba-secondary-college"], + "changed": ["2023-07-26T16:15:17+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We rebuilt Melba Secondary College to bring the junior and senior campuses together on one site, giving students state-of-the-art facilities. The 2016\u201317 State Budget funding built new facilities, including three double-storey buildings to\u00a0provide space for growing enrolments. Students are now\u00a0able to collaborate in flexible modern learning spaces, and the school has gained\u00a0new administration offices, a library and cafeteria. The first stage of the rebuild of Melba Secondary College, completed in June 2018 for $18 million, won the award for Best School Project\u00a0\u2013 Above $5 million at the\u00a02018 Victorian School Design Awards\u200b.", + "\u200bWe built\u00a0a Science Technology Engineering Arts and Maths (STEAM) building\u00a0and a\u00a0competition-standard basketball stadium (developed with Sports and Recreation Victoria and the Kilsyth Basketball Club).\u200b This project, designed by Y2 Architecture, was a finalist for Best School Project \u2013 Between $5 million and $10 million in the\u00a02020 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "The 2015\u201316 State Budget allocated $500,000 in planning funding. The school has received an additional $17.9 million in the 2016\u201317 State Budget.", + "The 2018\u201319 State Budget allocated $11.05 million to the project. This project also received $1.5 million from the Shared Facilities Fund." + ], + "field_funding_type_name": [ + "Planning", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Melba Secondary College" + ], + "field_latitude": ["-37.789288"], + "field_latitude_longitude_value": ["-37.789288,145.282211"], + "field_latitude_value": ["-37.789288"], + "field_longitude": ["145.282211"], + "field_longitude_value": ["145.282211"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["D2-01-8912", "01-8912", "D1-01-8912"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation - Stage 1", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": [ + "Subject to future funding", + "Q2 2018", + "Q2 2020" + ], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["Brentnall Road"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20973], + "status": [true], + "title": ["Melba Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["abc15f60-7865-4891-aa2b-435469336c66"] + }, + "sort": ["Melba Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25464:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melbourne-montessori-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "The kindergarten had recently moved, and the new outdoor environment was not designed for kindergarten children. We improved the outdoor environment and landscaping to make the kindergarten more inclusive for children of all abilities and to better reflect the surrounding natural environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $90,050 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Melbourne Montessori School" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3162"], + "field_project_code": ["15- 183"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds - Caulfield Campus" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["6 Roselea St"], + "field_suburb": ["Caulfield South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25464], + "status": [true], + "title": ["Melbourne Montessori School"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["3b50498c-12ff-4360-b51b-3e2c3cec3f41"] + }, + "sort": ["Melbourne Montessori School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21145:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melbourne-rudolf-steiner-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded Melbourne Rudolf Steiner Kindergarten. We\u00a0extended the indoor area to include an accessible covered veranda and deck. This enables all-weather play and increases play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u20132020 Children's Facilities Capital Program $53,064 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Melbourne Rudolf Steiner Kindergarten" + ], + "field_latitude": ["-37.777193"], + "field_latitude_longitude_value": ["-37.777193,145.249474"], + "field_latitude_value": ["-37.777193"], + "field_longitude": ["145.249474"], + "field_longitude_value": ["145.249474"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["03-1706"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["213 Wonga Road"], + "field_suburb": ["Warranwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21145], + "status": [true], + "title": ["Melbourne Rudolf Steiner Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5af000a9-12a8-490a-a6ae-3f62dee576fd"] + }, + "sort": ["Melbourne Rudolf Steiner Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21241:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melbourne-university-family-club-co-operative"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Melbourne University Family Club Co-Cooperative upgraded bathroom facilities, including a more accessible toddler toilet and change-bench areas. They also made renovations to the nursery extension." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $201,661 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Melbourne University Family Club Co-operative" + ], + "field_latitude": ["-37.796117073506984"], + "field_latitude_longitude_value": [ + "-37.796117073506984,144.96615785187572" + ], + "field_latitude_value": ["-37.796117073506984"], + "field_longitude": ["144.96615785187572"], + "field_longitude_value": ["144.96615785187572"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3053"], + "field_project_code": ["15-3056"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["427 Cardigan Street"], + "field_suburb": ["Carlton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21241], + "status": [true], + "title": ["Melbourne University Family Club Co-operative"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7dc7dc67-b757-4b61-bb0f-efd665cd60ff"] + }, + "sort": ["Melbourne University Family Club Co-operative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21160:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melton-christian-college"], + "changed": ["2023-10-26T12:09:01+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to build a new Corburns Road campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Melton Christian College." + ], + "field_latitude": ["-37.643277"], + "field_latitude_longitude_value": ["-37.643277,144.576327"], + "field_latitude_value": ["-37.643277"], + "field_longitude": ["144.576327"], + "field_longitude_value": ["144.576327"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["03-1894"], + "field_project_title": [ + "Non-Government Schools Capital Fund - New School" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["674 Coburns Rd"], + "field_suburb": ["Toolern Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21160], + "status": [true], + "title": ["Melton Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f58a0a81-0527-4dbf-be5a-684ee5fea14a"] + }, + "sort": ["Melton Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26211:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/melton-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-12T14:19:34+10:00"], + "field_about_project_processed": [ + "We are helping Melton City Council employ someone to oversee kindergarten planning and design. With the council, we have a vision to build several kindergartens over the next decade that can offer more than 2,400 funded kindergarten places. This employee will help make this vision a reality." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022-23 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Melton City Council Kindergarten Infrastructure Planning Project" + ], + "field_latitude": ["-37.68203019"], + "field_latitude_longitude_value": ["-37.68203019,144.5870399"], + "field_latitude_value": ["-37.68203019"], + "field_longitude": ["144.5870399"], + "field_longitude_value": ["144.5870399"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["15-MCC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["232 High St"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26211], + "status": [true], + "title": [ + "Melton City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["122d7c88-a697-466d-b442-334069f60c10"] + }, + "sort": [ + "Melton City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20821:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melton-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will expand Melton Secondary College to give students better learning opportunities. We will rebuild Block T and upgrade the soccer/rugby pitch.", + "We are upgrading the school's oval and constructing a new sports pavilion. The community will have access to both facilities for AFL football training and matches outside of school hours.", + "\u200b\u200bWe\u00a0established an educational precinct for\u00a0Melton Secondary College\u00a0and\u00a0Melton\u00a0Specialist School,\u200b which\u00a0share a single site on Coburns Road in Melton, whilst still remaining separate school campuses.\u200b\u200b\u200b We built\u00a0a new administration building with wellbeing offices, a\u00a0staff lounge, a\u00a0conference room and a carpark.\u200b\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $8.87 million", + "In 2016\u201317 Shared Facilities Fund, the school received $3.3 million.", + "In the 2017\u201318 State Budget, $2.5 million was allocated to this school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Melton Secondary College." + ], + "field_latitude": ["-37.681753", "-37.68106"], + "field_latitude_longitude_value": ["-37.681753,144.568216"], + "field_latitude_value": ["-37.681753"], + "field_longitude": ["144.568216", "144.56891"], + "field_longitude_value": ["144.568216"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["D2-01-8027", "D1-01-8027", "01-8027"], + "field_project_title": [ + "Upgrade and Modernisation - Block T and Sports Pitch", + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2026", "Q4 2022", "Q1 2019"], + "field_start_date": ["Q2 2023", "Q4 2017"], + "field_status_name": ["Design", "Construction", "Complete"], + "field_street_address": ["Coburns Road"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20821], + "status": [true], + "title": ["Melton Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["77becd04-b6be-457c-beb0-325851c794f7"] + }, + "sort": ["Melton Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33023:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melton-south-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Melton South Primary School" + ], + "field_latitude": ["-37.70872"], + "field_latitude_longitude_value": ["-37.70872,144.574264"], + "field_latitude_value": ["-37.70872"], + "field_longitude": ["144.574264"], + "field_longitude_value": ["144.574264"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["01-3717"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["38 - 46 Exford Road"], + "field_suburb": ["Melton South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33023], + "status": [true], + "title": ["Melton South Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["55242f69-9920-4458-b79b-4b36a2b70e6a"] + }, + "sort": ["Melton South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20502:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melton-specialist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school and built a senior learning building. This school has benefited from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million.", + "\u200b\u200bWe established an educational precinct for\u00a0Melton Secondary College\u00a0and Melton\u00a0Specialist School, which\u00a0share a single site on Coburns Road in Melton, whilst still remaining separate school campuses.\u200b \u200b We built: a new administration building to provide a welcoming and identifiable entry a new multi-purpose building\u00a0which includes a multi-purpose hall and food technology kitchen with adjoining dining area which can be accessed via a separate community entrance and used after-hours for local community or school events to encourage community involvement in the school. new allied health consulting suites\u200b\u200b. See the\u00a0Melton Specialist Sch\u200bool website\u200b\u00a0or\u00a0Facebook\u00a0for more information\u00a0\u200b\u200b\u200b", + "\u200bWe built a series of outdoor landscaped spaces, an amphitheatre with performance deck, musical and play equipment, and a pergola.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $9.656 million.", + "In the 2016\u201317 State Budget, $5.5 million has been allocated to the school.", + "The school received $200,000 in Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Melton Specialist School" + ], + "field_latitude": ["-37.683391571044922", "-37.68143"], + "field_latitude_longitude_value": [ + "-37.683391571044922,144.58543395996094" + ], + "field_latitude_value": ["-37.683391571044922"], + "field_longitude": ["144.58543395996094", "144.56829"], + "field_longitude_value": ["144.58543395996094"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["D2-01-5162", "01-5162", "D1-01-5162"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2023", "Q1 2019", "Q2 2017"], + "field_start_date": ["Q4 2020", "Q1 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["159-211 Coburns Rd"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20502], + "status": [true], + "title": ["Melton Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fef87193-5a47-487b-9fb7-90f7586e4674"] + }, + "sort": ["Melton Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23142:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melton-uniting-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-09T14:17:09+11:00"], + "field_about_project_processed": [ + "We are building a multi-sensory, natural discovery play space for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Building Blocks Inclusion Grant, $176,003 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Melton Uniting Kindergarten" + ], + "field_latitude": ["-37.67811379"], + "field_latitude_longitude_value": ["-37.67811379,144.5908479"], + "field_latitude_value": ["-37.67811379"], + "field_longitude": ["144.5908479"], + "field_longitude_value": ["144.5908479"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["15-842"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Building and Playgrounds" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["15 Yuille St"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23142], + "status": [true], + "title": ["Melton Uniting Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5942fb15-ef93-4259-8975-2cf6f7f85d41"] + }, + "sort": ["Melton Uniting Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28955:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melton-west-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We upgraded the playground. These upgrades have helped children of all ages and abilities interact with the space. The playground has become more accessible, and children are able to connect more with nature." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $65,725 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Melton West Preschool" + ], + "field_latitude": ["-38.14852645"], + "field_latitude_longitude_value": ["-38.14852645,144.5751768"], + "field_latitude_value": ["-38.14852645"], + "field_longitude": ["144.5751768"], + "field_longitude_value": ["144.5751768"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["15-840"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Westmelton Dr"], + "field_suburb": ["Melton West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28955], + "status": [true], + "title": ["Melton West Preschool"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["66f3e6c0-9e05-4ec5-b1c3-d3e56291705f"] + }, + "sort": ["Melton West Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20451:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/melton-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised facilities,\u00a0including: relocating\u00a0portable classrooms demolishing student toilet blocks, two permanent classrooms, the canteen and the multipurpose/music building constructing\u00a0a gymnasium with canteen facilities, and adjacent music and art buildings landscaping works. Planning was\u00a0funded\u00a0from the 2016\u201317 State Budget, and investment from the 2018\u201319 State Budget allowed\u00a0us to complete\u00a0construction.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, the school shared in $12 million in planning funding. The school has received an additional $6.4 million in the 2018\u201319 State Budget." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Melton West Primary School." + ], + "field_latitude": ["-37.677437"], + "field_latitude_longitude_value": ["-37.677437,144.567490"], + "field_latitude_value": ["-37.677437"], + "field_longitude": ["144.567490"], + "field_longitude_value": ["144.567490"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["01-5036"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Westmelton Drive"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20451], + "status": [true], + "title": ["Melton West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3d959798-6f15-420e-8395-d926d39ebda6"] + }, + "sort": ["Melton West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20418:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mentone-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a master plan for the school, focusing\u00a0on providing much-needed additional capacity to increase enrolments for local students. Further funding allowed us to deliver the first stage of this plan, including a new learning centre, oval and landscaping.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the state for planning. This includes funding for this school. In the 2020\u201321 State Budget, the school received $4 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mentone Park Primary School." + ], + "field_latitude": ["-37.97954"], + "field_latitude_longitude_value": ["-37.97954,145.08278"], + "field_latitude_value": ["-37.97954"], + "field_longitude": ["145.08278"], + "field_longitude_value": ["145.08278"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3194"], + "field_project_code": ["01-4955"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Broome Av"], + "field_suburb": ["Mentone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20418], + "status": [true], + "title": ["Mentone Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1f9e3521-8e19-4224-89a9-3b19bd99deb7"] + }, + "sort": ["Mentone Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20103:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/menzies-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0the school resurface basketball and netball courts and other asphalted areas.", + "We created an inviting and inclusive outdoor socialisation and play space for disadvantaged, mainstream and specialist setting students to share.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $135,125.", + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Menzies Creek Primary School." + ], + "field_latitude": ["-37.9174204", "-37.91756"], + "field_latitude_longitude_value": ["-37.9174204,145.3942688"], + "field_latitude_value": ["-37.9174204"], + "field_longitude": ["145.3942688", "145.3942099"], + "field_longitude_value": ["145.3942688"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3159"], + "field_project_code": ["D1-01-2457", "01-2457"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2021", "Q2 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["12 School Rd"], + "field_suburb": ["Menzies Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20103], + "status": [true], + "title": ["Menzies Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0b3ce3a3-beaa-445a-a268-f8511b9e02df"] + }, + "sort": ["Menzies Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20958:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merbein-p-10-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including the east and west wings of the main building. We are also building a STEM (science, technology, engineering and maths) building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $5.937 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Merbein P-10 College" + ], + "field_latitude": ["-34.1693354"], + "field_latitude_longitude_value": ["-34.1693354,142.0710941"], + "field_latitude_value": ["-34.1693354"], + "field_longitude": ["142.0710941"], + "field_longitude_value": ["142.0710941"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3505"], + "field_project_code": ["01-8886"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["188-206 Commercial Street"], + "field_suburb": ["Merbein"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20958], + "status": [true], + "title": ["Merbein P-10 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b80080d4-a316-4585-94ea-1a7afde76edc"] + }, + "sort": ["Merbein P-10 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21041:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mercy-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe supported Mercy College to refurbish\u00a0four specialist spaces, 22 general learning spaces\u00a0and associated areas.\u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools $1,000,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mercy College" + ], + "field_latitude": ["-37.75533"], + "field_latitude_longitude_value": ["-37.75533,144.96398"], + "field_latitude_value": ["-37.75533"], + "field_longitude": ["144.96398"], + "field_longitude_value": ["144.96398"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["02-1661"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["760 Sydney Road"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21041], + "status": [true], + "title": ["Mercy College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9d993426-da58-4b87-9a6f-8f55b7387b04"] + }, + "sort": ["Mercy College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20715:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merino-consolidated-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have upgraded and modernised facilities at the school, refurbishing\u00a0classrooms and facilities in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $170,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Merino Consolidated School." + ], + "field_latitude": ["-37.711071"], + "field_latitude_longitude_value": ["-37.711071,141.548355"], + "field_latitude_value": ["-37.711071"], + "field_longitude": ["141.548355"], + "field_longitude_value": ["141.548355"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3310"], + "field_project_code": ["01-6237"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["49 Paschendale Rd"], + "field_suburb": ["Merino"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20715], + "status": [true], + "title": ["Merino Consolidated School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0f87531d-bad7-48d8-95c2-2030567c9974"] + }, + "sort": ["Merino Consolidated School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20966:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mernda-central-p-12-college"], + "changed": ["2023-07-12T09:40:49+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bMernda Central P\u201312 College is a new school serving families in the suburb of Mernda.\u00a0\u200bThe school opened for students, Prep to Year 7 in Term 1, 2017.\u200b\u200b The Prep to 6 component of the school accommodates up to 400 students and the Year 7 to 12 component can accommodate up to 880 students. \u200b\u200b\u200bThe school facilities were designed with the local community in mind and include: an additional multi-purpose space that can be used by the school during school hours and by the YMCA out of school hours to provide a range of community services and programs; a performing arts theatre, music room and rehearsal space; an expanded gymnasium built to Netball Victoria standards; a learn to swim pool; a kitchen to allow for food technology and community cooking programs\u200b; embedded environmental sustainability education via the CERES ResourceSmart Schools program initiative; conference and meeting rooms for local community use.", + "We helped build a bike shed." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for the Public Private Partnership Project across regional and metropolitan Victoria.", + "In the 2020 Minor Capital Works Fund, the school was allocated $308,796." + ], + "field_funding_type_name": ["New School", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Mernda Central P-12 College." + ], + "field_latitude": ["-37.60537", "-37.6052253"], + "field_latitude_longitude_value": ["-37.60537,145.09049"], + "field_latitude_value": ["-37.60537"], + "field_longitude": ["145.09049", "145.088325"], + "field_longitude_value": ["145.09049"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["01-8897", "D1-01-8897"], + "field_project_title": ["New School", "Minor Capital Works Fund"], + "field_q_complete": ["Q1 2017", "Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["70 Breadalbane Av"], + "field_suburb": ["Mernda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20966], + "status": [true], + "title": ["Mernda Central P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f0a9e6d5-f524-44fc-900c-fb7bcce0ca01"] + }, + "sort": ["Mernda Central P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20645:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mernda-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bMernda Park Primary is a new school serving families in the suburb of Mernda.\u00a0We built the school to accommodate up to 400 students, and was delivered by the Learning Communities Victoria (LCV) consortium. The school opened for Prep to Year 6 students in Term 1, 2017. The school was designed with the local community in mind and is a gathering place for local families and residents to enjoy community, arts, sports and recreation programs.\u200b Facilities include:\u200b \u200ban additional multi-purpose space that can be used by the school during school hours and by the YMCA out of school hours to provide a range of community services and programs an expanded gymnasium built to Netball Victoria standards conference and meeting rooms for local community use embedded environmental sustainability education via the CERES ResourceSmart Schools program initiative conference and meeting rooms for local community use.\u200b The site also includes an integrated early learning centre which comprises of the City of Whittlesea's Child and Family Centre and the YMCA-operated early learning centre\u200b.", + "We upgraded the school playground, installing a shade sail and soft-fall surfaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014-15 for the Public Private Partnership (PPP) Project across regional and metropolitan Victoria.", + "In the 2020 Minor Capital Works Fund the school was allocated $106,165." + ], + "field_funding_type_name": ["New School", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Mernda Park Primary School." + ], + "field_latitude": ["-37.61449", "-37.6144317"], + "field_latitude_longitude_value": ["-37.61449,145.09689"], + "field_latitude_value": ["-37.61449"], + "field_longitude": ["145.09689", "145.0959081"], + "field_longitude_value": ["145.09689"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["01-5525", "D1-01-5525"], + "field_project_title": ["New School", "Minor Capital Works Fund"], + "field_q_complete": ["Q1 2017", "Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["40 Riverdale Blvd"], + "field_suburb": ["Mernda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20645], + "status": [true], + "title": ["Mernda Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b1308b10-95e5-4fe2-9503-f90b0e68811e"] + }, + "sort": ["Mernda Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20166:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merri-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade we will build a new senior building and a new rooftop learning space.", + "We\u00a0upgraded\u00a0and modernised the\u00a0school. This project delivered\u00a0a new 2-storey junior school building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $5.352 million.", + "In the 2017\u201318 State Budget, $3.9 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Merri Creek Primary School." + ], + "field_latitude": ["-37.776966", "-37.776852"], + "field_latitude_longitude_value": ["-37.776966,144.987386"], + "field_latitude_value": ["-37.776966"], + "field_longitude": ["144.987386", "144.987961"], + "field_longitude_value": ["144.987386"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3068"], + "field_project_code": ["D1-01-3110", "01-3110"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2025", "Q4 2019"], + "field_start_date": ["Q2 2022", "Q2 2017"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Miller St"], + "field_suburb": ["Fitzroy North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20166], + "status": [true], + "title": ["Merri Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["560b2078-9046-43b4-b6e6-bf79de927854"] + }, + "sort": ["Merri Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20555:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merri-river-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are constructing a new accessible toilet adjacent to the school's oval and basketball courts. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We completely rebuilt\u00a0this\u00a0school (previously known as Warrnambool Special Developmental School), giving students and staff the modern facilities they need. The school consulted students, teachers and the local community about needs. This helped to identify what building works were needed. The curriculum needs of the school, as well as their future ambitions, were also considered as part of this process\u200b.\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $112,397 from the Minor Capital Works Fund.", + "In the 2015-16 State Budget, $5 million was allocated to the school. The Government has subsequently announced $14.6 million in additional funding." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Merri River School" + ], + "field_latitude": ["-38.354976", "-38.357060"], + "field_latitude_longitude_value": ["-38.354976,142.48177"], + "field_latitude_value": ["-38.354976"], + "field_longitude": ["142.48177", "142.482440"], + "field_longitude_value": ["142.48177"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["D1-01-5277", "01-5277"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2024", "Q1 2020"], + "field_start_date": ["Q2 2022", "Q2 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["189 Wollaston Road"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20555], + "status": [true], + "title": ["Merri River School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d80987c6-ff5a-4157-a98b-8c0d0c8902f5"] + }, + "sort": ["Merri River School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27845:en", + "_score": null, + "_ignored": [ + "field_paragraph_body.keyword", + "field_paragraph_accordion_body.keyword" + ], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merri-bek-north-education-plan"], + "changed": ["2023-07-24T10:58:02+10:00"], + "created": ["2022-10-07T15:41:35+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Merri-bek North Education Plan.\u00a0Work on the plan began in 2022.We are coordinating the development of a plan to support education provision in the Merri-bek North area.The plan will identify and respond to community needs and address the unique challenges and strengths of the community and students. It will also promote a safe and supportive student environment, emphasising excellent teaching, quality facilities and student-focused learning.The schools involved in the plan are:Coburg High SchoolGlenroy\u00a0Secondary CollegeJohn Fawkner Secondary CollegePascoe Vale Girls Secondary CollegeUnder the plan, the four school communities will be more connected to share their expertise and resources while supporting all students to succeed and achieve their goals.Community engagement report" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Merri-bek North Education Plan" + ], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "The Department had the largest community response of any Education Plan consultation to date. We heard from staff, students, teachers, parents, families, carers and the wider community from the Merri-bek North area from February to May 2023. They did this via an online survey, in individual school and combined school student workshops, and staff workshops. The Department ran parent/carer and stakeholder meetings and workshops. The goal of the engagement was to identify the wants and needs of the local community for their local government secondary schools. This report provides a summary of what we heard from the community. What we wanted to know What opportunities parents, staff and the community want for students in Merri-bek North What is important when choosing a secondary school How students like to learn and what education in Merri-bek North should look like going forward What resources schools need to help drive success for students and support teachers to deliver this.", + "Online survey (5 April - 9 May 2023) The Department received a record 561 responses to the Engage Victoria survey\u00a0 Social media promotion Survey support for parents and the community with iPads at pick up times at local primary schools and at the Glenroy Community Festival 1700 information postcards distributed Engagement with the Merri-bek Community Connectors - a group of local people representing the culturally diverse community Workshops Combined student workshop Combined staff workshop Tertiary partner workshop Parent workshop Community workshop with RISE North 120 students participated across individual school workshops 150 staff participated across individual school workshops", + "Students have strong relationships with their teachers, and appreciate their support. They also told us they enjoy hands on learning opportunities. Staff feel well supported by their colleagues and school leadership and are open to offering new experiences. The Merri-bek North community is motivated to contribute to the future of secondary schools and see positive education outcomes for students. There was strong consistency between what we heard from staff, student, parents/carers and the wider community across the engagement activities. Key ideas: Top priorities for the Merri-bek North Education Plan to focus on include: A diverse and high quality range of subject offerings and learning opportunities Learning environments that promote wellbeing and inclusivity A learning environment that supports wellbeing and inclusion and provides a quality education is most important for local parents/carers when choosing a secondary school.\u00a0 Better collaboration across the four Merri-bek North Education Plan schools could improve and broaden opportunities for staff and students.\u00a0 Students want more hands-on and real-life learning experiences. From the survey Across all cohorts we heard that it is important for students to have access to more hands on learning and real-life experiences. Parents, staff, tertiary partners and the wider community agreed that resilience and adaptability, critical thinking, and self-confidence are key skills for student success. When it comes to choosing a secondary school, access to a quality education and a safe learning environment is most important. School support for student wellbeing and access to a diverse range of subjects are also highly valued. Online survey snapshot 24% speak a language other than English at home. A third had children at a Merri-bek North Education Plan school. 43% knew about current and announced school buildings and facilities upgrades for Merri-bek North secondary schools. School tours were ranked as the best way to find out more about a school and if it is a good fit for families (31%). What we heard from the workshops The workshops provided participants the opportunity to hear other responses, engage in discussion, share thoughts, ask questions and provide feedback. \u2018Quality education\u2019 and a \u2018learning environment that supports wellbeing and inclusion\u2019 were identified by parents in the survey and workshops as key themes when choosing a secondary school. We tested what \u2018quality education\u2019 and a \u2018learning environment that supports wellbeing and inclusion\u2019 means to parents in a workshop. School staff identified that improved resources, support and collaboration across schools could provide a more diverse range of subjects and improve opportunities for staff and students. What does \u2018quality education\u2019 look like? Every school offers excellence in learning Schools provide a diverse range of subjects that are well resourced and supported by teachers Students have equal opportunity and access as other government secondary schools such as a diverse range of subjects, extra-curricular activities and diverse and modern facilities. Students are supported with individual learning plans What does a \u2018learning environment that supports wellbeing and inclusion\u2019 look like? Inclusive of differing cultures, gender and neurodiversity Has strong anti-bullying and wellbeing programs in place Teachers are well-resourced and supported to cater to differing student needs", + "A more diverse range of subjects and broader curriculum would give students similar experiences as at other government schools. More teaching that caters to individual learning needs , and inclusion in all its forms for example, cultural, gender and neurodiversity was important. Learning opportunities for students that teach resilience, adaptability and critical thinking are essential. Every school should offer a wider range of extra-curricular activities such as sports and arts (for example music, dance, drama, drawing, textiles, painting or pottery).", + "From 23 individual ideas on what opportunities are most important to them, more real-life experiences, different ways of teaching and more excursions stood out as the priorities. The reoccurring discussions were based around project-based learning, group work and applied learning . Students told us they are looking to connect with their peers and wider community within their education. Students have strong relationships with teachers at their school.", + "Staff told us that improved collaboration between schools , including sharing of resources, facilities and technology would help to better meet the needs of students. Staff want to enhance their knowledge and communicatio n around pathway and career options to improve student success. More professional learning opportunities, resource sharing, support and facilities could assist teachers to meet the learning needs of students. Staff agree that schools need deeper engagement with families and the community . Better utilising the existing skills and knowledge of current and future staff including through class observation and moderation. Staff are well supported by their colleagues and school leadership .", + "Hands-on learning: We heard that hands on learning opportunities include experiments, practical classes (like woodwork, textiles, jewellery making, robotics), creative classes, group projects and learning career-oriented skills. Real-life experiences: We heard people wanted experiences like internships to help build key work skills, deep connections with industry professionals, city experiences, and inter-school collaborations such as performing arts/drama opportunities. Applied learning involves students engaging in authentic and motivating learning experiences. It is a method of learning where theory and practical skills combine in a real-world context. Students\u2019 knowledge grows and expands as they take action to learn, reflect on that action and plan how to do it better next time.", + "Based on these findings, along with analysis of local data and educational expertise, the Merri-bek North Education Plan will be developed to meet the needs of students, staff and families now and into the future. While this work progresses, the four schools will continue to work together in and beyond 2023, to help the success of the Merri-bek North Education Plan.", + "You can access a designed version of this report. \u00a0" + ], + "field_paragraph_accordion_name": [ + "About the engagement", + "Engagement snapshot", + "What we heard", + "What we heard snapshot: parents and carers", + "What we heard snapshot: students", + "What we heard snapshot: staff", + "Explanation of emerging themes", + "Next steps", + "Designed report" + ], + "field_paragraph_body": [ + "For more information on learning programs and partnerships this plan is delivering, please visit the Department of Education . This is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to others across the state, please visit the V SBA Education Plans page . For all other information and queries contact education.plans@education.vic.gov.au ." + ], + "field_postcode": ["3058"], + "field_project_code": ["ED-MBN"], + "field_project_title": ["Education Plan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27845], + "status": [true], + "title": ["Merri-bek North Education Plan"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["14f9f0b3-4328-494c-b3d4-dedce4b3c872"] + }, + "sort": ["Merri-bek North Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20136:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moreland-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor sensory area and learning space that reflects the natural environment of nearby Merri Creek. The space is designed to\u00a0stimulate\u00a0play\u00a0and includes a dry river bed, decking bridges, garden beds and a music wall.", + "We landscaped the\u00a0central courtyard play space and replaced\u00a0windows in block A and block B." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $113,400 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2018\u201319 State Budget $600,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Merri-bek Primary School." + ], + "field_latitude": ["-37.756950"], + "field_latitude_longitude_value": ["-37.756950,144.975876"], + "field_latitude_value": ["-37.756950"], + "field_longitude": ["144.975876"], + "field_longitude_value": ["144.975876"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["D1-01-2837", "01-2837"], + "field_project_title": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2020", "Q4 2019"], + "field_start_date": ["Q4 2018", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["157-163 Moreland Rd"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20136], + "status": [true], + "title": ["Merri-bek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cd1347ee-7eca-4bc6-92d0-1096cd240d61"] + }, + "sort": ["Merri-bek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20562:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merriang-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will complete the final stage of Lalor campus master plan. This includes upgrading the administration building. We will also modernise the junior campus.", + "We are building an inclusive playground including new play equipment and sensory equipment.", + "We upgraded and modernised the school.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $5.316 million.", + "In Round 7 of the Inclusive Schools Fund, the project received $167,821.", + "In the 2020\u201321 State Budget, the school received $3.39 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Merriang Special Developmental School" + ], + "field_latitude": [ + "-37.66723751", + "-37.66723751", + "-37.665985107421875" + ], + "field_latitude_longitude_value": ["-37.66723751,145.0150833"], + "field_latitude_value": ["-37.66723751"], + "field_longitude": [ + "145.0150833", + "145.0150833", + "145.00874328613281" + ], + "field_longitude_value": ["145.0150833"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3075"], + "field_project_code": ["D2-01-5284", "D1-01-5284", "01-5284"], + "field_project_title": [ + "Upgrade and Modernisation - Final Stage", + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2025", "Q1 2024", "Q3 2023"], + "field_start_date": ["Q2 2022", "Q4 2021", "Q4 2020"], + "field_status_name": ["Design", "Construction", "Complete"], + "field_street_address": ["11 Duncan Rd"], + "field_suburb": ["Lalor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20562], + "status": [true], + "title": ["Merriang Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["580b16db-8680-4b9d-afce-76fa989c8342"] + }, + "sort": ["Merriang Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21446:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merrifield-north-modular-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered\u00a0a new two-room modular kindergarten in Merrifield North. The kindergarten forms part of the community centre on the corner of St Georges and Blackmore Streets, Mickleham." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 20\u201321 Building Blocks Capacity Grants, $1,500,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Merrifield North Modular Kindergarten" + ], + "field_latitude": ["-37.530933416478746"], + "field_latitude_longitude_value": [ + "-37.530933416478746,144.90695939141443" + ], + "field_latitude_value": ["-37.530933416478746"], + "field_longitude": ["144.90695939141443"], + "field_longitude_value": ["144.90695939141443"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["ELC-MNMK"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Modular Kinder" + ], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["82 St George Boulevard"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21446], + "status": [true], + "title": ["Merrifield North Modular Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c84764ea-ba74-48e1-9b0a-5f14cd7b591b"] + }, + "sort": ["Merrifield North Modular Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19986:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merrijig-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade sheltered walkways that provide better coverage and access." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $63,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Merrijig Primary School." + ], + "field_latitude": ["-37.1027224"], + "field_latitude_longitude_value": ["-37.1027224,146.257064"], + "field_latitude_value": ["-37.1027224"], + "field_longitude": ["146.257064"], + "field_longitude_value": ["146.257064"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3723"], + "field_project_code": ["01-1379"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1820 Mount Buller Rd"], + "field_suburb": ["Merrijig"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19986], + "status": [true], + "title": ["Merrijig Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8649fdf2-0ea1-4588-856f-fcca4646e177"] + }, + "sort": ["Merrijig Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24611:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merrilands-children-centre-and-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping Uniting Victoria and Tasmania Limited plan to expand and renovate Merrilands Children Centre and Kindergarten. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $133,490 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Merrilands Children Centre and Kindergarten" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MCCAK"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24611], + "status": [true], + "title": ["Merrilands Children Centre and Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f2864152-2687-4507-9958-45a491662287"] + }, + "sort": ["Merrilands Children Centre and Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20273:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/merrivale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including relocating the heritage building, constructing a new reception and administration building, and constructing a new classroom building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $5.385 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Merrivale Primary School" + ], + "field_latitude": ["-38.391868591308594"], + "field_latitude_longitude_value": [ + "-38.391868591308594,142.48255920410156" + ], + "field_latitude_value": ["-38.391868591308594"], + "field_longitude": ["142.48255920410156"], + "field_longitude_value": ["142.48255920410156"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["01-4215"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["158 Merrivale Dr"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20273], + "status": [true], + "title": ["Merrivale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c3553d64-255e-4f8c-abdb-bf725ebd7919"] + }, + "sort": ["Merrivale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23334:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/methodist-ladies-college-kindle"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We refurbished the kindergarten playground to create more flexible spaces that will challenge and inspire students of all ages." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $390,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Methodist Ladies College - Kindle" + ], + "field_latitude": ["-37.81440793"], + "field_latitude_longitude_value": ["-37.81440793,145.040291"], + "field_latitude_value": ["-37.81440793"], + "field_longitude": ["145.040291"], + "field_longitude_value": ["145.040291"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3101"], + "field_project_code": ["15-621"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["207 Barkers Rd"], + "field_suburb": ["Kew"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23334], + "status": [true], + "title": ["Methodist Ladies College - Kindle"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ceecbe03-4727-43a6-b5f1-f7c1ac364223"] + }, + "sort": ["Methodist Ladies College - Kindle"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20157:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/metung-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade their outdoor spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $125,605" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Metung Primary School" + ], + "field_latitude": ["-37.8915458"], + "field_latitude_longitude_value": ["-37.8915458,147.8520338"], + "field_latitude_value": ["-37.8915458"], + "field_longitude": ["147.8520338"], + "field_longitude_value": ["147.8520338"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3904"], + "field_project_code": ["01-3050"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Stirling Road"], + "field_suburb": ["Metung"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20157], + "status": [true], + "title": ["Metung Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["036a8ea8-802b-4065-bac6-0fc2483df946"] + }, + "sort": ["Metung Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21448:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mickleham-north-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0helped\u00a0build an\u00a0integrated children's centre\u00a0for the Hume community, which will\u00a0offer\u00a0kindergarten for\u00a0three and four-year-olds\u00a0and a range of other services.\u00a0 The centre will provide long day care, maternal and\u00a0child health and specialist consulting rooms. Community groups\u00a0will be able to access the\u00a0multipurpose rooms to support\u00a0new parents, playgroups and other\u00a0planned activity. The centre is located next to Gaayip-Yagila Primary School.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $1,551,826 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mickleham North Community Centre" + ], + "field_latitude": ["-37.53077"], + "field_latitude_longitude_value": ["-37.53077,144.90689"], + "field_latitude_value": ["-37.53077"], + "field_longitude": ["144.90689"], + "field_longitude_value": ["144.90689"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["ELC-MWNCH"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Cnr St George's Boulevard and Blackmore Road" + ], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21448], + "status": [true], + "title": ["Mickleham North Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5b7e61b3-6466-4331-8ddc-6a3d4227e63d"] + }, + "sort": ["Mickleham North Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19937:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mickleham-primary-school"], + "changed": ["2023-11-02T16:05:34+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Mickleham Primary School. We built 2 learning centres and an administration building. We also built a hardcourt, completed landscaping, and restored the oval for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $7.49 million. In the 2020-21 State Budget, the school received $21.433 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mickleham Primary School" + ], + "field_latitude": ["-37.564031980316074"], + "field_latitude_longitude_value": [ + "-37.564031980316074,144.8778051185096" + ], + "field_latitude_value": ["-37.564031980316074"], + "field_longitude": ["144.8778051185096"], + "field_longitude_value": ["144.8778051185096"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-1051"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1880 Mickleham Rd"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19937], + "status": [true], + "title": ["Mickleham Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3cc4cbfc-6987-42a5-818c-c933a05e7ab5"] + }, + "sort": ["Mickleham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20822:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mickleham-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new secondary college in the City of Hume. It opened in 2023, helping the growing local population get great education close to home. The school will open to Year 7 students only, and progress by year level thereafter. Lian Davies was appointed as the first principal of the school. The school was previously known by its interim name, Merrifield West Secondary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 to 8 July 2022. The school is named after the suburb it is located in. Facilities The first stage of the school includes: an administration building with a library, staff offices and amenities a learning neighbourhood building a science building a materials technology building a community hub building with a competition-grade basketball/netball court, canteen, music, drama and food technology teaching spaces 4 outdoor hardcourts a sports field. Funding for a second stage of the school depends on future state budgets, but plans include: another learning neighbourhood building a visual arts building. The second stage will allow the school to grow to 1200 students. We planned stage 1 so that the school could open with everything it needs, including different types of teaching spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Mickleham Secondary College." + ], + "field_latitude": ["-37.527194"], + "field_latitude_longitude_value": ["-37.527194,144.902146"], + "field_latitude_value": ["-37.527194"], + "field_longitude": ["144.902146"], + "field_longitude_value": ["144.902146"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/MHSC_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["First week at Mickleham Secondary College"], + "field_postcode": ["3064"], + "field_project_code": ["01-8041"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["45 Blackmore Rd"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20822], + "status": [true], + "title": ["Mickleham Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d2cb1760-cef6-4bf8-86c9-9e07486b8c48"] + }, + "sort": ["Mickleham Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23306:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/merrifield-south-integrated-child-family-and-community-centre" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are building a community centre in Merrifield South. The centre will have 2 preschool rooms, allowing it to offer 66 funded kindergarten places for 3 and 4-year-olds. It will also include maternal and child health services and consulting suites for specialist services. Multipurpose activity rooms will support community activities, such as playgroups, training and education, and community meetings. This centre was previously known as\u00a0Merrifield South Integrated Child, Family and Community Centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $2,000,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mickleham South Community Centre" + ], + "field_latitude": ["-37.54303187"], + "field_latitude_longitude_value": ["-37.54303187,144.8909172"], + "field_latitude_value": ["-37.54303187"], + "field_longitude": ["144.8909172"], + "field_longitude_value": ["144.8909172"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["15-MERSO"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["125 Brossard Rd"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23306], + "status": [true], + "title": ["Mickleham South Community Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8f2e2ce8-688b-4f7e-84d7-194c2dbf57c8"] + }, + "sort": ["Mickleham South Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25376:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/middle-indigo-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We replaced the school's main building roof. We also re-clad the building's remaining timber exterior walls with Colourbond. The work was supported by our Minor Capital Works Fund. A program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $153,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Middle Indigo Primary School" + ], + "field_latitude": ["-36.156013"], + "field_latitude_longitude_value": ["-36.156013,146.72484"], + "field_latitude_value": ["-36.156013"], + "field_longitude": ["146.72484"], + "field_longitude_value": ["146.72484"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3688"], + "field_project_code": ["01-1115"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["710 Indigo Creek Road"], + "field_suburb": ["Indigo Valley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25376], + "status": [true], + "title": ["Middle Indigo Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f0a07339-0718-4842-b07c-d1cd65df3a2f"] + }, + "sort": ["Middle Indigo Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33024:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/middle-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Middle Park Primary School" + ], + "field_latitude": ["-37.847803"], + "field_latitude_longitude_value": ["-37.847803,144.957512"], + "field_latitude_value": ["-37.847803"], + "field_longitude": ["144.957512"], + "field_longitude_value": ["144.957512"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3206"], + "field_project_code": ["01-2815"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["194 Richardson Street"], + "field_suburb": ["Middle Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33024], + "status": [true], + "title": ["Middle Park Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["0b4563c1-d999-41d1-875b-7df949a27510"] + }, + "sort": ["Middle Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21376:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/middleton-drive-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Wyndham City Council to deliver a new modular kindergarten building. The building provides 66 licensed kindergarten places for local children. It has an outdoor play space designed to help them learn and develop important skills through play and using senses such as touch, sight and hearing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, this project shared in the $283 million allocated over four years to deliver modular kindergarten facilities and kinders on school sites." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Middleton Drive Kindergarten" + ], + "field_latitude": ["-37.9086372"], + "field_latitude_longitude_value": ["-37.9086372,144.7522315"], + "field_latitude_value": ["-37.9086372"], + "field_longitude": ["144.7522315"], + "field_longitude_value": ["144.7522315"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Explore more about kindergartens"], + "field_postcode": ["3030"], + "field_project_code": ["15-MRK"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular Kindergarten Building" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Saltwater Promenade"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21376], + "status": [true], + "title": ["Middleton Drive Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8206a5ec-e288-4147-bdbe-5aa4a016b85e"] + }, + "sort": ["Middleton Drive Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22301:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/milawa-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:31+11:00"], + "field_about_project_processed": [ + "We helped build an inclusive outdoor learning space. It includes a shade structure, sensory equipment and a kitchen garden.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $138,502" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Milawa Primary School" + ], + "field_latitude": ["-36.444544"], + "field_latitude_longitude_value": ["-36.444544,146.432484"], + "field_latitude_value": ["-36.444544"], + "field_longitude": ["146.432484"], + "field_longitude_value": ["146.432484"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3678"], + "field_project_code": ["01-737"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["133 Milawa-Bobinawarrah Road"], + "field_suburb": ["Milawa"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22301], + "status": [true], + "title": ["Milawa Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["72d5327e-75fc-4d2f-8416-f3382f87ff9a"] + }, + "sort": ["Milawa Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36775:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mildura-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an indoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $162,431" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mildura Primary School" + ], + "field_latitude": ["-34.194287"], + "field_latitude_longitude_value": ["-34.194287,142.160493"], + "field_latitude_value": ["-34.194287"], + "field_longitude": ["142.160493"], + "field_longitude_value": ["142.160493"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["01-2915"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["175-189 San Mateo Avenue"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36775], + "status": [true], + "title": ["Mildura Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5b7952c8-b1e4-463e-8e5e-68d39c4825c5"] + }, + "sort": ["Mildura Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25377:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mildura-senior-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student toilet block to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $499,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mildura Senior College" + ], + "field_latitude": ["-34.19800387"], + "field_latitude_longitude_value": ["-34.19800387,142.1453901"], + "field_latitude_value": ["-34.19800387"], + "field_longitude": ["142.1453901"], + "field_longitude_value": ["142.1453901"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["01-8045"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["307-339 Deakin Avenue"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25377], + "status": [true], + "title": ["Mildura Senior College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["09f13bf5-5a11-4aa9-9d1e-30a951a0dd5f"] + }, + "sort": ["Mildura Senior College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33831:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/mildura-south-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Mildura South Primary School.\u00a0It will provide extra kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Mildura South Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-34.212420"], + "field_latitude_longitude_value": ["-34.212420,142.124500"], + "field_latitude_value": ["-34.212420"], + "field_longitude": ["142.124500"], + "field_longitude_value": ["142.124500"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3500"], + "field_project_code": ["15-MSPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["12 Wetland Drive"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33831], + "status": [true], + "title": ["Mildura South Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6e9c19e6-50fc-445a-aff0-f21076a6bf13"] + }, + "sort": ["Mildura South Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24983:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mildura-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. We will also upgrade the Living Skills Building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $12.657 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mildura Specialist School" + ], + "field_latitude": ["-34.199885"], + "field_latitude_longitude_value": ["-34.199885,142.143641"], + "field_latitude_value": ["-34.199885"], + "field_longitude": ["142.143641"], + "field_longitude_value": ["142.143641"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["01-5251"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["341-357 Deakin Avenue"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24983], + "status": [true], + "title": ["Mildura Specialist School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1c5965f5-01fe-4771-af09-80ce9397241c"] + }, + "sort": ["Mildura Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20247:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mildura-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the school's toilets to improve amenity, cleanliness and hygiene. This work was supported by our Minor Capital Works Fund. A program for small building projects that make a big difference in our schools.\u00a0", + "We upgraded\u00a0and refurbished\u00a0facilities at the school in 3 phases.In phase one, we built\u00a0a new learning hub with new classrooms, refurbished Block A and provided new classroom areas and breakout spaces.\u00a0In phase 2, we created a new covered outdoor learning area.In the final phase, we demolished a multipurpose building to allow for the development of landscaped outdoor space between the library and Block D.\u00a0Basic maintenance works were also carried out across\u00a0all 3 phases." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $499,397 from the Minor Capital Works Fund.", + "In the 2018\u201319 State Budget $1.8 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mildura West Primary School." + ], + "field_latitude": ["-34.179726", "-34.179588"], + "field_latitude_longitude_value": ["-34.179726,142.152392"], + "field_latitude_value": ["-34.179726"], + "field_longitude": ["142.152392", "142.151566"], + "field_longitude_value": ["142.152392"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["D1-01-3983", "01-3983"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q4 2020"], + "field_start_date": ["Q2 2022", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["219-227 Ninth St"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20247], + "status": [true], + "title": ["Mildura West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5eb2bf4a-edca-46ca-ba5b-09c990b7fbdf"] + }, + "sort": ["Mildura West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20524:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/milgate-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to replace timber fencing in front of the school grounds to increase safety and presentation.", + "We\u00a0built an accessible playground with play equipment designed for children with special needs, including students that use wheelchairs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $57,969.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Milgate Primary School." + ], + "field_latitude": ["-37.773445", "-37.773798"], + "field_latitude_longitude_value": ["-37.773445,145.175188"], + "field_latitude_value": ["-37.773445"], + "field_longitude": ["145.175188", "145.175188"], + "field_longitude_value": ["145.175188"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3109"], + "field_project_code": ["D1-01-5212", "01-5212"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2021", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["96 Landscape Dr"], + "field_suburb": ["Doncaster East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20524], + "status": [true], + "title": ["Milgate Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5704e931-418a-4398-827d-3a5d22083bf3"] + }, + "sort": ["Milgate Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21265:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mill-park-heights-child-care-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed\u00a0the outdoor space at the centre. This upgrade will allow for greater connection to Country and create a more engaging learning and development environment for the children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $160,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mill Park Heights Child Care Centre." + ], + "field_latitude": ["-37.664169311523438"], + "field_latitude_longitude_value": [ + "-37.664169311523438,145.06504821777344" + ], + "field_latitude_value": ["-37.664169311523438"], + "field_longitude": ["145.06504821777344"], + "field_longitude_value": ["145.06504821777344"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3082"], + "field_project_code": ["15-4118"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["31 Morang Dr"], + "field_suburb": ["Mill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21265], + "status": [true], + "title": ["Mill Park Heights Child Care Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d61091aa-e30d-479d-9c5d-8d205cf584d5"] + }, + "sort": ["Mill Park Heights Child Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20578:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mill-park-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe have upgraded\u00a0the school to better meet student needs at each year level.\u200b\u00a0\u200b \u200bThis included building 14 new classrooms and three new collaborative areas, while removing relocatable classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $6 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mill Park Heights Primary School" + ], + "field_latitude": ["-37.64723"], + "field_latitude_longitude_value": ["-37.64723,145.05034"], + "field_latitude_value": ["-37.64723"], + "field_longitude": ["145.05034"], + "field_longitude_value": ["145.05034"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3082"], + "field_project_code": ["01-5325"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Pindari Avenue"], + "field_suburb": ["Mill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20578], + "status": [true], + "title": ["Mill Park Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c879e263-f551-4578-97b5-bcb58dde23bd"] + }, + "sort": ["Mill Park Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20500:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mill-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school replace windows." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $138,125" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mill Park Primary School" + ], + "field_latitude": ["-37.6749897503446"], + "field_latitude_longitude_value": [ + "-37.6749897503446,145.066624699843" + ], + "field_latitude_value": ["-37.6749897503446"], + "field_longitude": ["145.066624699843"], + "field_longitude_value": ["145.066624699843"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3082"], + "field_project_code": ["01-5160"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Blamey Avenue"], + "field_suburb": ["Mill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20500], + "status": [true], + "title": ["Mill Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["62aedf92-6ab1-46eb-b491-179b1fc69b54"] + }, + "sort": ["Mill Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20904:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mill-park-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a new 400-seat performing arts centre for the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $11.6 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mill Park Secondary College." + ], + "field_latitude": ["-37.664169311523438"], + "field_latitude_longitude_value": [ + "-37.664169311523438,145.06504821777344" + ], + "field_latitude_value": ["-37.664169311523438"], + "field_longitude": ["145.06504821777344"], + "field_longitude_value": ["145.06504821777344"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3082"], + "field_project_code": ["01-8775"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["9-25 Moorhead Dr"], + "field_suburb": ["Mill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20904], + "status": [true], + "title": ["Mill Park Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c8100641-6deb-4008-9e70-e93609cb66ae"] + }, + "sort": ["Mill Park Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24252:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/millgrove-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T17:06:42+11:00"], + "field_about_project_processed": [ + "We are removing the old and worn-out play equipment to build a modern and inclusive outdoor learning environment. Inside we're undertaking important maintenance and adding more storage areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Improvement Grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Millgrove Preschool" + ], + "field_latitude": ["-37.75328373"], + "field_latitude_longitude_value": ["-37.75328373,145.6507256"], + "field_latitude_value": ["-37.75328373"], + "field_longitude": ["145.6507256"], + "field_longitude_value": ["145.6507256"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3799"], + "field_project_code": ["15-1288"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["24B Moore Cres"], + "field_suburb": ["Millgrove"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24252], + "status": [true], + "title": ["Millgrove Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["aa2feab6-8fc9-4245-a0b1-1f0d9a6ff164"] + }, + "sort": ["Millgrove Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21165:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/minaret-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to convert their library and open area into four classrooms. We also helped them install two modular buildings which gives them six additional learning and assembly spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019-20 capital funding program for non-government schools, $1,575,318 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Minaret College" + ], + "field_latitude": ["-37.93829"], + "field_latitude_longitude_value": ["-37.93829,145.14835"], + "field_latitude_value": ["-37.93829"], + "field_longitude": ["145.14835"], + "field_longitude_value": ["145.14835"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3171"], + "field_project_code": ["03-1936"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Birch Street"], + "field_suburb": ["Springvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21165], + "status": [true], + "title": ["Minaret College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e8855a75-04fc-430f-84cd-d231f0b40de4"] + }, + "sort": ["Minaret College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21405:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/minaret-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe relocated the kindergarten to a purpose-built facility within Minaret College. This will create more kindergarten places for local\u00a03 and 4-year-old children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $495,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Minaret Early Learning Centre." + ], + "field_latitude": ["-38.051906"], + "field_latitude_longitude_value": ["-38.051906,145.411593"], + "field_latitude_value": ["-38.051906"], + "field_longitude": ["145.411593"], + "field_longitude_value": ["145.411593"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["ELC-1936"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["97 Tivendale Rd"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21405], + "status": [true], + "title": ["Minaret Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7e64e3c5-c29e-48da-b5d6-3179be239b5c"] + }, + "sort": ["Minaret Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20035:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/miners-rest-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and expanded Miners Rest Primary School, including: 10 new classrooms a new entry and administration arts room, music room food tech facilities kitchen veggie garden landscaped open play areas. We also built a new competition-grade gymnasium and football oval, which the broader community can use after-hours. Community engagement To help inform the school upgrade, we asked the local community what they wanted for the future of the school in terms of its design and facilities.\u00a0We engaged with students, teachers, parents and community members in Miners Rest on the design for the future of Miners Rest Primary School from 4 to 20 June 2018. We heard the community wanted: a school that doubles as a community hub to plan for the future to keep the things that are already great spacious outdoor areas for sports and play that can be used in all weather state of the art, comfortable and functional spaces. The feedback informed the design for the school. You can contact us for a copy of this engagement report." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $4.5 million in 2018\u201319 and $1.71 million in 2019\u201320 for land and planning. In 2020, the school received an additional $15.39 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Miners Rest Primary School" + ], + "field_latitude": ["-37.47851"], + "field_latitude_longitude_value": ["-37.47851,143.79565"], + "field_latitude_value": ["-37.47851"], + "field_longitude": ["143.79565"], + "field_longitude_value": ["143.79565"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3352"], + "field_project_code": ["01-1739"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Dundas Street"], + "field_suburb": ["Miners Rest"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20035], + "status": [true], + "title": ["Miners Rest Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5005a491-f83f-47b4-ab72-ead85f0297d2"] + }, + "sort": ["Miners Rest Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34241:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mirboo-north-early-learning-centre"], + "changed": ["2023-08-17T21:26:18+10:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping South Gippsland Shire Council develop Mirboo North Early Learning Centre. This will create more kindergarten places for local 3 and 4-year-olds and may include other community services such as maternal and child health and a toy library. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Mirboo North Early Learning Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3871"], + "field_project_code": ["15-MNELC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["Balook St"], + "field_suburb": ["Mirboo North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34241], + "status": [true], + "title": ["Mirboo North Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["9943e3bc-282e-43c4-b0a0-a2b819ed588e"] + }, + "sort": ["Mirboo North Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20098:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mirboo-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive indoor play space and\u00a0upgraded the multipurpose room and its adjoining indoor/outdoor spaces. \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2017, the school received $200,000 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mirboo North Primary School" + ], + "field_latitude": ["-38.40026"], + "field_latitude_longitude_value": ["-38.40026,146.15122"], + "field_latitude_value": ["-38.40026"], + "field_longitude": ["146.15122"], + "field_longitude_value": ["146.15122"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3871"], + "field_project_code": ["01-2383"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Balook St"], + "field_suburb": ["Mirboo North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20098], + "status": [true], + "title": ["Mirboo North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ac244ea7-c4af-49de-b1ec-adef2db9c2b0"] + }, + "sort": ["Mirboo North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20677:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mirripoa-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Mount Duneed.\u00a0The school will\u00a0help ease\u00a0enrolment pressures for surrounding schools as well as\u00a0meeting\u00a0the needs\u00a0of a growing population.The school\u00a0was\u00a0originally known by the interim name of Armstrong Creek West Primary School while it was being planned and built. In August 2019, the name of the Armstrong Creek West (interim name) Primary School was announced as Baanip Primary School, however subsequent community feedback found the name for the new primary school should convey a sense of place and the local environment. Mirripoa Primary School\u00a0was chosen as the new school name\u00a0in October\u00a0following consultation with the local Wadawurrung community\u00a0and the interim school council. Mirripoa means sunny plains and reflects that the school and community are situated on a volcanic plain with golden grass. The Department of Education worked with the traditional owners and interim school council on alternative Indigenous names that better reflected the area's surroundings.\u00a0We are pleased to announce that Darryl Diment has been appointed as the first principal of the\u00a0school.\u00a0This appointment follows a thorough Department of Education expression of interest process.\u00a0We held information events in September and October\u00a02019. We held a picnic and school experience for Years 1-6 students and their families on Thursday 12 December.This school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards. \u200b\u200b\u200bTake a\u00a0virtual tour\u00a0and experience\u00a0this\u00a0school through the eyes of its students.Armstrong Creek East Children\u2019s Centre is located near the\u00a0school, helping local\u00a0children make\u00a0a smooth transition from pre-school.Further information on the school\u00a0can be found on its\u00a0official Facebook page." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2016\u201317 State Budget allocated funding to buy land in this area for a new school.The school received an additional $20.2 million in the 2018\u201319 State Budget for construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Mirripoa Primary School." + ], + "field_latitude": ["-38.224923"], + "field_latitude_longitude_value": ["-38.224923,144.327294"], + "field_latitude_value": ["-38.224923"], + "field_longitude": ["144.327294"], + "field_longitude_value": ["144.327294"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["01-5571"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["80 Unity Dr"], + "field_suburb": ["Mount Duneed"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20677], + "status": [true], + "title": ["Mirripoa Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ca82b275-a1f8-4735-80fa-c1f60e137f65"] + }, + "sort": ["Mirripoa Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22651:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mitchell-park-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are refurbishing Mitchell Park Kindergarten. It will look and function better, and be safer for children and staff. We will install: a new roof new internal walls and doors double-glazed windows a new carpet a secure entry foyer vinyl floor coverings. We will upgrade the bathroom to include a bath, change table, storage and preparation spaces. We will also extend the veranda. Outside we're refurbishing the external cladding and installing secure perimeter fencing.", + "We are upgrading the outdoor environment and landscaping. The project includes: a new cubby and natural play fort concrete paved pathways soft-fall surfacing an enhanced sandpit to make the space more accessible to children of all abilities. There will be a yarning circle complete with fire pit \u2013 creating a culturally safe, inviting space for our community. We will install vegetable garden beds and plant Indigenous vegetation and fruit trees. We will build a dry riverbed to tie the spaces together." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $683,813 was allocated to this project.", + "In Round 1 of the 2021-22 Building Blocks Inclusion Grant, $196,187 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mitchell Park Kindergarten" + ], + "field_latitude": ["-37.75343363", "-37.753247"], + "field_latitude_longitude_value": ["-37.75343363,142.032658"], + "field_latitude_value": ["-37.75343363"], + "field_longitude": ["142.032658", "142.0326136"], + "field_longitude_value": ["142.032658"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3300"], + "field_project_code": ["15-607", "D1-15-607"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2023", "Q1 2024"], + "field_start_date": ["Q3 2021", "Q1 2022"], + "field_status_name": ["Construction", "Construction"], + "field_street_address": ["1 Steel Rd"], + "field_suburb": ["Hamilton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22651], + "status": [true], + "title": ["Mitchell Park Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["900d9679-c479-416d-b522-f10b4d05d862"] + }, + "sort": ["Mitchell Park Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24592:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/mitchell-shire-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-10-27T15:35:48+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Mitchell Shire Council employ someone to oversee kindergarten planning and design. They will develop a series of kindergarten building projects to create more places for local children. This planning gets the projects ready for construction, which depends on future funding.", + "We are helping Mitchell Shire Council plan extensions or upgrades to Wallan East Kindergarten and Bald Hill Kindergarten. We're also helping the council to employ someone to help with planning and design. These projects would create more kindergarten places for local 3 and 4-year-olds. The planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Grant - Planning stream, $149,495 was allocated to this project.", + "In Round 2 of the 2022\u201323 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Planning Grant" + ], + "field_landing_page_summary": [ + "Learn more about the Mitchell Shire Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MSC", "D1-15-MSC"], + "field_project_title": [ + "Building Blocks Planning", + "Building Blocks Planning Grant - Wallan East Kindergarten and Bald Hill Kindergarten" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2022"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24592], + "status": [true], + "title": [ + "Mitchell Shire Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4dcc0b82-22e8-402e-a954-c302fef0942d"] + }, + "sort": [ + "Mitchell Shire Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20311:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moe-south-street-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0delivered a new architect-designed modular building to replace the building for staff resources and classrooms.\u00a0\u200b The\u00a0building\u00a0was\u00a0a finalist in the\u00a0Best School Project \u2013\u00a0Below $1 million at the\u00a02018 Victorian School Design Awards\u200b. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs.\u00a0They are sustainable and innovatively designed, with a comparable lifespan to bricks and mortar structures. Moe (South Street) Primary School\u200b was one of the first schools to benefit from the\u00a0Permanent Modular School\u00a0Buildings Program.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $917,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Moe (South Street) Primary School" + ], + "field_latitude": ["-38.18392"], + "field_latitude_longitude_value": ["-38.18392,146.2595399"], + "field_latitude_value": ["-38.18392"], + "field_longitude": ["146.2595399"], + "field_longitude_value": ["146.2595399"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["01-4662"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["34 South Street"], + "field_suburb": ["Moe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20311], + "status": [true], + "title": ["Moe (South Street) Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["374807ce-5eb4-4a31-aafe-3d7f3c7d4b64"] + }, + "sort": ["Moe (South Street) Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33036:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moe-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We will be upgrading this school to give students better learning opportunities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $5.3 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Moe Primary School" + ], + "field_latitude": ["-38.189727"], + "field_latitude_longitude_value": ["-38.189727,146.246722"], + "field_latitude_value": ["-38.189727"], + "field_longitude": ["146.246722"], + "field_longitude_value": ["146.246722"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["01-4740"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["Cnr Elizabeth & King Streets"], + "field_suburb": ["Moe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33036], + "status": [true], + "title": ["Moe Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["e9017121-f218-428e-9642-c3a5b50fa0dc"] + }, + "sort": ["Moe Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21379:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/molesworth-street-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a kindergarten. It's located on level 5 of the new North Melbourne Primary School \u2014 Molesworth Street Campus. The kindergarten has 2 teaching rooms and offers 66 places for local children. The kindergarten also features outdoor learning areas and play spaces, as well as a kitchen and laundry. Having the kindergarten and school together may help local children make a smooth transition from pre-school and can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, this project shared in the $283 million allocated over 4 years to deliver modular kindergarten facilities and kinders on school sites." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Molesworth Street Kindergarten." + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "For all enrolment enquiries please email \u00a0the provider, Northern Schools Early Years Cluster, at office@nseyc.org.au or phone them on\u00a0 9306 1662 .", + "This kindergarten offers 3 and 4-year-old kindergarten programs. Long day care will not be available. For more information about the programs offered and service operating hours please email\u00a0the provider, Northern Schools Early Years Cluster, at office@nseyc.org.au or phone them on\u00a0 9306 1662 .", + "Yes, Molesworth Street Kindergarten\u2019s 3 and 4-year-old programs are free for families. Learn more about free kindergarten for children in Victoria .", + "The kindergarten is on the top floor of the new campus and includes purpose-built interior and exterior play areas. There is a 2.8-metre-high fence around the exterior areas to keep children safe. This is one metre higher than required by our Building Quality Standards Handbook. There are landscaped mounds across the play space, however, these are a safe distance from the boundary and no more than 80cm high.", + "Yes. The kindergarten covers the entire fifth level of the new campus. This means that kindergarten children and primary school students can play safely in their own, custom-built, age-appropriate areas. There may be future opportunities for combined activities across the primary school and kindergarten. However, these would be at the discretion of the school principal and kindergarten provider. Parental permission would be sought for any cross-educational activities.", + "During 2023, kindergarten and community users\u00a0can access the kindergarten via the Molesworth Street entrance. We will also be completing a dedicated laneway entrance on the lower ground level\u00a0along the southern boundary of the campus. Families can get to the kindergarten using 2 access-controlled elevators. This means that only the kindergarten community can access the kindergarten floor. CCTV cameras are installed in the lifts and 2 fire escape staircases to provide extra safety and security." + ], + "field_paragraph_accordion_name": [ + "How can I enrol?", + "What programs are offered and what hours will the service be open?", + "Can I access free kindergarten?", + "What safety measures are in place to keep children safe in a vertical campus?", + "Are the kinder children kept separate from the older primary school children?", + "How do families access the kindergarten?" + ], + "field_postcode": ["3051"], + "field_project_code": ["15-NMPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_suburb": ["North Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21379], + "status": [true], + "title": ["Molesworth Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6815e6a9-30c6-4d40-b390-7709037088f3"] + }, + "sort": ["Molesworth Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20723:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/monash-childrens-hospital-school"], + "changed": ["2023-10-26T11:10:18+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have built the Monash Children\u2019s Hospital School, located within the new Monash Children\u2019s Hospital building.The new school provides educational services to approximately 170 students per day with serious medical and mental health conditions who are inpatients in the Monash Children\u2019s Hospital, while they are outpatients in the community, or recovering at home before returning to school.\u00a0The new building includes 4 multi-purpose rooms and a student entertainment system to use for educational purposes.\u00a0Students can video conference with their regular school using new technology installed on each hospital bed, and also receive teaching at their bedside or in classrooms within the hospital. iPads are available to support their learning.\u00a0This a partnership between Monash Health, Monash Children\u2019s Hospital and the Department of Education to provide tailored services to children so they don\u2019t fall behind in their education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$6.8 million was allocated to this project" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Monash Children's Hospital School" + ], + "field_latitude": ["-37.92086"], + "field_latitude_longitude_value": ["-37.92086,145.1208399"], + "field_latitude_value": ["-37.92086"], + "field_longitude": ["145.1208399"], + "field_longitude_value": ["145.1208399"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3168"], + "field_project_code": ["01-6364"], + "field_project_title": ["New School"], + "field_status_name": ["Complete"], + "field_street_address": ["246 Clayton Road"], + "field_suburb": ["Clayton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20723], + "status": [true], + "title": ["Monash Children's Hospital School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["115b25b3-a0ac-4442-8067-2b0ad1724107"] + }, + "sort": ["Monash Children's Hospital School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20497:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/monash-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. We delivered the next stage of the school's master plan.", + "We upgraded\u00a0Monash Special Developmental School, including maintaining\u00a0the existing pool,\u00a0refurbishing\u00a0change rooms, and\u00a0constructing\u00a0a new\u00a0principal's office and a\u00a0cafe\u00a0to support the school's cafe program.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In the 2018\u201319 State Budget $1.9 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Monash Special Developmental School" + ], + "field_latitude": ["-37.907325744628906", "-37.917809"], + "field_latitude_longitude_value": [ + "-37.907325744628906,145.18447875976563" + ], + "field_latitude_value": ["-37.907325744628906"], + "field_longitude": ["145.18447875976563", "145.142807"], + "field_longitude_value": ["145.18447875976563"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["D1-01-5151", "01-5151"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q3 2020"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["15-25 Academy Avenue"], + "field_suburb": ["Wheelers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20497], + "status": [true], + "title": ["Monash Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6616cba5-e6fc-4adf-b1e2-dd674f11854b"] + }, + "sort": ["Monash Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21492:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/monash-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "A\u00a0temporary Tech School facility in Chadstone was completed in 2017, and started delivering programs for students in Term 3.\u200b\u200b\u200b\u200b A\u00a0permanent facility on the Clayton Campus opened\u00a0in 2019. Secondary school students from the Monash area have access to cutting-edge learning at the Monash Tech School. The Tech School is a high-tech learning environment. Its innovative education programs link with local industry to deliver real world learning. Students from 12 partner schools in Monash can access the Tech School throughout the year for specialised programs. Monash Tech School emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Monash Tech School" + ], + "field_latitude": ["-37.91345,"], + "field_latitude_value": ["-37.91345,"], + "field_longitude": ["145.13216"], + "field_longitude_value": ["145.13216"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3168"], + "field_project_code": ["TS-Mo"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Late 2017"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Level 1, 29 Ancora Imparo Way, Monash University" + ], + "field_suburb": ["Clayton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21492], + "status": [true], + "title": ["Monash Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["407195cc-61b1-4e16-bd01-f92028ef3f51"] + }, + "sort": ["Monash Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20823:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/monbulk-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new building for science, technology, engineering, maths, trades, home economics, arts and fabrics, including general purpose classrooms and staff spaces. We also completed the final stage of the school's upgrade. We removed two older buildings and completed new landscaping in the central courtyard. We completed sports facility upgrades, including building a new sports pavilion with change rooms and a netball court.", + "We have completed stages 1 and\u00a02 of upgrade and modernisation work at the college.\u00a0 In stage 1, we provided the\u00a0school with\u00a0a new administration area, library and\u00a0classroom. In stage 2, we demolished\u00a0an outdated\u00a0building and constructed\u00a0new classrooms and specialist spaces for teaching information and communication technology. For the oval, we delivered\u00a0new lighting and surface improvements.\u00a0We also delivered a netball court." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $8.51 million was allocated to the school. In the 2019\u201320 State Budget, the school received $935,000. In 2020, the school received $8.415 million.", + "The 2015\u201316 State Budget allocated $3 million. The school received an additional $7.5 million in the 2017\u201318 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Monbulk College." + ], + "field_latitude": ["-37.88301207416101", "-37.883224"], + "field_latitude_longitude_value": [ + "-37.88301207416101,145.4278621797592" + ], + "field_latitude_value": ["-37.88301207416101"], + "field_longitude": ["145.4278621797592", "145.427795"], + "field_longitude_value": ["145.4278621797592"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Monbulk College | Stage 2 Upgrade and Modernisation" + ], + "field_postcode": ["3793"], + "field_project_code": ["D1-01-8065", "01-8065"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 1 and 2" + ], + "field_q_complete": ["Q3 2022", "Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["146-148 David Hill Rd"], + "field_suburb": ["Monbulk"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20823], + "status": [true], + "title": ["Monbulk College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6e0818ad-f18b-4738-99a9-4f8f0ad19db2"] + }, + "sort": ["Monbulk College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20178:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/monbulk-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Monbulk Primary School.\u00a0 We built a new senior years' building for Years 5 and 6, a new administration building, library, and two outdoor competition-grade netball courts and replaced the existing cricket practice nets. We built the library inside the school's heritage building, which we refurbished as part of the works. \u00a0 Monbulk Football Netball Club will also use the netball courts and cricket practice nets outside of school hours in a partnership with the local community.", + "\u200b\u200b\u200b\u200bWe\u00a0replaced\u00a0the\u00a0eaves, maintained\u00a0the\u00a0exterior facade, and installed\u00a0a new boundary fence.\u00a0 \u200b The Victorian Government allocated $10 million to the School Improvement Fund in the 2015-16 State Budget to support minor works projects.\u00a0 The School Improvement Fund supports small school projects that contribute to the community's pride in the school, and that help to foster a great relationship between the school and its local community.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $7.1 million.", + "The school received $55,000 in 2015-16." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Monbulk Primary School" + ], + "field_latitude": ["-37.87474", "-37.87463"], + "field_latitude_longitude_value": ["-37.87474,145.40739"], + "field_latitude_value": ["-37.87474"], + "field_longitude": ["145.40739", "145.40725"], + "field_longitude_value": ["145.40739"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3793"], + "field_project_code": ["D1-01-3265", "01-3265"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q2 2022", "Q3 2016"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1 Main Road"], + "field_suburb": ["Monbulk"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20178], + "status": [true], + "title": ["Monbulk Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4548ce2c-16a6-4687-9dc7-afcc41e511d9"] + }, + "sort": ["Monbulk Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20579:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/monmia-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school. We are demolishing Block C and replacing it with a specialist STEM (science, technology, engineering and maths) space, and we are demolishing General Purpose Building One. We will also refurbish the administration building, Block B, Block E and General Purpose Building 2, and complete landscaping throughout the school.", + "We refurbished the school library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6.934 million.", + "In the 2018\u201319 State Budget $100,000 was allocated to the school through the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Monmia Primary School." + ], + "field_latitude": ["-37.720455169677734", "-37.72397"], + "field_latitude_longitude_value": [ + "-37.720455169677734,144.80343627929687" + ], + "field_latitude_value": ["-37.720455169677734"], + "field_longitude": ["144.80343627929687", "144.8077099"], + "field_longitude_value": ["144.80343627929687"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3038"], + "field_project_code": ["D1-01-5336", "01-5336"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2023", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Copernicus Way"], + "field_suburb": ["Keilor Downs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20579], + "status": [true], + "title": ["Monmia Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b46b29a8-fe37-44a9-9860-ad4b036035f5"] + }, + "sort": ["Monmia Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20241:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mont-albert-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular facility to the school to replace the classroom building.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $2,091,000." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mont Albert Primary School." + ], + "field_latitude": ["-37.81474"], + "field_latitude_longitude_value": ["-37.81474,145.10185"], + "field_latitude_value": ["-37.81474"], + "field_longitude": ["145.10185"], + "field_longitude_value": ["145.10185"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3127"], + "field_project_code": ["01-3943"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Barloa Rd"], + "field_suburb": ["Mont Albert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20241], + "status": [true], + "title": ["Mont Albert Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2979a527-e7a5-4450-b0dc-a1d1f000cd2f"] + }, + "sort": ["Mont Albert Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24985:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/montague-continuing-education-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $2.7 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Montague Continuing Education Centre" + ], + "field_latitude": ["-37.830602"], + "field_latitude_longitude_value": ["-37.830602,144.949738"], + "field_latitude_value": ["-37.830602"], + "field_longitude": ["144.949738"], + "field_longitude_value": ["144.949738"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3205"], + "field_project_code": ["01-2784"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["100 Montague Street"], + "field_suburb": ["South Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24985], + "status": [true], + "title": ["Montague Continuing Education Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7d40152a-02d6-47a8-b593-7953f1a88202"] + }, + "sort": ["Montague Continuing Education Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20922:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/monterey-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We significantly upgraded and modernised Monterey Secondary College. It included building: new community and wellbeing facilities to improve services for students and their families a new health and sports science Centre of Excellence providing employment pathways based on local industry needs a welcoming community area that invites parents and the wider community to share school resources a competition-grade gym. This school is part of the Frankston North Education Plan. Its\u00a0vision is for every child and family in the Frankston North community to succeed in learning and life \u2013 through better education and health and wellbeing programs from birth. Learn more about how\u00a0the plan\u00a0is transforming local education for Frankston North. Learn how\u00a0education plans\u00a0offer extra support for students to reach their full potential.\u00a0", + "We refurbished a learning centre and the school's senior wing. We also repurposed and renovated a library to create new administration facilities. This school is part of the Frankston North Education Plan. Its\u00a0vision is for every child and family in the Frankston North community to succeed in learning and life \u2013 through better education and health and wellbeing programs from birth. Learn more about how the plan is transforming local education for Frankston North. Learn how education plans offer extra support for students to reach their full potential.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, the Frankston North Education Plan project shared in $7 million planning funding. In the 2018-19 State Budget, a further $9.5 million was allocated to the school. In the 2019-20 State Budget, this upgrade shared in $11.268 million allocated to the Frankston North Education Plan.", + "In the 2015-16 State Budget, $4 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Monterey Secondary College" + ], + "field_latitude": ["-38.127579"], + "field_latitude_longitude_value": ["-38.127579,145.148727"], + "field_latitude_value": ["-38.127579"], + "field_longitude": ["145.148727"], + "field_longitude_value": ["145.148727"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Monterey Secondary College \u2013 upgrade and modernisation" + ], + "field_postcode": ["3200"], + "field_project_code": ["D1-01-8809", "01-8809"], + "field_project_title": [ + "Upgrade and Modernisation - Frankston North Education Plan", + "Upgrade and Modernisation - Learning Centre, Senior Wing & Library" + ], + "field_q_complete": ["Q1 2021", "Q2 2018"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Silvertop Street"], + "field_suburb": ["Frankston North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20922], + "status": [true], + "title": ["Monterey Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7037bf38-91cf-4665-9117-07b99b56bc5e"] + }, + "sort": ["Monterey Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20258:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/montmorency-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u2019re demolishing the \u2018Castle\u2019 building to deliver a new Science, Technology, Engineering and Maths (STEM) building for students. The building will also include a multipurpose area with a music room.\u00a0We are also delivering new outdoor learning areas.", + "We've\u00a0completed our upgrades to this school.\u00a0\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.367 million, with a further $500,000 in 2023.", + "The school received $55,000 in the 2015-16 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Montmorency Primary School." + ], + "field_latitude": ["-37.7174664", "-37.71833"], + "field_latitude_longitude_value": ["-37.7174664,145.1218446"], + "field_latitude_value": ["-37.7174664"], + "field_longitude": ["145.1218446", "145.12196"], + "field_longitude_value": ["145.1218446"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3094"], + "field_project_code": ["D1-01-4112", "01-4112"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2015"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["60a Rattray Rd"], + "field_suburb": ["Montmorency"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20258], + "status": [true], + "title": ["Montmorency Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["281ad7b9-7c76-46d2-a0ee-2da53a98c259"] + }, + "sort": ["Montmorency Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20824:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/montmorency-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a major new sports complex. We\u00a0expanded the current stadium from two to five courts, with more seating, change rooms and meeting rooms. The new complex features\u00a0undercroft car parking and retractable seating.", + "We upgraded and modernised Montmorency Secondary College, with new administration facilities and an arts precinct. We also transformed existing buildings into modern learning and specialist facilities to allow the school to enhance its\u00a0strong educational programs around leadership, arts, materials technology, science and physical education. This has\u00a0improved the flow of spaces around the school, helping with functionality and safety as students move between classes. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.61 million. In 2020, the school received $16.99 million.", + "In the 2016\u201317 State Budget, $12.6 million has been allocated to the school. In the 2015\u201316 State Budget, $1.4 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Montmorency Secondary College" + ], + "field_latitude": ["-37.72069", "-37.7207"], + "field_latitude_longitude_value": ["-37.72069,145.11348"], + "field_latitude_value": ["-37.72069"], + "field_longitude": ["145.11348", "145.11349"], + "field_longitude_value": ["145.11348"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3094"], + "field_project_code": ["D1-01-8068", "01-8068"], + "field_project_title": [ + "Upgrade and Modernisation - Sports Complex", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q1 2019"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Para Rd"], + "field_suburb": ["Montmorency"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20824], + "status": [true], + "title": ["Montmorency Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9e0d4718-5cf5-46c5-b1e5-90a0361bc65e"] + }, + "sort": ["Montmorency Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20407:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/montmorency-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including new play equipment and soft fall.", + "We completed a major upgrade to Montmorency South Primary School.\u00a0 The works\u00a0retained\u00a0the multipurpose building but\u00a0demolished the rest of the school. We replaced the outdated facilities with a new crescent shaped, two-storey building geared to delivering modern education.\u00a0 The new building provides flexible and multipurpose spaces, home bases and learning neighbourhoods that allow teachers to work collaboratively with large or small groups.\u00a0\u00a0 The open-plan building includes glass walls that allow staff to monitor students and make the students feel supported. The upper storey includes a library,\u00a0 two classroom clusters, Da Vinci pod and the school's administration centre. The lower level includes two learning clusters.\u00a0 The consolidation of\u00a0all the permanent buildings at the northern end of the school grounds gives maximum flexibility for open play space.\u200b", + "We built\u00a0a therapeutic inclusive play space for chidlren to interact with nature and learn about sustainability." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $169,000.", + "In the 2017\u201318 State Budget, $8.3 million was allocated to this school.", + "In 2018, $160,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Montmorency South Primary School" + ], + "field_latitude": ["-37.7256655", "-37.725071"], + "field_latitude_longitude_value": ["-37.7256655,145.1299362"], + "field_latitude_value": ["-37.7256655"], + "field_longitude": ["145.1299362", "145.129364"], + "field_longitude_value": ["145.1299362"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3094"], + "field_project_code": ["D2-01-4925", "01-4925", "D1-01-4925"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2019", "Q4 2019"], + "field_start_date": ["Q2 2021", "Q1 2017", "Q4 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["64 Buena Vista Dr"], + "field_suburb": ["Montmorency"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20407], + "status": [true], + "title": ["Montmorency South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["63ac9eb0-2f3f-45fa-9de0-13d8f5939c72"] + }, + "sort": ["Montmorency South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20089:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/montrose-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a new competition-grade sports court at the school. The new facilities give students the opportunity to play\u00a0a number of sports including netball, basketball, volleyball and badminton. The gym also includes a storeroom and staff areas, and 90 seats for spectators.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $3.82 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Montrose Primary School." + ], + "field_latitude": ["-37.808418"], + "field_latitude_longitude_value": ["-37.808418,145.344345"], + "field_latitude_value": ["-37.808418"], + "field_longitude": ["145.344345"], + "field_longitude_value": ["145.344345"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3765"], + "field_project_code": ["01-2259"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Leith Rd"], + "field_suburb": ["Montrose"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20089], + "status": [true], + "title": ["Montrose Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["df90ffa1-b9a1-489e-99f2-25c43af87a49"] + }, + "sort": ["Montrose Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20052:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moolap-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed an inclusive sensory garden and play space.", + "We upgraded Moolap Primary School. These works\u00a0targeted facilities that needed it the\u00a0most, ensuring that students learn in an environment designed for delivering modern education\u200b.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $245,125.", + "In the 2018\u201319 State Budget $600,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Moolap Primary School." + ], + "field_latitude": ["-38.1706751", "-38.171490"], + "field_latitude_longitude_value": ["-38.1706751,144.4247913"], + "field_latitude_value": ["-38.1706751"], + "field_longitude": ["144.4247913", "144.424316"], + "field_longitude_value": ["144.4247913"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3221"], + "field_project_code": ["D1-01-1911", "01-1911"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["30 Wills Cr"], + "field_suburb": ["Moolap"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20052], + "status": [true], + "title": ["Moolap Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4b154c1c-ab8e-4615-82c3-b1751487c0f7"] + }, + "sort": ["Moolap Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27780:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moomba-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Moomba Park Primary School" + ], + "field_latitude": ["-37.69576"], + "field_latitude_longitude_value": ["-37.69576,144.967219"], + "field_latitude_value": ["-37.69576"], + "field_longitude": ["144.967219"], + "field_longitude_value": ["144.967219"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the\u00a0 early learning and childcare centre \u00a0we're building at Moomba Park Primary School." + ], + "field_postcode": ["3060"], + "field_project_code": ["01-4876"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["111 Anderson Rd"], + "field_suburb": ["Fawkner"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27780], + "status": [true], + "title": ["Moomba Park Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["952d157a-cff5-448d-93dc-994ffbf2fa65"] + }, + "sort": ["Moomba Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/30556:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/moomba-park-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-02-23T12:52:34+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new early learning and childcare centre at Moomba Park Primary School in the City of Merri-bek.The Victorian Government-owned centre will offer childcare and Three- and Four-Year-Old Kindergarten programs., with space for up to 130 local children each day.Between 2030 and 2032 Four-Year-Old Kindergarten will transition to\u00a0Pre-Prep\u00a0in the City of Merri-Bek and funded kindergarten hours will double from 15 to 30 hours a week.The centre will have outdoor play areas, a Maternal and Child Health consulting room, and a carpark. It will also have a room for community meeting and playgroup.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.\u00a0Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 Early Learning Centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Moomba Park Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-37.69576"], + "field_latitude_longitude_value": ["-37.69576,144.967219"], + "field_latitude_value": ["-37.69576"], + "field_longitude": ["144.967219"], + "field_longitude_value": ["144.967219"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3060"], + "field_project_code": ["01-4876-ELC"], + "field_project_title": [ + "New Early Learning Centre - one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Design"], + "field_street_address": ["84 Lowson Street"], + "field_suburb": ["Fawkner"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [30556], + "status": [true], + "title": [ + "Moomba Park Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["19aeca6c-efa4-44ed-82e9-11af4a983f8c"] + }, + "sort": [ + "Moomba Park Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20028:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moonambel-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an enclosed outdoor learning area, adjacent to a classroom. We also\u00a0installed sensory play equipment and a variety of sensory materials." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $66,000 was allocated to the school in Round 4 of the Inclusive Schools Fund. In 2021, the school received an additional $30,900 in Round 6 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Moonambel Primary School" + ], + "field_latitude": ["-36.989632"], + "field_latitude_longitude_value": ["-36.989632,143.320984"], + "field_latitude_value": ["-36.989632"], + "field_longitude": ["143.320984"], + "field_longitude_value": ["143.320984"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3478"], + "field_project_code": ["01-1683"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["24 Humffray St"], + "field_suburb": ["Moonambel"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20028], + "status": [true], + "title": ["Moonambel Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dec6d762-22e9-4ce8-b31d-e0ad43bb6b8d"] + }, + "sort": ["Moonambel Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20248:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moonee-ponds-primary-school"], + "changed": ["2023-09-11T14:42:54+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing improvement works and are upgrading and modernising Moonee Ponds Primary School, including Blocks A and D. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We replaced the perimeter fencing to make the school boundary more safe and secure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 State Budget, the school received $6.107 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $229,165" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Moonee Ponds Primary School" + ], + "field_latitude": ["-37.7633655", "-37.7633655"], + "field_latitude_longitude_value": ["-37.7633655,144.9336386"], + "field_latitude_value": ["-37.7633655"], + "field_longitude": ["144.9336386", "144.9336386"], + "field_longitude_value": ["144.9336386"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3039"], + "field_project_code": ["D1-01-3987", "01-3987"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2024", "Q3 2023"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["87 Wilson Street"], + "field_suburb": ["Moonee Ponds"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20248], + "status": [true], + "title": ["Moonee Ponds Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["62a857b1-82dc-46c3-95d8-71614b06de19"] + }, + "sort": ["Moonee Ponds Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20144:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moonee-ponds-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade the infant school, library and playground.", + "We helped\u00a0develop\u00a0a natural and sensory environment for the school. The new area\u00a0includes plants, stepping stones, various ground covers (including pathways and a boardwalk), cubbies, tunnels, wind chimes, mirrored surfaces and bird feeders.", + "We updated and refurbished classrooms and facilities in poor condition, including a partial re-build and modernisation of toilet facilities.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $7.627 million.", + "In 2018, $100,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2017-18 State Budget, $502,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Moonee Ponds West Primary School" + ], + "field_latitude": ["-37.768947", "-37.76864"], + "field_latitude_longitude_value": ["-37.768947,144.909334"], + "field_latitude_value": ["-37.768947"], + "field_longitude": ["144.909334", "144.90946"], + "field_longitude_value": ["144.909334"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3039"], + "field_project_code": ["D2-01-2901", "D1-01-2901", "01-2901"], + "field_project_title": [ + "Upgrade and Modernisation \u2013\u00a0Infant School", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2025", "Q4 2019", "Q2 2019"], + "field_start_date": ["Q2 2022", "Q4 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["150 Athol St"], + "field_suburb": ["Moonee Ponds"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20144], + "status": [true], + "title": ["Moonee Ponds West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["11ac255c-ec5b-483a-b783-ab167d083377"] + }, + "sort": ["Moonee Ponds West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24595:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/moonee-valley-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-10-27T15:37:31+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Moonee Valley City Council complete feasibility studies for extensions to Coronation Street Kindergarten and Airport West Kindergarten. These projects would create more kindergarten places for local 3 and 4-year-olds. This planning gets the projects ready for construction, which depends on future funding.", + "We are helping Moonee Valley City Council complete feasibility studies for extensions or upgrades to Essendon North Kindergarten and Montgomery Park Kindergarten. This would create more kindergarten places for local 3 and 4-year-olds.This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Grant - Planning stream, $150,000 was allocated to this project.", + "In Round 2 of the 2022\u201323 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Planning Grant" + ], + "field_landing_page_summary": [ + "Learn more about the Moonee Valley City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MVCC", "D2-15-MVCC"], + "field_project_title": [ + "Building Blocks Planning \u2014 Coronation Street Kindergarten and Airport West Kindergarten", + "Building Blocks Planning \u2014 Essendon North Kindergarten and Montgomery Park Kindergarten" + ], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24595], + "status": [true], + "title": [ + "Moonee Valley City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["051f982b-3f6a-43be-a165-8e2111e7ce27"] + }, + "sort": [ + "Moonee Valley City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19946:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moorabbin-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Moorabbin Primary School, including adding new facilities that will allow it to offer places to an extra 300 local students. We are also building a competition-grade gymnasium." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 State Budget, the school received at least $15.857 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Moorabbin Primary School" + ], + "field_latitude": ["-37.9418635"], + "field_latitude_longitude_value": ["-37.9418635,145.0397839"], + "field_latitude_value": ["-37.9418635"], + "field_longitude": ["145.0397839"], + "field_longitude_value": ["145.0397839"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3189"], + "field_project_code": ["01-1111"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["61 Worthing Road"], + "field_suburb": ["Moorabbin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19946], + "status": [true], + "title": ["Moorabbin Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d968e93e-c1df-4d9b-bb78-f7b207db0f87"] + }, + "sort": ["Moorabbin Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20093:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moorooduc-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We made\u00a0acoustic improvements to the art and science learning space. These improvements include replacing the ceiling treatment, adding display spaces and floor coverings that dampen sound, as well as an area in the room where students can retreat while still\u00a0remaining part of the group.", + "We constructed a new Administration building at the school. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $192,400 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2015\u201316 State Budget, $1 million was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Moorooduc Primary School" + ], + "field_latitude": ["-38.24654"], + "field_latitude_longitude_value": ["-38.24654,145.09984"], + "field_latitude_value": ["-38.24654"], + "field_longitude": ["145.09984"], + "field_longitude_value": ["145.09984"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3933"], + "field_project_code": ["D1-01-2327", "01-2327"], + "field_project_title": [ + "Inclusive Schools Fund", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2019", "Q2 2017"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cnr Derril Rd & Mornington Tyabb Rd"], + "field_suburb": ["Moorooduc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20093], + "status": [true], + "title": ["Moorooduc Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["15ed76c6-226a-4f26-9b9d-0be82c38bae3"] + }, + "sort": ["Moorooduc Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20825:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mooroolbark-college"], + "changed": ["2023-10-23T09:41:57+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have upgraded facilities and services infrastructure at the school. The works included the demolition of an old boiler room to accommodate a new admin building. We also upgraded classroom and services at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $7 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mooroolbark College." + ], + "field_latitude": ["-37.773940"], + "field_latitude_longitude_value": ["-37.773940,145.313400"], + "field_latitude_value": ["-37.773940"], + "field_longitude": ["145.313400"], + "field_longitude_value": ["145.313400"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3138"], + "field_project_code": ["01-8071"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["186 Manchester Rd"], + "field_suburb": ["Mooroolbark"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20825], + "status": [true], + "title": ["Mooroolbark College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2d8cbbc7-eb48-4789-8c3a-aeed52d48760"] + }, + "sort": ["Mooroolbark College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20465:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mooroolbark-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a roof over the basketball court. The school can now use the space as a multipurpose, all-weather sport and learning area.", + "\u200bWe improved learning spaces, upgraded drainage and built a new, larger hall for Mooroolbark East Primary School.\u00a0 The hall will be used for school assemblies, physical education and specialist music teaching. \u200b", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $275,165.", + "In the 2016\u201317 State Budget, $2.4 million has been allocated to the school. In the 2015\u201316 State Budget, $1.285 million was allocated to the school.", + "In Round 9 of the Inclusive Schools Fund, the project received $294,885" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Improvement Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mooroolbark East Primary School." + ], + "field_latitude": ["-37.7855953000055", "-37.78599", "-37.78680042"], + "field_latitude_longitude_value": [ + "-37.7855953000055,145.328095199985" + ], + "field_latitude_value": ["-37.7855953000055"], + "field_longitude": ["145.328095199985", "145.32444", "145.335705"], + "field_longitude_value": ["145.328095199985"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3138"], + "field_project_code": ["D1-01-5059", "01-5059", "D2-01-5059"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation, School Improvement Fund", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q4 2022", "Q1 2018", "Q4 2025"], + "field_start_date": ["Q4 2020", "Q4 2023"], + "field_status_name": ["Complete", "Complete", "Planning"], + "field_street_address": ["Taylor Rd"], + "field_suburb": ["Mooroolbark"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20465], + "status": [true], + "title": ["Mooroolbark East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0bbfc3ed-0b6c-4869-8aa9-c71bd73a87cc"] + }, + "sort": ["Mooroolbark East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21447:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mooroopna-children-and-families-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an integrated early learning centre (IELC) for the local community. This project is part of the Shepparton Education Plan. The centre offers: kinder for three and four-year-olds long daycare services maternal and child health care for local families. The centre is located at Mooroopna Primary School. It has places for approximately 100 children. The Mooroopna IELC offers Three-Year-Old Kindergarten programs. It has a single entry for the community to access: early learning primary school adult learning community spaces health services. Mooroopna Primary School and IELC share some spaces. Shared spaces offer staff new opportunities to encourage learning, development and peer support. This centre is one of 10 Our Place\u00a0sites built across Victoria. The Our Place model supports an integrated learning community. It brings a school and an early learning centre together, through a shared entrance. By bringing together education, health and learning services, the centre aims to create valuable links with families and the broader community as their children transition from early years to schooling. Facilities The IELC features: kindergarten for three and four-year-olds learning spaces with fenced outdoor play areas long day care services a large multipurpose community space maternal and child health rooms and facilities paediatrician and welfare rooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget, $20.5 million has been allocated to the Shepparton Education Plan. This follows $1 million in planning funding in 2017-18. This early learning facility is part of the Shepparton Education Plan" + ], + "field_funding_type_name": ["New Integrated Early Learning Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mooroopna Children and Families Centre" + ], + "field_latitude": ["-36.391548"], + "field_latitude_longitude_value": ["-36.391548,145.361267"], + "field_latitude_value": ["-36.391548"], + "field_longitude": ["145.361267"], + "field_longitude_value": ["145.361267"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["ELC-MOO"], + "field_project_title": ["New Integrated Early Learning Centre"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["16-18 O\u2019Brien St"], + "field_suburb": ["Mooroopna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21447], + "status": [true], + "title": ["Mooroopna Children and Families Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3012b16b-85c9-49c5-a85d-4e68a62b8261"] + }, + "sort": ["Mooroopna Children and Families Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21407:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mooroopna-kindergarten-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Save the Children Australia upgraded the kindergarten to create a more functional and appealing space. The upgrade also created a second flexible-use space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 Children's Facilities Capital Program $300,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mooroopna Kindergarten Early Learning Centre" + ], + "field_latitude": ["-36.39148"], + "field_latitude_longitude_value": ["-36.39148,145.35983"], + "field_latitude_value": ["-36.39148"], + "field_longitude": ["145.35983"], + "field_longitude_value": ["145.35983"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["ELC-20"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["17 O'Brien St"], + "field_suburb": ["Mooroopna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21407], + "status": [true], + "title": ["Mooroopna Kindergarten Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f70a0e8c-8878-42f8-a8d4-fd19147fbd80"] + }, + "sort": ["Mooroopna Kindergarten Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20022:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mooroopna-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We installed a new school playground that reflects the natural bush setting of the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $231,125" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mooroopna North Primary School" + ], + "field_latitude": ["-36.3291465"], + "field_latitude_longitude_value": ["-36.3291465,145.2986574"], + "field_latitude_value": ["-36.3291465"], + "field_longitude": ["145.2986574"], + "field_longitude_value": ["145.2986574"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["01-1612"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["835 Ardmona Road"], + "field_suburb": ["Mooroopna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20022], + "status": [true], + "title": ["Mooroopna North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5112493d-bfa3-476d-b007-95823afe779f"] + }, + "sort": ["Mooroopna North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20475:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mooroopna-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the existing student toilets to improve amenity, cleanliness and hygiene.", + "We constructed a new building to house one classroom and associated spaces.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $458,397 from the Minor Capital Works Fund.", + "In the 2017\u201318 State Budget, the school was allocated $231,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mooroopna Park Primary School" + ], + "field_latitude": ["-36.380103", "-36.3801"], + "field_latitude_longitude_value": ["-36.380103,145.34594"], + "field_latitude_value": ["-36.380103"], + "field_longitude": ["145.34594", "145.34668"], + "field_longitude_value": ["145.34594"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["D1-01-5088", "01-5088"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2024", "Q2 2019"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["45 MacIsaac Road"], + "field_suburb": ["Mooroopna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20475], + "status": [true], + "title": ["Mooroopna Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["428e9073-2095-4ed7-890b-50591a33d568"] + }, + "sort": ["Mooroopna Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36777:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mooroopna-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $229,914" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mooroopna Primary School" + ], + "field_latitude": ["-36.391363"], + "field_latitude_longitude_value": ["-36.391363,145.360292"], + "field_latitude_value": ["-36.391363"], + "field_longitude": ["145.360292"], + "field_longitude_value": ["145.360292"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["01-1432"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["16-18 O'Brien Street"], + "field_suburb": ["Mooroopna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36777], + "status": [true], + "title": ["Mooroopna Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b2f8db16-c8e2-491c-b18e-b424a3a12e20"] + }, + "sort": ["Mooroopna Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27769:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/morang-south-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Morang South Primary School" + ], + "field_latitude": ["-37.65286941"], + "field_latitude_longitude_value": ["-37.65286941,145.0946659"], + "field_latitude_value": ["-37.65286941"], + "field_longitude": ["145.0946659"], + "field_longitude_value": ["145.0946659"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3752"], + "field_project_code": ["01-1975"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["77 Gorge Rd"], + "field_suburb": ["South Morang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27769], + "status": [true], + "title": ["Morang South Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["f0607082-fa61-4b86-8d4e-e0bc2938730b"] + }, + "sort": ["Morang South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20873:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mordialloc-beach-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade classrooms in Block A and BER building.", + "We've completed internal and external refurbishments to Blocks A, C & D including the refurbishment of student toilets in Block C.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $2.884 million.", + "In the 2016-17 State Budget, $250,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mordialloc Beach Primary School" + ], + "field_latitude": ["-38.005582", "-38.00538"], + "field_latitude_longitude_value": ["-38.005582,145.088809"], + "field_latitude_value": ["-38.005582"], + "field_longitude": ["145.088809", "145.08845"], + "field_longitude_value": ["145.088809"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["D1-01-846", "01-846"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q1 2025", "Q3 2017"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["58 Barkly Street"], + "field_suburb": ["Mordialloc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20873], + "status": [true], + "title": ["Mordialloc Beach Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6b4f3e8b-722a-4505-8e0d-eaae9aaf35d6"] + }, + "sort": ["Mordialloc Beach Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20826:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mordialloc-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We made repairs to the balcony of the original school building.", + "We built new Year 8 and Year 12 learning centres. These state-of-the-art buildings include resource spaces for books, computers and desk areas, as well as learning spaces and breakout areas for group and individual learning.", + "We built an indoor inclusive learning space, including upgraded environment and sensory space.", + "We\u00a0created a performing arts facility and demolished the school's outdated multipurpose hall.\u00a0 We also constructed a new single court\u00a0competition-grade\u00a0gym with change rooms, an outdoor hub,\u00a0and\u00a0undertook\u00a0general maintenance." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2022\u201323 State Budget the project received $716,627 from the Minor Capital Works Fund.", + "In the 2019\u201320 State Budget, the school received $855,700. In 2020, the school received $7.70 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $196,000.", + "In the 2014\u201315 State Budget, $1.3 million was allocated to the school. In the 2015\u201316 State Budget, $4.5 million was allocated to the school. The school also received $750,000 in School Pride and Sports Funding." + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mordialloc College." + ], + "field_latitude": [ + "-38.012243", + "-38.01222", + "-38.0122218", + "-38.01138" + ], + "field_latitude_longitude_value": ["-38.012243,145.092675"], + "field_latitude_value": ["-38.012243"], + "field_longitude": [ + "145.092675", + "145.09188", + "145.0918777", + "145.09117" + ], + "field_longitude_value": ["145.092675"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": [ + "D4-01-8075", + "D3-01-8075", + "D1-01-8075", + "D2-01-8075", + "01-8075" + ], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation - Year 8 and Year 12 Learning Centres", + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation" + ], + "field_q_complete": [ + "Subject to future funding", + "Q4 2023", + "Q2 2022", + "Q3 2022", + "Q3 2017" + ], + "field_start_date": ["Q2 2023", "Q2 2022", "Q2 2019", "Q2 2021"], + "field_status_name": [ + "Planning", + "Complete", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["1 Station St"], + "field_suburb": ["Mordialloc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20826], + "status": [true], + "title": ["Mordialloc College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2e73f56c-9410-4471-a805-eb4ebe6f2043"] + }, + "sort": ["Mordialloc College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24589:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/moreland-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-10-27T16:25:43+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Moreland City Council plan several kindergarten building projects. The council will evaluate how to improve and expand its kindergartens to create more places for local children. This planning gets the projects ready for construction, which depends on future funding.", + "We are helping Moreland City Council employ a project manager to lead 4 kindergarten building projects.This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Grant - Planning stream, $150,000 was allocated to this project.", + "In Round 2 of the 2022\u201323 Planning Grants, $150,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Planning Grant" + ], + "field_landing_page_summary": [ + "Learn more about the Moreland City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MCCK", "D2-15-MCCK"], + "field_project_title": [ + "Building Blocks Planning \u2014 Improvement and expansion planning", + "Building Blocks Planning \u2014 Project manager" + ], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24589], + "status": [true], + "title": [ + "Moreland City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["40a07a81-065a-4d96-b59f-9aac960e96f9"] + }, + "sort": [ + "Moreland City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21246:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moreland-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Moreland Kindergarten in preparation for the roll-out of subsidised kindergarten for three-year-olds. This project will improve the quality of the learning environment and increase capacity." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 20\u201321 Building Blocks Capacity Grants $542,250 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Moreland Kindergarten" + ], + "field_latitude": ["-37.743827819824219"], + "field_latitude_longitude_value": [ + "-37.743827819824219,144.96449279785156" + ], + "field_latitude_value": ["-37.743827819824219"], + "field_longitude": ["144.96449279785156"], + "field_longitude_value": ["144.96449279785156"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["15-314"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["157-163 Moreland Rd"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21246], + "status": [true], + "title": ["Moreland Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8e190330-868d-4374-8a5b-24996833aa07"] + }, + "sort": ["Moreland Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34238:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moriac-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Surf Coast Shire Council plan to renovate and expand the centre. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $40,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Moriac Kindergarten" + ], + "field_latitude": ["-38.243915"], + "field_latitude_longitude_value": ["-38.243915,144.169473"], + "field_latitude_value": ["-38.243915"], + "field_longitude": ["144.169473"], + "field_longitude_value": ["144.169473"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3240"], + "field_project_code": ["15-62"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["7 Clerke Court"], + "field_suburb": ["Moriac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34238], + "status": [true], + "title": ["Moriac Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a4d56acd-d279-4b0d-adf9-4fd8bc5633a9"] + }, + "sort": ["Moriac Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20259:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/moriac-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded a classroom building\u00a0at Moriac Primary School.\u00a0", + "\u200bWe completed\u00a0landscaping work and created space for\u00a0outdoor learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $3 million was allocated to the school.", + "The Government subsequently announced $500,000 in additional funding." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Moriac Primary School" + ], + "field_latitude": ["-38.24161"], + "field_latitude_longitude_value": ["-38.24161,144.17544"], + "field_latitude_value": ["-38.24161"], + "field_longitude": ["144.17544"], + "field_longitude_value": ["144.17544"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3240"], + "field_project_code": ["01-4117", "D1-01-4117"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 1", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": ["Q2 2018", "Q3 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["785 Hendy Main Rd"], + "field_suburb": ["Moriac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20259], + "status": [true], + "title": ["Moriac Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9d84e8f6-5858-4bdf-8ac0-4b9edda7825f"] + }, + "sort": ["Moriac Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20984:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mornington-area-planning-and-provision-study"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are undertaking a planning and specialist provision study for the Mornington and Western Port areas, including Mornington Special Developmental School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the project received $500,000." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Mornington Area - Planning and Provision Study" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["01-MPP"], + "field_project_title": ["Planning"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20984], + "status": [true], + "title": ["Mornington Area - Planning and Provision Study"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["58e4ddc5-137c-46dd-9462-6a35583eb679"] + }, + "sort": ["Mornington Area - Planning and Provision Study"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20455:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mornington-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing school's toilets to improve amenity, cleanliness and hygiene.", + "We are building an inclusive playground, including new play equipment and synthetic rubber.", + "We built\u00a0a joint facility running track to be shared with neighbouring schools. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $460,127 from the Minor Capital Works Fund.", + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "In 2016, $200,00 was allocated to the school as part of Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mornington Park Primary School" + ], + "field_latitude": ["-38.226026", "-38.226026", "-38.22579"], + "field_latitude_longitude_value": ["-38.226026,145.058751"], + "field_latitude_value": ["-38.226026"], + "field_longitude": ["145.058751", "145.058751", "145.05869"], + "field_longitude_value": ["145.058751"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["D2-01-5040", "D1-01-5040", "01-5040"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 7", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2024", "Q1 2024", "Q3 2017"], + "field_start_date": ["Q2 2022", "Q4 2021"], + "field_status_name": ["Construction", "Construction", "Complete"], + "field_street_address": ["Robertson Dr"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20455], + "status": [true], + "title": ["Mornington Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8eaf15e3-6811-46f6-a5fa-40b46c313abc"] + }, + "sort": ["Mornington Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24581:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/mornington-peninsula-shire-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Mornington Peninsula Shire Council plan a number of early childhood building projects to meet growing local demand for kindergarten places. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Mornington Peninsula Shire Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MOPE"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24581], + "status": [true], + "title": [ + "Mornington Peninsula Shire Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["cce14b17-b27b-45f8-b887-00b7e9ccdd3a"] + }, + "sort": [ + "Mornington Peninsula Shire Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20063:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mornington-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have built a new school building at Mornington\u00a0Primary School.\u00a0The building\u00a0houses\u00a0new\u00a0general purpose classrooms as well as outdoor learning areas, decks and ramps.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, the school was allocated $700,000 from the School Improvement Fund. In the 2016\u201317 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": [ + "School Improvement Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mornington Primary School." + ], + "field_latitude": ["-38.22188"], + "field_latitude_longitude_value": ["-38.22188,145.04347"], + "field_latitude_value": ["-38.22188"], + "field_longitude": ["145.04347"], + "field_longitude_value": ["145.04347"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["01-2033"], + "field_project_title": [ + "Upgrade and Modernisation, School Improvement Fund" + ], + "field_q_complete": ["Q1 2018"], + "field_start_date": ["Q2 2015"], + "field_status_name": ["Complete"], + "field_street_address": ["Vale St"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20063], + "status": [true], + "title": ["Mornington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["18d6db8b-c770-4fca-bb16-87a18041fd52"] + }, + "sort": ["Mornington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20919:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mornington-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We developed a new learning centre and wellbeing garden.\u00a0\u200b\u200b\u200b\u200b\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mornington Secondary College" + ], + "field_latitude": ["-38.22617"], + "field_latitude_longitude_value": ["-38.22617,145.04935"], + "field_latitude_value": ["-38.22617"], + "field_longitude": ["145.04935"], + "field_longitude_value": ["145.04935"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["01-8804"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["1051 Nepean Hwy"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20919], + "status": [true], + "title": ["Mornington Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4fa2240e-fba8-4af3-a469-0438e142c69f"] + }, + "sort": ["Mornington Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24994:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mornington-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. These will replace relocatable buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $6.769 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mornington Special Developmental School" + ], + "field_latitude": ["-38.22610733"], + "field_latitude_longitude_value": ["-38.22610733,145.0571838"], + "field_latitude_value": ["-38.22610733"], + "field_longitude": ["145.0571838"], + "field_longitude_value": ["145.0571838"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["01-5239"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["40 Robertson Drive"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24994], + "status": [true], + "title": ["Mornington Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a7fc2414-4b8f-4822-94ca-265aecb75cf6"] + }, + "sort": ["Mornington Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28774:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/morobe-street-child-day-care-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T15:05:16+11:00"], + "field_about_project_processed": [ + "We are creating a playground that develops children\u2019s physical, mental and social skills. They will discover a new inclusive space for active, independent and meaningful play. It will offer a range of play experiences and activities to suit children with a disability." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $198,065.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Morobe Street Child Day Care Centre." + ], + "field_latitude": ["-37.73973529"], + "field_latitude_longitude_value": ["-37.73973529,145.0430078"], + "field_latitude_value": ["-37.73973529"], + "field_longitude": ["145.0430078"], + "field_longitude_value": ["145.0430078"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3081"], + "field_project_code": ["15-3589"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["229 Oriel Rd"], + "field_suburb": ["Heidelberg West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28774], + "status": [true], + "title": ["Morobe Street Child Day Care Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["c60cf99c-c73f-43c4-8613-9543e34dd810"] + }, + "sort": ["Morobe Street Child Day Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20592:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mortlake-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0delivered\u00a0an architect-designed modular building to the school. The new building\u00a0features general purpose classrooms, student toilets, breezeway and a linking deck to an existing building. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "We upgraded facilities at the school, including refurbishing\u00a0and modernising classrooms and facilities that were in poor condition.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.176 million through the Permanent Modular School Buildings Program.", + "In the 2018\u201319 State Budget $950,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mortlake P-12 College." + ], + "field_latitude": ["-38.085800"], + "field_latitude_longitude_value": ["-38.085800,142.809677"], + "field_latitude_value": ["-38.085800"], + "field_longitude": ["142.809677"], + "field_longitude_value": ["142.809677"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3272"], + "field_project_code": ["D1-01-5376", "01-5376"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2021", "Q2 2020"], + "field_start_date": ["Q2 2019", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["10 Hood Av"], + "field_suburb": ["Mortlake"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20592], + "status": [true], + "title": ["Mortlake P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["71b4d2f5-2484-443a-a7e5-8fde63696dc8"] + }, + "sort": ["Mortlake P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20674:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/morwell-central-primary-school"], + "changed": ["2023-07-28T15:30:47+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have officially opened Morwell Central Primary School. The school was a result of the Morwell Regeneration project, which included merging the existing Commercial Road, Crinigan Road and Tobruk Street primary schools into a single, state-of-the-art education facility for the town of Morwell. The new school incorporates extensive site works, outdoor amphitheatres, active play areas, ball courts, sand play and outdoor learning courtyards. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $10.45 million was allocated to the Morwell regeneration project." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the improvements at Morwell Central Primary School" + ], + "field_latitude": ["-38.23149"], + "field_latitude_longitude_value": ["-38.23149,146.40655"], + "field_latitude_value": ["-38.23149"], + "field_longitude": ["146.40655"], + "field_longitude_value": ["146.40655"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we built at Morwell Central Primary School." + ], + "field_postcode": ["3840"], + "field_project_code": ["01-5568"], + "field_project_title": ["New School"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["47 - 87 McDonald Street"], + "field_suburb": ["Morwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20674], + "status": [true], + "title": ["Morwell Central Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7146400d-936e-4e71-91bf-fd1c25eedfb8"] + }, + "sort": ["Morwell Central Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20425:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/morwell-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an early learning centre at the school. There is a kindergarten as well as a range of health and family services, using the \"Our Place\" approach. We also upgraded the school entrance to make it easier for the school and centre to come together to share\u00a0facilities and programs. This is one of 10 similar projects around the state, delivered in partnership with the Colman Foundation. What is the Our Place approach? The Our Place approach creates a shared entrance between a government school and early learning centre. It provides parents and families with a range of education, health and wellbeing services. The Our Place approach helps build an integrated learning community.\u00a0It brings social benefits and\u00a0improves\u00a0education\u00a0for families and children. Key features of the Our Place approach include: a single point of entry to bring families together and help children make the move from kindergarten to school early learning centres and primary schools working together to provide services creating shared spaces for community services, such as adult education and training, volunteering and job-seeking providing\u00a0community facilitators and other help so it's easier for families and children to get the education, health and wellbeing services they need. What is the Colman Foundation? The Colman Foundation is a philanthropic organisation. It developed the Our Place approach\u00a0to achieve positive social change by placing education at\u00a0the\u00a0heart of a disadvantaged community.", + "We've\u00a0merged Tobruk Street, Commercial Road and Morwell primary schools onto one site; the old Kurnai College site in McDonald street.\u00a0This is known as the Morwell Regeneration Project.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, $5.35 million was allocated to this kinder.", + "In the 2016\u201317 State Budget, $7.75 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Morwell Park Primary School." + ], + "field_latitude": ["-38.227692", "-38.22769"], + "field_latitude_longitude_value": ["-38.227692,146.425003"], + "field_latitude_value": ["-38.227692"], + "field_longitude": ["146.425003", "146.425"], + "field_longitude_value": ["146.425003"], + "field_mappintype_name": ["Early childhood", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3840"], + "field_project_code": ["D1-01-4975", "01-4975"], + "field_project_title": [ + "Upgrade and Modernisation - Kinder on a School Site - Colman Partnership", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2023", "Q1 2018"], + "field_start_date": ["Q2 2020", "Q3 2016"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["76-82 Vary St"], + "field_suburb": ["Morwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20425], + "status": [true], + "title": ["Morwell Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ce4d42aa-d13c-4d98-9ec9-b032ba9f811f"] + }, + "sort": ["Morwell Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34399:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mossfiel-integrated-family-centre-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-08-08T09:44:21+10:00"], + "field_about_project_processed": [ + "We are building a 3-room modular kindergarten in partnership with Wyndham City Council. It will provide 99 kindergarten places for the local community. It will also include an outdoor play space and two maternal and child health consulting rooms. To make drop-off and pick-up easier, landscaping works will include carparking.\u00a0Enrolment\u00a0An approved provider will be appointed and announced in late 2023. For enrolment enquiries please contact Wyndham City Council." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $1.68 billion was allocated to Three-Year-Old Kindergarten. This included $3 million for Mossfiel Integrated Family Centre (interim name)." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build of Mossfiel Integrated Family Centre (interim name)" + ], + "field_latitude": ["-37.87825673"], + "field_latitude_longitude_value": ["-37.87825673,144.6913213"], + "field_latitude_value": ["-37.87825673"], + "field_longitude": ["144.6913213"], + "field_longitude_value": ["144.6913213"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Mossfiel Integrated Family Centre | modular kinder installation \u00a0" + ], + "field_postcode": ["3029"], + "field_project_code": ["15-MFC"], + "field_project_title": [ + "Building Blocks Capacity Fund \u2013 Modular Kinder" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["162 Heaths Road"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34399], + "status": [true], + "title": ["Mossfiel Integrated Family Centre (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["29a44634-e0d2-494c-8b32-4c97d4a79cad"] + }, + "sort": ["Mossfiel Integrated Family Centre (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25378:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mossfiel-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing student toilets in Block A to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $498,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mossfiel Primary School" + ], + "field_latitude": ["-37.872881"], + "field_latitude_longitude_value": ["-37.872881,144.696117"], + "field_latitude_value": ["-37.872881"], + "field_longitude": ["144.696117"], + "field_longitude_value": ["144.696117"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-5002"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["15a Langridge Street"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25378], + "status": [true], + "title": ["Mossfiel Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f1e9a306-b9d8-4851-b877-251adbf8eb64"] + }, + "sort": ["Mossfiel Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20522:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mossgiel-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the school's toilets to improve hygiene and amenity of facilities for student use.", + "We built a flexible indoor-outdoor learning space. This included\u00a0heavy-duty chessboards and new flexible seating arrangements under the cover of a waterproof shade structure. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $462,165.", + "In 2016, $171,900\u00a0 was allocated to the school as part of Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mossgiel Park Primary School." + ], + "field_latitude": ["-37.9686172", "-37.96831"], + "field_latitude_longitude_value": ["-37.9686172,145.2675373"], + "field_latitude_value": ["-37.9686172"], + "field_longitude": ["145.2675373", "145.26664"], + "field_longitude_value": ["145.2675373"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["D1-01-5205", "01-5205"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2023", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["71 Scotsburn Way"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20522], + "status": [true], + "title": ["Mossgiel Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9d3e384b-4184-4f27-9ae7-3e0eeca16123"] + }, + "sort": ["Mossgiel Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20784:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-alexander-7-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a five-storey learning hub with an amphitheatre and central square. The new hub is split over 5 levels and is central to everyday learning. Students can also now follow specialist pathways in design, technology and the arts. This upgrade allows the College to steadily increase enrolments to 900. This school is part of the Flemington Education Plan. Its vision is to give the local community high-quality, seamless education from birth. This will foster positive health and wellbeing and the capacity to succeed. Learn how\u00a0education plans\u00a0offer extra support for students to reach their full potential. Students and teachers have access to classroom spaces and resources catered to: the arts (fine art and multimedia) performing arts (music, dance and drama) digital and systems technology junior science a senior student common room and lounge new administration office staff support and general classroom learning. About the design The design encapsulates the College\u2019s values \u2013 community, engagement, excellence, integrity and respect. There were 3 key drivers for the design: context and scale engagement and connectivity connection to nature Feedback from the school community helped to shape the design. We heard that they wanted sustainability as a key driver in every design decision, so the architects designed a building with bespoke shading that minimises energy use. A Variable Refrigerant Flow (VRF) heating and cooling system controls temperatures throughout the hub. This technology can distribute warm and cool air at the same time, depending on the needs of the students and staff. We created spaces that connect general learning areas to specialist areas. We introduced flexible walls, allowing teachers and students to customise learning spaces. There are also a range of indoor and outdoor spaces that allow students to customise how they learn. The new amphitheatre at the east end of the learning hub links to the interior performance space. Doors that connect the two areas will provide flexible performance alternatives. There are accessible ramps and walkways throughout the hub and its outdoor spaces. There is also an elevator in the south of the building. We chose terracotta concrete panels that match other buildings in the Flemington area. This colour also draws on the heritage-listed brick substation beside the new entrance. The North Gardens offers external space that connects to classrooms inside. Students are able to use the gardens for music and art lessons, and seating allows groups to study outside, shaded by the lemon-scented gum trees. There is a vertical garden in the West Gardens where students can practice music. An outdoor learning space on level 5 connects 2 new teaching and learning spaces to the outdoors. The hub\u2019s roof design means it can be converted to a future play space. It also accommodates solar panels, which are part of the future-proofing energy strategy.", + "\u200b\u200b\u200b\u200b\u200bWe improved the school's overall\u00a0aesthetic by updating its facade.\u00a0 The Victorian Government allocated $10 million to the School Improvement Fund in the 2015\u201316 State Budget to support minor works projects.\u00a0 The School Improvement Fund supports small school projects that contribute to the community's pride in the school, and that help to foster a great relationship between the school and its local community.\u200b" + ], + "field_content_category": [1338, 1475], + "field_content_category_name": ["News", "Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.527 million in planning funding. In the 2020\u201321 State Budget, the school received $24.773 million.", + "In the 2015\u201316 State Budget, $250,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Alexander 7-12 College." + ], + "field_latitude": ["-36.996555328369141", "-37.78248"], + "field_latitude_longitude_value": [ + "-36.996555328369141,144.30545043945312" + ], + "field_latitude_value": ["-36.996555328369141"], + "field_longitude": ["144.30545043945312", "144.9330699"], + "field_longitude_value": ["144.30545043945312"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "New 5-storey learning hub for Mount Alexander College \u00a0", + "Mount Alexander 7-12 College \u2013 construction update" + ], + "field_postcode": ["3031"], + "field_project_code": ["D1-01-7763", "01-7763"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["167-175 Mt Alexander Road"], + "field_suburb": ["Flemington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20784], + "status": [true], + "title": ["Mount Alexander 7-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2eeb5037-4d97-4ffd-8f98-4510bbc0c8ab"] + }, + "sort": ["Mount Alexander 7-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24601:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/mount-alexander-shire-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Mount Alexander Shire Council plan the future of South Castlemaine Kindergarten. They\u2019re also doing population growth studies to better understand where other kindergartens might be needed in the future. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $144,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Mount Alexander Shire Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MASC"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24601], + "status": [true], + "title": [ + "Mount Alexander Shire Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["44b3040f-d729-416d-8ff4-23b332de4ef3"] + }, + "sort": [ + "Mount Alexander Shire Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20306:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-beauty-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Building on works underway at the school, we are upgrading and modernising facilities, including Block C. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We helped the school extend the BER Library Learning Building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $2.316 million, with a further $1.37 million in 2023.", + "In the 2020 Minor Capital Works Fund the school was allocated $107,756." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Beauty Primary School." + ], + "field_latitude": ["-36.7427081", "-36.7427081"], + "field_latitude_longitude_value": ["-36.7427081,147.1685018"], + "field_latitude_value": ["-36.7427081"], + "field_longitude": ["147.1685018", "147.1685018"], + "field_longitude_value": ["147.1685018"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3699"], + "field_project_code": ["D1-01-4644", "01-4644"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2024", "Q1 2023"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Lakeside Av"], + "field_suburb": ["Mount Beauty"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20306], + "status": [true], + "title": ["Mount Beauty Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c32b19f1-c7b2-4ee4-91c7-b8bafe40bd41"] + }, + "sort": ["Mount Beauty Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22358:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-beauty-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:24:13+11:00"], + "field_about_project_processed": [ + "We provided a replacement of roof sheeting to the school's main building corridor." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $143,153." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Beauty Secondary College." + ], + "field_latitude": ["-36.740307"], + "field_latitude_longitude_value": ["-36.740307,147.167284"], + "field_latitude_value": ["-36.740307"], + "field_longitude": ["147.167284"], + "field_longitude_value": ["147.167284"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3699"], + "field_project_code": ["01-8100"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Tailrace Rd"], + "field_suburb": ["Mount Beauty"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22358], + "status": [true], + "title": ["Mount Beauty Secondary College"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["395cd8d0-1934-443d-b31f-875f34f4f875"] + }, + "sort": ["Mount Beauty Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20748:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-clear-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This\u00a0project delivered\u00a0a central technical hub, reconfigured from the south end of Building C, as well as created\u00a0flexible learning spaces. We\u00a0also\u00a0improved the building's energy efficiency.\u200b", + "Stage 2 upgrades are now complete. We have\u00a0refurbished\u00a0the ground floor of\u00a0Block B\u00a0to:\u200b create\u00a0arts and science hubs, VCAL areas, Year 10,\u00a011 and\u00a012 study areas and related staff areas replace\u00a0external fabric and\u00a0windows and doors.", + "We upgraded Mount Clear College. The latest funding was used to modernise Block A, which houses the food technology, music, drama and science facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $2.1 million was allocated to the school.", + "This project was allocated $3 million in the 2018-19 State Budget.", + "In the 2019-20 State Budget, the school received $5.5 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Clear College" + ], + "field_latitude": ["-37.607738", "-37.60774"], + "field_latitude_longitude_value": ["-37.607738,143.875977"], + "field_latitude_value": ["-37.607738"], + "field_longitude": ["143.875977", "143.87598"], + "field_longitude_value": ["143.875977"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3353"], + "field_project_code": ["01-7267", "D1-01-7267", "D2-01-7267"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 1", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 3" + ], + "field_q_complete": ["Q4 2018", "Q3 2020", "Q2 2021"], + "field_start_date": ["Q2 2016", "Q2 2018", "Q2 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["59 Olympic Avenue"], + "field_suburb": ["Mount Clear"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20748], + "status": [true], + "title": ["Mount Clear College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9046c0a9-9c42-4378-a1ae-0e2ac0b03683"] + }, + "sort": ["Mount Clear College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20283:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-clear-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the basketball and netball courts with synthetic surfaces for safe student use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $350,910." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Clear Primary School." + ], + "field_latitude": ["-37.6031883822928"], + "field_latitude_longitude_value": [ + "-37.6031883822928,143.868599056773" + ], + "field_latitude_value": ["-37.6031883822928"], + "field_longitude": ["143.868599056773"], + "field_longitude_value": ["143.868599056773"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-427"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1206 Geelong Rd"], + "field_suburb": ["Mount Clear"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20283], + "status": [true], + "title": ["Mount Clear Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1b5ad51c-df8b-4047-a338-6c7172587cfc"] + }, + "sort": ["Mount Clear Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28890:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-dandenong-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-24T13:39:43+11:00"], + "field_about_project_processed": [ + "We are rebuilding Mount Dandenong Preschool at Mount Dandenong Primary School. It will include a kindergarten room, multipurpose community space, a health consulting room, an office, and an outdoor learning area.Storms damaged the original kindergarten beyond repair in mid-2021. The kindergarten moved to Olinda Primary School while we planned a new one.It will continue to operate from Olinda Primary School until the new building is complete.Permanent location for new kindergartenWe worked closely with Yarra Ranges Council, Mount Dandenong Primary School and Yarra Ranges Kindergartens to find a suitable permanent home for the kindergarten. Together, we decided to move it to Mount Dandenong Primary School.We\u2019ll build the new kindergarten next to the primary school\u2019s basketball court. This will let us keep the school\u2019s oval, car park and significant trees. It will also provide a clear, separate entrance for the kindergarten.The basketball court is important to the school. To build the kindergarten, we will need to move the court to the back of the oval. We will also have to reconfigure a school playground area. Unfortunately, the basketball court and parts of the playground cannot be used during construction. We will provide the school community with dates and potential alternatives before this work begins.After moving the basketball court, we will resurface it so that it can be enjoyed by the school community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mount Dandenong Preschool" + ], + "field_latitude": ["-37.83074276"], + "field_latitude_longitude_value": ["-37.83074276,145.362166"], + "field_latitude_value": ["-37.83074276"], + "field_longitude": ["145.362166"], + "field_longitude_value": ["145.362166"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3767"], + "field_project_code": ["15-5712"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Farndons Road"], + "field_suburb": ["Mount Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28890], + "status": [true], + "title": ["Mount Dandenong Preschool"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["d15419a4-8196-45a2-b937-06bc6d4a8e7d"] + }, + "sort": ["Mount Dandenong Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20180:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-dandenong-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created\u00a0a multi-sensory, multi-functional outdoor space which promotes inclusivity and community connections, while encouraging a range of exploratory and reflective play. \u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Dandenong Primary School" + ], + "field_latitude": ["-37.82895"], + "field_latitude_longitude_value": ["-37.82895,145.36237"], + "field_latitude_value": ["-37.82895"], + "field_longitude": ["145.36237"], + "field_longitude_value": ["145.36237"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3767"], + "field_project_code": ["01-3284"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Farndons Rd"], + "field_suburb": ["Mount Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20180], + "status": [true], + "title": ["Mount Dandenong Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0c71b72e-fd12-4da0-9693-495c774d57b0"] + }, + "sort": ["Mount Dandenong Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20594:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-duneed-regional-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will continue upgrading the school, completing the next stage of the school's master plan. We will be refurbishing the BER building and providing fresh landscaping.", + "We\u00a0upgraded\u00a0and modernised\u00a0facilities, including refurbishment of classrooms in poor condition, to improve standards across the school. These works are\u00a0targeted facilities that needed it most, ensuring the school has the learning facilities it needs to deliver modern education.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $3.6 million", + "In the 2017-18 State Budget, $2.2 million was allocated to the school" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Duneed Regional Primary School" + ], + "field_latitude": ["-38.241169"], + "field_latitude_longitude_value": ["-38.241169,144.319626"], + "field_latitude_value": ["-38.241169"], + "field_longitude": ["144.319626"], + "field_longitude_value": ["144.319626"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["D1-01-5380", "01-5380"], + "field_project_title": [ + "Upgrade and Modernisation - BER Building Refurbishment and Landscaping", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2025", "Q4 2019"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["90-100 Williams Road"], + "field_suburb": ["Mount Duneed"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20594], + "status": [true], + "title": ["Mount Duneed Regional Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["797032a4-3e45-485d-8801-35740bc53f53"] + }, + "sort": ["Mount Duneed Regional Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22343:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-egerton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:23:51+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet block to improve amenity, cleanliness, and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $457,897" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Egerton Primary School" + ], + "field_latitude": ["-37.6285209"], + "field_latitude_longitude_value": ["-37.6285209,144.1021691"], + "field_latitude_value": ["-37.6285209"], + "field_longitude": ["144.1021691"], + "field_longitude_value": ["144.1021691"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3352"], + "field_project_code": ["01-1918"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["58 Church Street"], + "field_suburb": ["Mount Egerton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22343], + "status": [true], + "title": ["Mount Egerton Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["044b95b5-88b3-414e-ae37-db1a34a78447"] + }, + "sort": ["Mount Egerton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20491:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-eliza-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are refurbishing the student toilet block adjacent to main school building, including making plumbing repairs, to improve amenity, cleanliness and hygiene.", + "We refurbished and modernised a toilet block to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2022-23 State Budget the project received $305,577 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $153,165" + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Eliza North Primary School" + ], + "field_latitude": ["-38.188401", "-38.188378"], + "field_latitude_longitude_value": ["-38.188401,145.10054"], + "field_latitude_value": ["-38.188401"], + "field_longitude": ["145.10054", "145.100837"], + "field_longitude_value": ["145.10054"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3930"], + "field_project_code": ["D2-01-5140", "D1-01-5140", "01-5140"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund \u2013 2022\u201323 State Budget", + "Minor Capital Works Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q1 2024", + "Q3 2022" + ], + "field_start_date": ["Q2 2023", "Q2 2022", "Q4 2020"], + "field_status_name": ["Planning", "Construction", "Complete"], + "field_street_address": ["6 Moseley Dr"], + "field_suburb": ["Mount Eliza"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20491], + "status": [true], + "title": ["Mount Eliza North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["93de52c8-43a3-4c20-9ec0-40a678adb757"] + }, + "sort": ["Mount Eliza North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19983:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-eliza-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to the school to replace Block A.\u00a0", + "We are building an inclusive outdoor learning space, including shade structure, seating and a kitchen garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $2,940,000.", + "In Round 7 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Eliza Primary School." + ], + "field_latitude": ["-38.1948", "-38.195387"], + "field_latitude_longitude_value": ["-38.1948,145.0932599"], + "field_latitude_value": ["-38.1948"], + "field_longitude": ["145.0932599", "145.092187"], + "field_longitude_value": ["145.0932599"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3930"], + "field_project_code": ["01-1368", "D1-01-1368"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund - Round 7" + ], + "field_q_complete": ["Q2 2019", "Q4 2023"], + "field_start_date": ["Q2 2018", "Q4 2021"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["Wooralla Dr"], + "field_suburb": ["Mount Eliza"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19983], + "status": [true], + "title": ["Mount Eliza Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b48bad76-9901-4fb7-982a-af5f70156cb3"] + }, + "sort": ["Mount Eliza Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25379:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-eliza-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student toilet facilities in the school's canteen and well-being areas to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $499,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Eliza Secondary College" + ], + "field_latitude": ["-38.189704"], + "field_latitude_longitude_value": ["-38.189704,145.093544"], + "field_latitude_value": ["-38.189704"], + "field_longitude": ["145.093544"], + "field_longitude_value": ["145.093544"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3930"], + "field_project_code": ["01-8102"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["204 Canadian Bay Road"], + "field_suburb": ["Mount Eliza"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25379], + "status": [true], + "title": ["Mount Eliza Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d32e7ebe-7263-4148-a2fe-6348f8d7761c"] + }, + "sort": ["Mount Eliza Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20732:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-erin-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We\u00a0modernised facilities including creating a new hockey field, and upgrading the college gymnasium to competition-grade level.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2017\u201318 State Budget, $2.1 million was allocated to the school. A further $1.8 million has been allocated in the 2018\u201319 State Budget." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Erin Secondary College." + ], + "field_latitude": ["-38.181980"], + "field_latitude_longitude_value": ["-38.181980,145.202316"], + "field_latitude_value": ["-38.181980"], + "field_longitude": ["145.202316"], + "field_longitude_value": ["145.202316"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["D1-01-7028", "01-7028"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q3 2020"], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["Robinsons Rd"], + "field_suburb": ["Frankston South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20732], + "status": [true], + "title": ["Mount Erin Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["84ad8724-1b0f-4150-ab07-cff8bb833af8"] + }, + "sort": ["Mount Erin Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21118:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-lilydale-mercy-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported Mount Lilydale Mercy College to build\u00a0eight general learning areas, staff offices and associated spaces.\u200b\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$2,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mount Lilydale Mercy College" + ], + "field_latitude": ["-37.749645"], + "field_latitude_longitude_value": ["-37.749645,145.358353"], + "field_latitude_value": ["-37.749645"], + "field_longitude": ["145.358353"], + "field_longitude_value": ["145.358353"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Mercy Learning Centre | Mount Lilydale Mercy College" + ], + "field_postcode": ["3140"], + "field_project_code": ["02-474"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["120 Anderson Street"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21118], + "status": [true], + "title": ["Mount Lilydale Mercy College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["80004736-9ad9-4536-a726-14dff93d2b00"] + }, + "sort": ["Mount Lilydale Mercy College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20262:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-macedon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished a covered outdoor learning area and constructed a new STEAMM (Science, Technology, Engineering, Art, Mathematics and Music) Centre. \u200b School Design Awards This project, designed by Workshop Architecture, was a finalist for 'Best School Project Under $5 million' in the 2020 Victorian School Design Awards.", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $472,000 was allocated to the school.\u00a0", + "In Round 9 of the Inclusive Schools Fund, the project received $268,942" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Macedon Primary School" + ], + "field_latitude": ["-37.4048", "-37.40479379"], + "field_latitude_longitude_value": ["-37.4048,144.58367"], + "field_latitude_value": ["-37.4048"], + "field_longitude": ["144.58367", "144.5841275"], + "field_longitude_value": ["144.58367"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3441"], + "field_project_code": ["01-415", "D1-01-415"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q1 2019", "Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["641 Mount Macedon Rd"], + "field_suburb": ["Mount Macedon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20262], + "status": [true], + "title": ["Mount Macedon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0621438c-34f4-48aa-890c-b1e9d70d5d1f"] + }, + "sort": ["Mount Macedon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28657:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-martha-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor play and learning areas. Children will be able to learn while exploring natural landscapes or playing with others in a mud kitchen or bush hut. They will experience Indigenous culture and be able to relax alongside running water." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $187,632.10 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Martha Kindergarten." + ], + "field_latitude": ["-38.26761591"], + "field_latitude_longitude_value": ["-38.26761591,145.0199568"], + "field_latitude_value": ["-38.26761591"], + "field_longitude": ["145.0199568"], + "field_longitude_value": ["145.0199568"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3934"], + "field_project_code": ["15-913"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["35 Watson Rd"], + "field_suburb": ["Mount Martha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28657], + "status": [true], + "title": ["Mount Martha Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["97ab06cf-29a9-4953-ae52-3d76ea156beb"] + }, + "sort": ["Mount Martha Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21409:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-pleasant-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed the outdoor play space at the kindergarten. This project delivered: all-weather access to the outdoor space multiple sensory-based learning areas opportunities for children to develop their gross motor skills. We also made the outdoor more accessible for children of all abilities.", + "The City of Ballarat has built a second kindergarten room for the kindergarten. The upgrade\u00a0includes\u00a0expanded bathroom facilities and a \u200bnew entrance/foyer and storage." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $300,000 was allocated to the project.", + "As part of the Children's Facilities Capital Program $750,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mount Pleasant Kindergarten." + ], + "field_latitude": ["-37.816200256347656", "-37.57804"], + "field_latitude_longitude_value": [ + "-37.816200256347656,145.17585754394531" + ], + "field_latitude_value": ["-37.816200256347656"], + "field_longitude": ["145.17585754394531", "143.85404"], + "field_longitude_value": ["145.17585754394531"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["D1-ELC-22", "ELC-22"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q2 2022", "Q4 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["826 Laurie St"], + "field_suburb": ["Mt Pleasant"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21409], + "status": [true], + "title": ["Mount Pleasant Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3e4b8359-c0ae-4fbe-a6f3-1582da3dfbb8"] + }, + "sort": ["Mount Pleasant Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19994:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-pleasant-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We refurbished the toilet block to improve amenity, cleanliness, and hygiene.", + "We helped the school install rubber surfacing throughout the school playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000.", + "In Round 2 of the Minor Capital Works Fund, the project received $343,897", + "In the 2020 Minor Capital Works Fund the school was allocated $74,125" + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Pleasant Primary School" + ], + "field_latitude": ["-37.578357", "-37.578357", "-37.5780051"], + "field_latitude_longitude_value": ["-37.578357,143.857806"], + "field_latitude_value": ["-37.578357"], + "field_longitude": ["143.857806", "143.857806", "143.8575746"], + "field_longitude_value": ["143.857806"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["d2-1436", "D1-01-1436", "01-1436"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "Minor Capital Works Fund - Round 2", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2024", "Q2 2023", "Q4 2021"], + "field_start_date": ["Q4 2022", "Q4 2021", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["401 Cobden St"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19994], + "status": [true], + "title": ["Mount Pleasant Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a950d1b7-8ad6-443c-8f64-cb0cd623c953"] + }, + "sort": ["Mount Pleasant Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20359:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-pleasant-road-nunawading-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. This includes upgrading classrooms in Building 1.", + "We built\u00a0an accessible and inclusive playground with equipment and structures designed for students with additional needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $9.982 million.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Pleasant Road Nunawading Primary School" + ], + "field_latitude": ["-37.828587", "-37.82067"], + "field_latitude_longitude_value": ["-37.828587,145.180091"], + "field_latitude_value": ["-37.828587"], + "field_longitude": ["145.180091", "145.17897"], + "field_longitude_value": ["145.180091"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3131"], + "field_project_code": ["D1-01-4808", "01-4808"], + "field_project_title": [ + "Upgrade and Modernisation \u2013 Next Stage", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2025", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q4 2019"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Mt Pleasant Rd"], + "field_suburb": ["Nunawading"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20359], + "status": [true], + "title": ["Mount Pleasant Road Nunawading Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c7e71e34-4d07-4843-bf22-9263e02c184d"] + }, + "sort": ["Mount Pleasant Road Nunawading Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20945:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-ridley-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a 2-storey Senior Learning Centre. This will include classrooms as well as specialist areas for drama, music, art, science and IT. Once complete, the upgrade will allow the school to offer places to an extra 200 local students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received at least $10.706 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Ridley P-12 College." + ], + "field_latitude": ["-37.5792242"], + "field_latitude_longitude_value": ["-37.5792242,144.9208465"], + "field_latitude_value": ["-37.5792242"], + "field_longitude": ["144.9208465"], + "field_longitude_value": ["144.9208465"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-8853"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["2-30 Hampton St"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20945], + "status": [true], + "title": ["Mount Ridley P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ad69e7dd-08ba-4a8e-8268-d89d6dcfa637"] + }, + "sort": ["Mount Ridley P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20933:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-rowan-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. This includes building new classrooms.", + "We refurbished the old administration areas, completed landscaping works (including irrigation and external lighting poles) and resurfaced the existing courts.", + "\u200b\u200b\u200bWe completed\u00a0upgrade\u00a0and modernisation works to the school. The school was formerly part of\u00a0Ballarat Secondary College\u00a0before January 2019. We\u00a0refurbished\u00a0the performing arts facilities, the caf\u00e9, classrooms\u00a0 and the VCE\u00a0Centre. \u00a0 \u200b \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $6.114 million.", + "In the 2019\u201320 State Budget, the school received $3.596 million.", + "In the 2015\u201316 State Budget, $3 million was allocated to the school. In the 2016\u201317 State Budget, an additional $3 million was allocated to the school. A further $6.03 million was allocated to the school in the 2017\u201318 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Rowan Secondary College." + ], + "field_latitude": ["-37.51922", "-37.5187", "-37.518700"], + "field_latitude_longitude_value": ["-37.51922,143.834472"], + "field_latitude_value": ["-37.51922"], + "field_longitude": ["143.834472", "143.8354", "143.835400"], + "field_longitude_value": ["143.834472"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3355"], + "field_project_code": ["D2-01-8828", "D1-01-8828", "01-8828"], + "field_project_title": [ + "Upgrade and Modernisation \u2013\u00a0New Classrooms", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2025", "Q4 2020", "Q1 2020"], + "field_start_date": ["Q2 2022", "Q2 2019"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["Cnr Forest St & Giot Dr"], + "field_suburb": ["Wendouree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20933], + "status": [true], + "title": ["Mount Rowan Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["addb2b7e-4f7d-4daf-92a2-9d1f776670ee"] + }, + "sort": ["Mount Rowan Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21029:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-st-joseph-girls-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bWe supported the school to\u00a0extend\u00a0some\u00a0double-storey buildings,\u00a0as well as\u00a0refurbish\u00a05 general learning areas, amenities and associated areas. \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools $500,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mount St Joseph Girls' College." + ], + "field_latitude": ["-37.8641099"], + "field_latitude_longitude_value": ["-37.8641099,144.8121899"], + "field_latitude_value": ["-37.8641099"], + "field_longitude": ["144.8121899"], + "field_longitude_value": ["144.8121899"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3018"], + "field_project_code": ["02-1635"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["133 Maidstone St"], + "field_suburb": ["Altona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21029], + "status": [true], + "title": ["Mount St Joseph Girls' College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a8d15485-26e9-47f8-802a-cbec5349ce8e"] + }, + "sort": ["Mount St Joseph Girls' College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20405:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-view-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and extended facilities with acoustic treatments to create environments free of outside noise and interference.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $81,900 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount View Primary School" + ], + "field_latitude": ["-37.883"], + "field_latitude_longitude_value": ["-37.883,145.1784"], + "field_latitude_value": ["-37.883"], + "field_longitude": ["145.1784"], + "field_longitude_value": ["145.1784"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-4923"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Shepherd Rd"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20405], + "status": [true], + "title": ["Mount View Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7154b35b-f926-4627-b03d-02cb21faf69d"] + }, + "sort": ["Mount View Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20370:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-waverley-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space, including paving, landscaping and water tanks.", + "\u200b\u200bWe\u00a0delivered\u00a0a new architect-designed modular building to\u00a0Mount Waverley Heights Primary School\u00a0to replace the main classroom wing with new classrooms and a library. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $104,394", + "In the 2017-18 State Budget, $2,000,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Waverley Heights Primary School" + ], + "field_latitude": ["-37.888343", "-37.88921"], + "field_latitude_longitude_value": ["-37.888343,145.1080508"], + "field_latitude_value": ["-37.888343"], + "field_longitude": ["145.1080508", "145.11168"], + "field_longitude_value": ["145.1080508"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["D1-01-4832", "01-4832"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2022", "Q2 2018"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["36 Solomon Street"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20370], + "status": [true], + "title": ["Mount Waverley Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e5340e6f-cabb-467a-86c2-0a0eb8c787df"] + }, + "sort": ["Mount Waverley Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28772:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-waverley-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T14:31:09+11:00"], + "field_about_project_processed": [ + "We are renovating an unused space in the building to create an extra kindergarten room. With the new room, the kindergarten can offer 22 more places to local 3-year-old children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In\u00a0Round 2 of the 2022\u201323 Capacity Building Grants stream, $1,000,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mount Waverley Kindergarten." + ], + "field_latitude": ["-37.87355354"], + "field_latitude_longitude_value": ["-37.87355354,145.1269263"], + "field_latitude_value": ["-37.87355354"], + "field_longitude": ["145.1269263"], + "field_longitude_value": ["145.1269263"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["15-4963"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["35 Sherwood Rd"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28772], + "status": [true], + "title": ["Mount Waverley Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["9a49fc30-0227-481d-b54a-d6d54304d62e"] + }, + "sort": ["Mount Waverley Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20613:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-waverley-north-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the existing turf oval with a synthetic surface. This work is supported by our Minor Capital Works Fund, a program for small building projects that make a big difference in our schools.", + "We built\u00a0a covered accessible play\u00a0space\u00a0and outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $1.45 million from the Minor Capital Works Fund.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Waverley North Primary School" + ], + "field_latitude": ["-37.868017", "-37.86762"], + "field_latitude_longitude_value": ["-37.868017,145.141352"], + "field_latitude_value": ["-37.868017"], + "field_longitude": ["145.141352", "145.14167"], + "field_longitude_value": ["145.141352"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["D1-01-5430", "01-5430"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q4 2019"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Marcus Av"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20613], + "status": [true], + "title": ["Mount Waverley North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c76e2a0-b240-40d2-9f0a-7536c8a892bd"] + }, + "sort": ["Mount Waverley North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20192:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-waverley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will be improving learning spaces at this school, with upgrades to Block B and the North Building.", + "We built an inclusive playground with new play equipment and rubber soft fall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $5.86 million", + "In Round 6 of the Inclusive Schools Fund, this project received $122,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Waverley Primary School." + ], + "field_latitude": ["-37.8815573"], + "field_latitude_longitude_value": ["-37.8815573,145.1227755"], + "field_latitude_value": ["-37.8815573"], + "field_longitude": ["145.1227755"], + "field_longitude_value": ["145.1227755"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["D1-01-3432", "01-3432"], + "field_project_title": [ + "Upgrade and Modernisation - Block B and the North Building", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q2 2026", "Q4 2022"], + "field_start_date": ["Q2 2023", "Q2 2021"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["37-45 Park Lane"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20192], + "status": [true], + "title": ["Mount Waverley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ae058c75-1234-4c06-8940-e93dfdba76c6"] + }, + "sort": ["Mount Waverley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20827:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mount-waverley-secondary-college"], + "changed": ["2023-12-05T10:49:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. As part of the works, we built a STEAM (science, technology, engineering, arts and maths) centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $795,000 in planning funding. In the 2020\u201321 State Budget, the school received $7.157 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Mount Waverley Secondary College." + ], + "field_latitude": ["-37.868538"], + "field_latitude_longitude_value": ["-37.868538,145.132446"], + "field_latitude_value": ["-37.868538"], + "field_longitude": ["145.132446"], + "field_longitude_value": ["145.132446"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["01-8105"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["9 Lechte Rd"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20827], + "status": [true], + "title": ["Mount Waverley Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6ce77505-d7e7-4cfe-838b-2ee15a681403"] + }, + "sort": ["Mount Waverley Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24587:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mountain-view-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Alpine Shire Council with their plans are to upgrade Mountain View Children's Centre. An upgraded centre could offer childcare to between 140 and 160 children daily as well as an additional 15 to 35 funded kindergarten places for local 3 and 4-year-olds. These improvements will help children get 2 years of high-quality funded kindergarten and meet growing demand for local kindergarten places. This planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $149,720 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of Mountain View Children's Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-5702"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24587], + "status": [true], + "title": ["Mountain View Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["103cac27-5004-49eb-a934-09c48c5da5e2"] + }, + "sort": ["Mountain View Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21375:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/movelle-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Movelle Primary School. This 2-room centre provides 66 kindergarten places and opens into an outdoor learning and play space. This kindergarten was built using\u00a0modular\u00a0construction. Constructing the modules offsite minimises disruptions to the community and kindergarten, and gives children faster access to high-quality learning environments. Having the kindergarten and school together may help local children make a smoother transition into primary school and can also make drop-off time simpler for some families. For information on kindergarten enrolments, please contact\u00a0Brimbank City\u00a0Council\u00a0by emailing\u00a0kindergarten@brimbank.vic.gov.au, or phone\u00a0(03) 9249 4000." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten funding, delivered over four years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Movelle Kindergarten." + ], + "field_latitude": ["-37.737859"], + "field_latitude_longitude_value": ["-37.737859,144.775756"], + "field_latitude_value": ["-37.737859"], + "field_longitude": ["144.775756"], + "field_longitude_value": ["144.775756"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["15-MPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["45 Gum Rd"], + "field_suburb": ["Kings Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21375], + "status": [true], + "title": ["Movelle Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["31eb943c-9b81-4eba-aa95-d38460fc6a30"] + }, + "sort": ["Movelle Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21377:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mt-atkinson-childrens-and-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Melton City Council to build an integrated children's centre which offers community services and a kindergarten. The kindergarten provides an additional 99 kindergarten places to the community, improves the overall quality of the learning environment, and helps local children access two years of high-quality funded kindergarten. Please contact Melton City Council about enrolments. You can contact the Kindergarten Registration Team on 9747 7284 or at kindergartens@melton.vic.gov.au. For further information, you can also visit the Melton City Council website." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Grants Capacity Building stream, the children's centre received $2,000,000" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mt Atkinson Children's and Community Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-MtACC"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Integrated Children's Centre" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_suburb": ["Mount Atkinson"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21377], + "status": [true], + "title": ["Mt Atkinson Children's and Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["748440d9-bdf4-46d1-af5f-8968f06b99a1"] + }, + "sort": ["Mt Atkinson Children's and Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25472:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mt-clear-community-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:57:43+10:00"], + "field_about_project_processed": [ + "We are upgrading the indoor and outdoor areas to make them more accessible to children, staff and carers of all abilities. Inside, we're widening 2 doorways and leveling the floorspaces. Outside, we'll replace steps from the undercover area with 2 access ramps. We\u2019ll renovate the sandpit with a wheelchair-friendly \u201cbeach entry\u201d and add a shade structure so more children can play and access the space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $118,600 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mt Clear Kindergarten" + ], + "field_latitude": ["-37.60738271"], + "field_latitude_longitude_value": ["-37.60738271,143.8682424"], + "field_latitude_value": ["-37.60738271"], + "field_longitude": ["143.8682424"], + "field_longitude_value": ["143.8682424"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["15-MTCCK"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Dallas Ave"], + "field_suburb": ["Mount Clear"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25472], + "status": [true], + "title": ["Mt Clear Community Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["b43f9240-3508-4d02-95c6-a1262a8a6b54"] + }, + "sort": ["Mt Clear Community Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21174:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mt-hira-college"], + "changed": ["2023-10-31T10:47:56+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school build a VCE Centre Stage 2 building.", + "We supported the school to\u00a0build a 2-storey VCE and science building which includes\u00a02 science learning areas, associated preparation and administration areas and 3 general learning areas on the ground floor, with the upper level to be fitted out at a later date.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1.65 million.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools $1,445,647 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mt Hira College." + ], + "field_latitude": ["-38.01377"], + "field_latitude_longitude_value": ["-38.01377,145.17639"], + "field_latitude_value": ["-38.01377"], + "field_longitude": ["145.17639"], + "field_longitude_value": ["145.17639"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["d1-03-1990", "03-1990"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q1 2025", "Q3 2018"], + "field_start_date": ["Q4 2022", "Q3 2017"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["185 Perry Rd"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21174], + "status": [true], + "title": ["Mt Hira College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["db46a3cb-ed55-43d8-9449-4e5d84bc2e13"] + }, + "sort": ["Mt Hira College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21445:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mt-hira-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This new kindergarten will enable the Mt Hira community to access a high quality learning environment, delivering three and four year old kindergarten. The new centre will also provide long and occasional day care." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018 - 2019 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mt Hira Early Learning Centre" + ], + "field_latitude": ["-38.01195"], + "field_latitude_longitude_value": ["-38.01195,145.17776"], + "field_latitude_value": ["-38.01195"], + "field_longitude": ["145.17776"], + "field_longitude_value": ["145.17776"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3173"], + "field_project_code": ["ELC-MHELC"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["396 Greens Rd"], + "field_suburb": ["Keysborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21445], + "status": [true], + "title": ["Mt Hira Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["854a43af-7222-4c70-aed7-ceb16f5d35aa"] + }, + "sort": ["Mt Hira Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21222:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mt-piper-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are adding another kindergarten room to the centre. This will allow the centre to offer 33 additional places as part of the roll-out of funded kindergarten for 3-year-olds, giving more local children 2 years of high-quality education.", + "Mitchell Shire Council upgraded Mt Piper Kindergarten (now Mt Piper Broadford Family and Children\u2019s Centre) to include two new multipurpose consulting rooms, a waiting area, shared group space, kitchenette facilities, and a centre entrance to the kinder rooms. The additional spaces will enable group sessions to be more conducted, and will provide a more direct and suitable entrance to the kindergarten rooms.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Building Blocks Capacity Grant, $1,763,000 was allocated to this project.", + "In 2015\u201316, $350,000 was allocated to the kindergarten." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mt Piper Kindergarten" + ], + "field_latitude": ["-37.20343214", "-37.20369"], + "field_latitude_longitude_value": ["-37.20343214,145.0541156"], + "field_latitude_value": ["-37.20343214"], + "field_longitude": ["145.0541156", "145.05455"], + "field_longitude_value": ["145.0541156"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3658"], + "field_project_code": ["D1-15-187", "15-187"], + "field_project_title": [ + "Building Blocks Capacity Grant - Expansion", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024", "Q4 2017"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["150 High St"], + "field_suburb": ["Broadford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21222], + "status": [true], + "title": ["Mt Piper Broadford Family and Children\u2019s Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d0021f3b-31fe-4083-a9d2-a726cbefe83a"] + }, + "sort": ["Mt Piper Broadford Family and Children’s Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20082:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mulgrave-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We\u00a0built\u00a0a new competition grade gymnasium including main gymnasium space, stage and classroom area, kiosk, amenities, staff work space and associated storage.", + "We built an outdoor space that includes a sand pit, muscial panel, water feature and a timber bridge. The new\u00a0play space is\u00a0also\u00a0available to the local community outside school hours." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2018\u201319 State Budget $3.8 million was allocated to the school.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Planning", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mulgrave Primary School." + ], + "field_latitude": ["-37.932209"], + "field_latitude_longitude_value": ["-37.932209,145.197617"], + "field_latitude_value": ["-37.932209"], + "field_longitude": ["145.197617"], + "field_longitude_value": ["145.197617"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3170"], + "field_project_code": ["D2-01-2172", "01-2172", "D1-01-2172"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q2 2020", + "Q2 2020" + ], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["Gladeswood Dr"], + "field_suburb": ["Mulgrave"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20082], + "status": [true], + "title": ["Mulgrave Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3c39206d-d0a2-4fa4-abe0-0872c0c7a161"] + }, + "sort": ["Mulgrave Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20899:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mullauna-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We are continuing to upgrade the school. Our latest works will modernise Block F. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We helped the school upgrade the administration building.", + "We\u00a0created\u00a0a more integrated campus, with better\u00a0teaching spaces, focusing on effective and flexible learning, and improved street frontage on Mitcham Road.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2021\u201322 State Budget, the school received $5.23 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $54,120.", + "In the 2015\u201316 State Budget, $2.2 million was allocated to the school. In the 2014\u201315 State Budget, $1.47 million was allocated to the school." + ], + "field_funding_type_name": [ + "Planning", + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mullauna Secondary College" + ], + "field_latitude": ["-37.808014", "-37.808014", "-37.80795"], + "field_latitude_longitude_value": ["-37.808014,145.1875839"], + "field_latitude_value": ["-37.808014"], + "field_longitude": ["145.1875839", "145.1875839", "145.18769"], + "field_longitude_value": ["145.1875839"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3132"], + "field_project_code": [ + "D3-01-8744", + "D2-01-8744", + "D1-01-8744", + "01-8744" + ], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation - Block F", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": [ + "Subject to future funding", + "Q2 2024", + "Q3 2021", + "Q4 2017" + ], + "field_start_date": ["Q2 2023", "Q2 2021", "Q4 2020"], + "field_status_name": [ + "Planning", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["456 Springfield Rd"], + "field_suburb": ["Mitcham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20899], + "status": [true], + "title": ["Mullauna Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["62f50bff-e181-4ccf-8ed2-577514b752a5"] + }, + "sort": ["Mullauna Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20389:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/mullum-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced older buildings containing asbestos with new permanent modular buildings. The new buildings feature: general purpose classrooms, a resource hub, student and accessible toilet facilities, principal's office, general offices, storage and first aid rooms, staff workspace, and a science and art room.", + "We built\u00a0a new performing arts centre and undercover sports court\u200b. This is part of the\u00a0broader\u00a0Maroondah Education Plan, which also\u00a0includes redeveloping\u00a0Ringwood Secondary College, providing\u00a0a stadium for Norwood Secondary College, and consolidating\u00a0Melba College's two campuses onto one site.\u00a0\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $5.174 million through the Permanent Modular School Buildings Program.", + "In the 2015\u201316 State Budget, $937,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Mullum Primary School" + ], + "field_latitude": ["-37.79889"], + "field_latitude_longitude_value": ["-37.79889,145.23956"], + "field_latitude_value": ["-37.79889"], + "field_longitude": ["145.23956"], + "field_longitude_value": ["145.23956"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["D1-01-4886", "01-4886"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2021", "Q2 2018"], + "field_start_date": ["Q2 2019", "Q3 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["18 Panfield Avenue"], + "field_suburb": ["Ringwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20389], + "status": [true], + "title": ["Mullum Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ed378ddb-15ba-4f11-a707-7a90ba988723"] + }, + "sort": ["Mullum Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22302:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/murchison-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:35+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $196,400" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Murchison Primary School" + ], + "field_latitude": ["-36.61718"], + "field_latitude_longitude_value": ["-36.61718,145.214287"], + "field_latitude_value": ["-36.61718"], + "field_longitude": ["145.214287"], + "field_longitude_value": ["145.214287"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3610"], + "field_project_code": ["01-1126"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["8 - 10 Impey Street"], + "field_suburb": ["Murchison"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22302], + "status": [true], + "title": ["Murchison Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["e2671427-3137-4cfe-a378-c5122424d6c7"] + }, + "sort": ["Murchison Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33037:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/murrayville-community-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Murrayville Community College." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $4.68 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Murrayville Community College" + ], + "field_latitude": ["-35.26557452"], + "field_latitude_longitude_value": ["-35.26557452,141.1773365"], + "field_latitude_value": ["-35.26557452"], + "field_longitude": ["141.1773365"], + "field_longitude_value": ["141.1773365"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3512"], + "field_project_code": ["01-5433"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["20 Francis Street"], + "field_suburb": ["Murrayville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33037], + "status": [true], + "title": ["Murrayville Community College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a66acac2-3484-442a-9013-e8aa5c16fe7c"] + }, + "sort": ["Murrayville Community College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34235:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/murrindindi-shire-council"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Murrindindi Shire Council plan to expand or upgrade kindergartens in Alexandra and Yea. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $148,586 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Murrindindi Shire Council" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-MDSC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_suburb": ["Alexandra and Yea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34235], + "status": [true], + "title": ["Murrindindi Shire Council"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a0101c91-a525-443a-b5e5-5fd690fc71ad"] + }, + "sort": ["Murrindindi Shire Council"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23312:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/murrumbeena-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are relocating this kindergarten to St Patrick\u2019s Primary School by transforming a school art room into a new early learning space. This may make drop-off time simpler for parents, and the transition from kindergarten to school smoother for some children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $400,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Murrumbeena Kindergarten" + ], + "field_latitude": ["-37.90190593"], + "field_latitude_longitude_value": ["-37.90190593,145.0648325"], + "field_latitude_value": ["-37.90190593"], + "field_longitude": ["145.0648325"], + "field_longitude_value": ["145.0648325"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3163"], + "field_project_code": ["15-MURUM"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Dalny Road"], + "field_suburb": ["Murrumbeena"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23312], + "status": [true], + "title": ["Murrumbeena Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["54a656b8-7d67-4188-940a-0112400a00d7"] + }, + "sort": ["Murrumbeena Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20193:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/murrumbeena-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the main school building and classrooms to improve facilities for students and staff. Upgrades included\u00a0structural repairs to Block A, as well as\u00a0refurbishing\u00a0administrative areas, classrooms, staff facilities, toilets and other areas in\u00a0the north and south towers.\u00a0", + "We refurbished\u00a0the Block A boys\u2019 toilets, the\u00a0Block A window frames and sashes, and repaired\u00a0stormwater drainage. We also landscaped the\u00a0front of the school and upgraded\u00a0the school entrance.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.1 million.", + "In the 2016\u201317 State Budget, $290,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Murrumbeena Primary School." + ], + "field_latitude": ["-37.88772", "-37.88772"], + "field_latitude_longitude_value": ["-37.88772,145.06992"], + "field_latitude_value": ["-37.88772"], + "field_longitude": ["145.06992", "145.06992"], + "field_longitude_value": ["145.06992"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3163"], + "field_project_code": ["D1-01-3449", "01-3449"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q3 2021", "Q1 2017"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Hobart Rd"], + "field_suburb": ["Murrumbeena"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20193], + "status": [true], + "title": ["Murrumbeena Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ff5cdee8-7e55-4670-9fac-04b51bae92da"] + }, + "sort": ["Murrumbeena Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/30326:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/murtoa-college-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-02-13T14:25:18+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new early learning and childcare centre at Murtoa College in the Shire of Yarriambiack.The Victorian Government-owned centre will provide long day care, Three-Year-Old Kindergarten and\u00a0Pre-Prep\u00a0programs, with space for up to 57 local children in the centre each day.It will also include a Maternal and Child Health consulting room for local families and a carpark.Building the centre at the college will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.\u00a0Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 Early Learning Centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the improvements at Murtoa College Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-36.623495"], + "field_latitude_longitude_value": ["-36.623495,142.475745"], + "field_latitude_value": ["-36.623495"], + "field_longitude": ["142.475745"], + "field_longitude_value": ["142.475745"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3390"], + "field_project_code": ["01-1549-MC"], + "field_project_title": [ + "New Early Learning Centre - one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Design"], + "field_street_address": ["1 Webb Street"], + "field_suburb": ["Murtoa"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [30326], + "status": [true], + "title": [ + "Murtoa College Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["3ce76715-a743-45c8-95e4-8e7c856f52ae"] + }, + "sort": [ + "Murtoa College Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20124:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/myrrhee-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to complete external works to the school entrance." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $53,120" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Myrrhee Primary School" + ], + "field_latitude": ["-36.7383042"], + "field_latitude_longitude_value": ["-36.7383042,146.3185427"], + "field_latitude_value": ["-36.7383042"], + "field_longitude": ["146.3185427"], + "field_longitude_value": ["146.3185427"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3732"], + "field_project_code": ["01-2677"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1673 Benalla-whitfield Road"], + "field_suburb": ["Myrrhee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20124], + "status": [true], + "title": ["Myrrhee Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["11d39faf-ce38-4f17-a6cc-adb097a32825"] + }, + "sort": ["Myrrhee Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20953:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/myrtleford-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school, including building a new competition-grade gym." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $9.43 million.\u00a0In 2022 the school was allocated a further $1,428,040." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Myrtleford P-12 College." + ], + "field_latitude": ["-36.560863494873047"], + "field_latitude_longitude_value": [ + "-36.560863494873047,146.72389221191406" + ], + "field_latitude_value": ["-36.560863494873047"], + "field_longitude": ["146.72389221191406"], + "field_longitude_value": ["146.72389221191406"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3737"], + "field_project_code": ["01-8873"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Prince St"], + "field_suburb": ["Myrtleford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20953], + "status": [true], + "title": ["Myrtleford P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["531b010b-8597-47be-9ea6-1eea01bd48af"] + }, + "sort": ["Myrtleford P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28339:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nagambie-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-02T14:59:33+11:00"], + "field_about_project_processed": [ + "We are building a 2-room modular kindergarten. This will create more kindergarten places for local children and help meet future demand for 3-year-old kinder and Pre-Prep (4-year-old kinder)." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 3 of the 2022\u201323 Building Blocks Capacity Grant stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nagambie Early Learning Centre." + ], + "field_latitude": ["-36.78169102"], + "field_latitude_longitude_value": ["-36.78169102,145.1540729"], + "field_latitude_value": ["-36.78169102"], + "field_longitude": ["145.1540729"], + "field_longitude_value": ["145.1540729"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3608"], + "field_project_code": ["15-EL-NELC"], + "field_project_title": [ + "Building Blocks Capacity Grant- Modular Kinder" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["367 High St"], + "field_suburb": ["Nagambie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28339], + "status": [true], + "title": ["Nagambie Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["fb4b4955-8ed5-45be-8b80-fe346a4e1df0"] + }, + "sort": ["Nagambie Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23329:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/nagambie-kindergarten-and-early-childhood-service" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We transformed the playground into a more accessible, natural space, complete with a stage and bridge structure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $299,809 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nagambie Kindergarten and Early Childhood Service" + ], + "field_latitude": ["-36.78226567"], + "field_latitude_longitude_value": ["-36.78226567,145.157457"], + "field_latitude_value": ["-36.78226567"], + "field_longitude": ["145.157457"], + "field_longitude_value": ["145.157457"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3608"], + "field_project_code": ["15-NKEC"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["16 Vale St"], + "field_suburb": ["Nagambie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23329], + "status": [true], + "title": ["Nagambie Kindergarten and Early Childhood Service"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0e5f19a7-dc84-41cb-a973-c2c6ac76c3f6"] + }, + "sort": ["Nagambie Kindergarten and Early Childhood Service"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19944:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nagambie-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school. The project will deliver a new library, consulting space, outdoor learning area and landscape works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.998 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Nagambie Primary School" + ], + "field_latitude": ["-36.791599273681641"], + "field_latitude_longitude_value": [ + "-36.791599273681641,145.20632934570312" + ], + "field_latitude_value": ["-36.791599273681641"], + "field_longitude": ["145.20632934570312"], + "field_longitude_value": ["145.20632934570312"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3608"], + "field_project_code": ["01-1104"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["31 Goulburn Street"], + "field_suburb": ["Nagambie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19944], + "status": [true], + "title": ["Nagambie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bbdb2b9d-3f33-4ef5-9f87-f9f0ff4598e1"] + }, + "sort": ["Nagambie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21021:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nagle-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to complete the Salesian Technology Centre and new physical education facilties. The project included demolishing seven relocatable buildings\u00a0and building\u00a0a new specialist learning centre for technology/textiles and food technology.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,000,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nagle College" + ], + "field_latitude": ["-37.841160"], + "field_latitude_longitude_value": ["-37.841160,147.585739"], + "field_latitude_value": ["-37.841160"], + "field_longitude": ["147.585739"], + "field_longitude_value": ["147.585739"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["02-1589"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["20 Hope Avenue"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21021], + "status": [true], + "title": ["Nagle College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b402ac5a-01d0-40f8-a6e8-9c09125ade2f"] + }, + "sort": ["Nagle College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36774:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/napoleons-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $114,955" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Napoleons Primary School" + ], + "field_latitude": ["-37.67862938"], + "field_latitude_longitude_value": ["-37.67862938,143.826459"], + "field_latitude_value": ["-37.67862938"], + "field_longitude": ["143.826459"], + "field_longitude_value": ["143.826459"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3352"], + "field_project_code": ["01-1072"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["4721 Colac-Ballarat Road"], + "field_suburb": ["Napoleons"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36774], + "status": [true], + "title": ["Napoleons Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["76d1eed5-968b-4dbb-a20c-6c873899bf60"] + }, + "sort": ["Napoleons Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31131:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/napoleons-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-10T16:46:53+11:00"], + "field_about_project_processed": [ + "We\u2019re building a kindergarten at Napoleons Primary School.It will have 2 classrooms as well as outdoor learning areas and play spaces. The centre will provide an extra 66 licensed kindergarten places in the local area.Having the kindergarten and school together may help children make a smoother transition into primary school. It can also make drop-off time simpler for some families.EnrolmentEureka Community Kindergarten Association (ECKA) has been appointed as the provider for Napoleons Primary School Kindergarten (interim name).To enrol, you can contact ECKA through their website or on (03) 5339 5055.If you have already registered your details with Golden Plains Shire Council, those details will now be passed on to ECKA for processing.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $371 million committed in the 2019-20 State Budget to support the rollout of Three-Year-Old-Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Napoleons Primary School Kindergarten (interim name)." + ], + "field_latitude": ["-37.67865659"], + "field_latitude_longitude_value": ["-37.67865659,143.8259389"], + "field_latitude_value": ["-37.67865659"], + "field_longitude": ["143.8259389"], + "field_longitude_value": ["143.8259389"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3352"], + "field_project_code": ["01-1072-ELC"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["4721 Colac-Ballarat Road"], + "field_suburb": ["Napoleons"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31131], + "status": [true], + "title": ["Napoleons Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["610ae0ad-3e9d-49b5-8195-c80ac2fb9f78"] + }, + "sort": ["Napoleons Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20473:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/naranga-special-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. These will replace relocatable buildings. We will also upgrade classrooms in the senior block.", + "We delivered a new architect-designed modular building to Naranga Special School to replace the Junior Block.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $7.612 million.", + "In Round 3 of the program, the school was allocated $3,228,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Naranga Special School" + ], + "field_latitude": ["-38.147158", "-38.14682"], + "field_latitude_longitude_value": ["-38.147158,145.163005"], + "field_latitude_value": ["-38.147158"], + "field_longitude": ["145.163005", "145.16254"], + "field_longitude_value": ["145.163005"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["D1-01-5080", "01-5080"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2025", "Q2 2019"], + "field_start_date": ["Q2 2022", "Q2 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["14 Naranga Crescent"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20473], + "status": [true], + "title": ["Naranga Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["78447136-30da-430c-95d2-f59bdc7acd5b"] + }, + "sort": ["Naranga Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23303:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/narre-warren-north-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are transforming this kindergarten into a multi-service, early years hub. The expanded centre will offer 66 kindergarten places for local 3 and 4-year-olds and include 2 maternal and child health consulting rooms, a shared waiting room and new bathroom amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $1,748,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Narre Warren North Kindergarten" + ], + "field_latitude": ["-37.97937037"], + "field_latitude_longitude_value": ["-37.97937037,145.3174957"], + "field_latitude_value": ["-37.97937037"], + "field_longitude": ["145.3174957"], + "field_longitude_value": ["145.3174957"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3804"], + "field_project_code": ["15-5283"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["8 Winters Ln"], + "field_suburb": ["Narre Warren North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23303], + "status": [true], + "title": ["Narre Warren North Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e470b718-1ab4-4dfc-aadc-b9d8e444f45d"] + }, + "sort": ["Narre Warren North Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20050:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/narre-warren-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0replaced tired old classrooms and office space with a new permanent modular building and the state-of-the-art classrooms and facilities students and staff need to achieve their best.", + "We built a sensory garden to extend the in-class mindfulness space. This has a multi-textured pathway, a herb garden, a water play space. The garden also has a number of sensory stations providing tactile stimulation, aural stimulation and fine motor activities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $4.513 million.", + "In 2018, $59,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Narre Warren North Primary School" + ], + "field_latitude": ["-37.978512"], + "field_latitude_longitude_value": ["-37.978512,145.316086"], + "field_latitude_value": ["-37.978512"], + "field_longitude": ["145.316086"], + "field_longitude_value": ["145.316086"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3804"], + "field_project_code": ["D1-01-1901", "01-1901"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2021", "Q3 2019"], + "field_start_date": ["Q2 2019", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["15-31 A'beckett Rd"], + "field_suburb": ["Narre Warren North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20050], + "status": [true], + "title": ["Narre Warren North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b398a820-445c-4c64-af9a-b5e7d4a3ef9b"] + }, + "sort": ["Narre Warren North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20937:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/narre-warren-south-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive outdoor learning space. The space has seating and sensory equipment.\u00a0", + "We\u00a0built a new performing arts centre at the college. The latest\u00a0funding, from\u00a0the 2018\u201319 State Budget, allowed us to add\u00a0an orchestra pit to the project.\u200b \u200b\u200b", + "\u200bThis\u00a0project\u00a0delivered\u00a0a synthetic soccer pitch with floodlighting, training facilities and pavilion, providing\u00a0year-round space for physical education programs, and after hours training for the school and community.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $146,200.", + "In the 2017\u201318 State Budget, $5,020,000 was allocated to the school. An additional $400,000 has been provided in the 2018\u201319 State Budget.", + "Through the Shared Facilities Fund, $1.5 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Narre Warren South P-12 College." + ], + "field_latitude": ["-38.049734", "-38.047520"], + "field_latitude_longitude_value": ["-38.049734,145.285075"], + "field_latitude_value": ["-38.049734"], + "field_longitude": ["145.285075", "145.287600"], + "field_longitude_value": ["145.285075"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["D2-01-8839", "01-8839", "D1-01-8839"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation", + "Shared Facilities Fund" + ], + "field_q_complete": ["Q4 2023", "Q1 2020", "Q3 2019"], + "field_start_date": ["Q4 2021", "Q3 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Amberly Park Dr"], + "field_suburb": ["Narre Warren South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20937], + "status": [true], + "title": ["Narre Warren South P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cd855146-8e22-4f9e-b82a-cb3129786f83"] + }, + "sort": ["Narre Warren South P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20068:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nathalia-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground with a range of sensory areas that allows children of all ages and abilities to play and interact with one another.", + "We helped the school construct a multi-purpose outdoor area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $61,453." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Nathalia Primary School" + ], + "field_latitude": ["-36.05821", "-36.057378"], + "field_latitude_longitude_value": ["-36.05821,145.20606"], + "field_latitude_value": ["-36.05821"], + "field_longitude": ["145.20606", "145.2060654"], + "field_longitude_value": ["145.20606"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3638"], + "field_project_code": ["01-2060", "D1-01-2060"], + "field_project_title": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2021", "Q3 2021"], + "field_start_date": ["Q4 2019", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["5 Bromley St"], + "field_suburb": ["Nathalia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20068], + "status": [true], + "title": ["Nathalia Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7e0713ce-af54-4a9c-9c6f-420a61cdf0cc"] + }, + "sort": ["Nathalia Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20831:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nathalia-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced\u00a0an older building containing asbestos with a new\u00a0permanent modular building. The building includes adminstration areas, a food tech room and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.862 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Nathalia Secondary College" + ], + "field_latitude": ["-36.059901"], + "field_latitude_longitude_value": ["-36.059901,145.208438"], + "field_latitude_value": ["-36.059901"], + "field_longitude": ["145.208438"], + "field_longitude_value": ["145.208438"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3638"], + "field_project_code": ["01-8140"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["41 Chapel Street"], + "field_suburb": ["Nathalia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20831], + "status": [true], + "title": ["Nathalia Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["695f26fb-1c2f-4afa-9220-f6f357e237e1"] + }, + "sort": ["Nathalia Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20009:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/natimuk-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most.", + "\u200b\u200b\u200b\u200bWe resurfaced the basketball courts and built a new shade shelter at the school.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.09 million, with a further $750,000 in 2023.", + "In the 2016\u201317 State Budget, $90,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Natimuk Primary School." + ], + "field_latitude": ["-36.740280151367188", "-36.74123"], + "field_latitude_longitude_value": [ + "-36.740280151367188,141.94515991210937" + ], + "field_latitude_value": ["-36.740280151367188"], + "field_longitude": ["141.94515991210937", "141.94921"], + "field_longitude_value": ["141.94515991210937"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3409"], + "field_project_code": ["D1-01-1548", "01-1548"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["38 Old Noradjuha Rd"], + "field_suburb": ["Natimuk"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20009], + "status": [true], + "title": ["Natimuk Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["116b7a00-f3f1-42e7-a9e9-67dbc81d5daf"] + }, + "sort": ["Natimuk Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21063:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nazareth-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school in installing an accessible lift in the auditorium. We also assisted in refurbishing a building. The building now has a science, technology, engineering, and mathematics (STEM) area and a media suite. It also has a hospitality kitchen that can be used for Vocational Education Training.", + "\u200bWe supported the school to undertake Stage 2 works at the school's Applied Learning Centre, including refurbishment of the Victorian Certificate of Applied Learning (VCAL)\u200b Centre, food technology rooms, and toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1 million.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1 million has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nazareth College." + ], + "field_latitude": ["-37.941356999999996", "-37.94136"], + "field_latitude_longitude_value": ["-37.941356999999996,145.198023"], + "field_latitude_value": ["-37.941356999999996"], + "field_longitude": ["145.198023", "145.19802"], + "field_longitude_value": ["145.198023"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["D1-02-1899", "02-1899"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q3 2023", "Q1 2017"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Manning Dr"], + "field_suburb": ["Noble Park North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21063], + "status": [true], + "title": ["Nazareth College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["53882c4f-3643-44e8-92fd-2497b87d7525"] + }, + "sort": ["Nazareth College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21050:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nazareth-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school upgrade and expand its learning and administration building. Works include creating four general learning areas, collaboration spaces, student and staff toilets, and administration areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nazareth School" + ], + "field_latitude": ["-38.2030391"], + "field_latitude_longitude_value": ["-38.2030391,144.3296208"], + "field_latitude_value": ["-38.2030391"], + "field_longitude": ["144.3296208"], + "field_longitude_value": ["144.3296208"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["02-1778"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["14-16 Griffith Street"], + "field_suburb": ["Grovedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21050], + "status": [true], + "title": ["Nazareth School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9b7b7581-f1a2-4f28-afcc-3460b482d036"] + }, + "sort": ["Nazareth School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20700:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nearnung-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in the City of Wyndham. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Chris Simmons was appointed as the first principal of the school. The school was previously known by its interim name, Tarneit Missen House Primary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 to 8 July 2022. Nearnung (pronounced nee-a-noong) is a Bunurong word meaning black cockatoo. Warringa Park School specialist campus is next door. It has places for primary-aged students with intellectual disabilities. Facilities Facilities include the following: an administration building with a library, staff offices and amenities 2 learning neighbourhood buildings. These include general purpose classrooms, and flexible and collaborative teaching spaces a specialist learning neighbourhood building for subjects such as food technology and science a community hub with a competition-grade gymnasium, canteen, music and drama space 2 outdoor hardcourts a sports field. Kindergarten We partnered with Wyndham City Council to build Bembit Bag-rook Community Centre. The centre provides kindergarten, maternal and child health care and other family services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Nearnung Primary School." + ], + "field_latitude": ["-37.82542"], + "field_latitude_longitude_value": ["-37.82542,144.685206"], + "field_latitude_value": ["-37.82542"], + "field_longitude": ["144.685206"], + "field_longitude_value": ["144.685206"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/NearnungPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-5597"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["85 Polly Pde"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20700], + "status": [true], + "title": ["Nearnung Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6e8648ac-58e5-4a68-9f05-bc6173ff47d6"] + }, + "sort": ["Nearnung Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20832:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/neerim-district-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced an older building containing asbestos with a new permanent modular building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $4.09 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Neerim District Secondary College" + ], + "field_latitude": ["-38.016936"], + "field_latitude_longitude_value": ["-38.016936,145.95668"], + "field_latitude_value": ["-38.016936"], + "field_longitude": ["145.95668"], + "field_longitude_value": ["145.95668"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3831"], + "field_project_code": ["01-8145"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Neerim East Road"], + "field_suburb": ["Neerim South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20832], + "status": [true], + "title": ["Neerim District Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["56bcf2aa-697a-4ea8-bc9a-69538279b99a"] + }, + "sort": ["Neerim District Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22303:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/neerim-south-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:38+11:00"], + "field_about_project_processed": [ + "We are building inclusive outdoor learning spaces including a shade structure and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Neerim South Primary School" + ], + "field_latitude": ["-38.01531"], + "field_latitude_longitude_value": ["-38.01531,145.955358"], + "field_latitude_value": ["-38.01531"], + "field_longitude": ["145.955358"], + "field_longitude_value": ["145.955358"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3831"], + "field_project_code": ["01-2432"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["180 Main Neerim Road"], + "field_suburb": ["Neerim South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22303], + "status": [true], + "title": ["Neerim South Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["d68377f6-f31f-4f53-9d01-2a22bcd05723"] + }, + "sort": ["Neerim South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20348:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nelson-park-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are continuing to upgrade and modernise this school, delivering the next stage of the school's master plan.", + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will deliver the final stage of the masterplan for the Illinois Avenue Campus.", + "We built an inclusive indoor learning space. It has new carpet and sensory equipment.\u00a0", + "\u200b\u200bWe\u00a0upgraded\u00a0Nelson Park\u00a0Primary School, including\u00a0building new learning and play areas. We created\u00a0a Year 3\u20136 learning community hub in Building B, as well as updated\u00a0change areas and the corridor adjacent to the gymnasium.\u00a0 We\u00a0also modernised the canteen and home craft area, creating private office spaces for administration staff and undertaking minor works to provide better\u00a0localised and accessible storage, particularly for secure records.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In the 2022\u201323 State Budget, this school received at least $6.404 million.", + "In Round 7 of the Inclusive Schools Fund, the project received $101,601", + "In the 2016\u201317 State Budget, $2.8 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Nelson Park School" + ], + "field_latitude": [ + "-38.1127592", + "-38.114241", + "-38.114241", + "-38.11417" + ], + "field_latitude_longitude_value": ["-38.1127592,144.3420817"], + "field_latitude_value": ["-38.1127592"], + "field_longitude": [ + "144.3420817", + "144.337703", + "144.337703", + "144.33972" + ], + "field_longitude_value": ["144.3420817"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": [ + "D1-01-4768", + "D3-01-4768", + "D2-01-4768", + "01-4768" + ], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q4 2025", "Q4 2023", "Q4 2018"], + "field_start_date": ["Q4 2020", "Q2 2022", "Q4 2021"], + "field_status_name": [ + "Construction", + "Design", + "Complete", + "Complete" + ], + "field_street_address": ["Libau Avenue"], + "field_suburb": ["Bell Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20348], + "status": [true], + "title": ["Nelson Park School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0848b0c7-c104-4e07-9c9c-f0eb54a371bb"] + }, + "sort": ["Nelson Park School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20284:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nepean-special-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. With the funding, we are continuing to upgrade and modernise this school, delivering the next stage of the school's master plan.", + "We\u00a0upgraded the school, including modernising\u00a0classrooms to create flexible learning spaces and a 'home environment' that will help students\u00a0develop\u00a0lifelong independence\u00a0skills. This included upgrading the classroom kitchenettes\u00a0and renovating the toilet amenities and staff kitchen.", + "\u200b\u200b\u200b\u200b\u200bWith thoughtful community consultation, we\u00a0built an inclusive play space boasting a range of accessible and imaginative play opportunities. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $2.84 million.", + "In the 2018\u201319 State Budget $1.3 million was allocated to the school.", + "In 2017\u201318,\u00a0$200,000 was allocated to the school in Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Nepean Special School" + ], + "field_latitude": ["-38.103195190429688", "-38.122552", "-38.12026"], + "field_latitude_longitude_value": [ + "-38.103195190429688,145.1259765625" + ], + "field_latitude_value": ["-38.103195190429688"], + "field_longitude": ["145.1259765625", "145.134494", "145.14212"], + "field_longitude_value": ["145.1259765625"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["D2-01-4290", "D1-01-4290", "01-4290"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2024", "Q2 2020", "Q3 2018"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["33 Klauer St"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20284], + "status": [true], + "title": ["Nepean Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["714058fd-9c26-4f29-874c-d2bc994b2fa4"] + }, + "sort": ["Nepean Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34958:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ness-reserve-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-14T09:26:05+10:00"], + "field_about_project_processed": [ + "We created storage areas for the outdoor deck and the office." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Early Childhood Refurbishment and Minor Works Grant round, $72,298 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ness Reserve Preschool" + ], + "field_latitude": ["-37.67063567"], + "field_latitude_longitude_value": ["-37.67063567,145.1527134"], + "field_latitude_value": ["-37.67063567"], + "field_longitude": ["145.1527134"], + "field_longitude_value": ["145.1527134"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3089"], + "field_project_code": ["15-428"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Ness St"], + "field_suburb": ["Diamond Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34958], + "status": [true], + "title": ["Ness Reserve Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0f2b7b1c-6da6-4d3e-be0e-d489170a6d1e"] + }, + "sort": ["Ness Reserve Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28136:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/new-catholic-primary-school-mount-duneed"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping build a new school including general learning areas, adminsitration buildings and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $4.85 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at New Catholic Primary School (Mount Duneed)." + ], + "field_latitude": ["-38.240714934898584"], + "field_latitude_longitude_value": [ + "-38.240714934898584,144.3298757549528" + ], + "field_latitude_value": ["-38.240714934898584"], + "field_longitude": ["144.3298757549528"], + "field_longitude_value": ["144.3298757549528"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["01-NCPSMD"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["Feehans Rd"], + "field_suburb": ["Mount Duneed"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28136], + "status": [true], + "title": ["New Catholic Primary School (Mount Duneed)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["e9b1138e-4a73-4b2f-96c8-5944451482bc"] + }, + "sort": ["New Catholic Primary School (Mount Duneed)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28137:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/new-catholic-primary-school-rathdowne-estate"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping build a new school including general learning areas, administration buildings and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $4.85 million. Under the 2023\u201324 capital funding program for non-government schools, the school received\u00a0an additional $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at New Catholic Primary School (Rathdowne Estate)." + ], + "field_latitude": ["-37.59873336830039"], + "field_latitude_longitude_value": [ + "-37.59873336830039,144.99356739725644" + ], + "field_latitude_value": ["-37.59873336830039"], + "field_longitude": ["144.99356739725644"], + "field_longitude_value": ["144.99356739725644"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["01-NCPSRE"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["Jardin Rd"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28137], + "status": [true], + "title": ["New Catholic Primary School (Rathdowne Estate)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["3f8a5553-10f5-422b-8592-0f1e3cf64118"] + }, + "sort": ["New Catholic Primary School (Rathdowne Estate)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20313:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/new-gisborne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0New Gisborne Primary School's classrooms, oval and outdoor learning areas. We\u00a0provided\u00a0two new classrooms for the music program, staff planning and student services. We\u00a0also\u00a0upgraded\u00a0existing classrooms to repair leaks in blocks C and\u00a0E and two relocatables. We installed a new carpet in Block A and repaired cracks in the gym walls. We completed\u00a0a new astro-turf oval\u00a0with improved drainage and\u00a0line markings. We\u00a0also redeveloped\u00a0the landscaping on Station Road and Ferrier Road to include disability\u00a0pathways and ramps with wider entries, and\u00a0installed\u00a0new seating and a\u00a0waiting area next to the Foundations playground.", + "We built a new art room with modern facilities, and conducted general maitenance works around the school. A fire at New Gisborne Primary School\u00a0destroyed the art room facilities in 2011. We provided a\u00a0relocatable building soon after so the students could maintain access to art facilities.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.1 million.", + "In the 2015\u201316 State Budget, $772,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at New Gisborne Primary School" + ], + "field_latitude": ["-37.46199", "-37.46199"], + "field_latitude_longitude_value": ["-37.46199,144.59546"], + "field_latitude_value": ["-37.46199"], + "field_longitude": ["144.59546", "144.59546"], + "field_longitude_value": ["144.59546"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "New Art Room for New Gisborne Primary School" + ], + "field_postcode": ["3438"], + "field_project_code": ["D1-01-467", "01-467"], + "field_project_title": [ + "Upgrade and Modernisation - Music Rooms, Oval Upgrade and Outdoor Learning Areas", + "Upgrade and Modernisation - Art Room" + ], + "field_q_complete": ["Q2 2021", "Q1 2018"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["239 Station Road"], + "field_suburb": ["New Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20313], + "status": [true], + "title": ["New Gisborne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7b301614-aaa1-47ed-bba1-f7b1ca0c6c02"] + }, + "sort": ["New Gisborne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20314:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newborough-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have helped build an outdoor inclusive learning space, including new sensory equipment within a landscaped environment.", + "We replaced the guttering and downpipes and partially replaced the roofing and ceiling on Block A and Block B. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $30,000.", + "In the 2020\u201321 State Budget the project received $71,165 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Newborough East Primary School" + ], + "field_latitude": ["-38.1788707"], + "field_latitude_longitude_value": ["-38.1788707,146.2937354"], + "field_latitude_value": ["-38.1788707"], + "field_longitude": ["146.2937354"], + "field_longitude_value": ["146.2937354"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["01-4670", "D1-01-4670"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2022", "Q2 2021"], + "field_start_date": ["Q2 2021", "Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["300 Old Sale Rd"], + "field_suburb": ["Newborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20314], + "status": [true], + "title": ["Newborough East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["02a3c2ba-3956-4412-be2c-35e0c688d0cf"] + }, + "sort": ["Newborough East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20308:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newborough-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded fencing around the whole school to increase student safety and school security.", + "We delivered a new architect-designed modular building to Newborough Primary School to replace Block A.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $276,165", + "In Round 3 of the program, the school was allocated $1,831,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Newborough Primary School" + ], + "field_latitude": ["-38.1886421", "-38.18929"], + "field_latitude_longitude_value": ["-38.1886421,146.2926974"], + "field_latitude_value": ["-38.1886421"], + "field_longitude": ["146.2926974", "146.29298"], + "field_longitude_value": ["146.2926974"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["D1-01-4650", "01-4650"], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2022", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["24 Murray Road"], + "field_suburb": ["Newborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20308], + "status": [true], + "title": ["Newborough Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["911f8dbc-e265-4ad5-9522-45036c99bb72"] + }, + "sort": ["Newborough Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20655:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newbury-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe have completed\u00a0Newbury Primary School\u200b, formerly Craigieburn North West Primary School. It opened for the 2017 school year to\u00a0serve\u00a0rapidly growing residential areas. \u200bThe school will accommodate up to 475 students, and has been designed in partnership with local education leaders and the community. It adds to a range of community facilities in its precinct location, including the Newbury Child and Community Facility and adjacent sports reserve.\u200b\u200b Facilities We built the school with flexible learning areas to\u00a0support contemporary teaching practices. The central Resource/Project centre supports specialist curriculum in STEM and digital technologies. This centre includes: a digital media lab for video production, a student kitchen to support activities around health and diet, and Arts, IT and Science areas. A stand-alone building houses the school's competition grade netball/basketball hall. It also includes music facilities, and a kitchen for OSHC and community use. The hall and hardcourt areas are available for the local community use outside school hours. We landscaped around a central plaza that links with the Newbury Community Facility. Incorporating a dry creek bed in the design filters stormwater. This ensures the school can handle intense rain without flooding on the site. The creek bed feeds into a wetland on the school grounds. This provides environmental learning opportunities. Other areas in the landscaping include: a junior cricket and football playing field, an adventure playground, and a native woodland with a 'camping' area for outdoor learning. The building design incorporates a number of environmental initiatives. Rainwater is collected and reused for toilet flushing and garden irrigation in the kitchen garden\u200b.\u200b \u00a0", + "We helped build\u00a0an accessible playground and sensory garden. The playground\u00a0includes facilities for climbing, sliding and hanging play, as well as a noughts and crosses board and music panels. The sensory garden provides a quiet, calming space with outdoor seating." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $12.2 million was allocated to this project.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["New School", "Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Newbury Primary School" + ], + "field_latitude": ["-37.57074"], + "field_latitude_longitude_value": ["-37.57074,144.91062"], + "field_latitude_value": ["-37.57074"], + "field_longitude": ["144.91062"], + "field_longitude_value": ["144.91062"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-5545", "D1-01-5545"], + "field_project_title": ["New School", "Inclusive Schools Fund"], + "field_q_complete": ["Q1 2017", "Q4 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["202-226 Newbury Blvd"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20655], + "status": [true], + "title": ["Newbury Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ec249313-4fe4-460d-90b7-4b2c18d652a9"] + }, + "sort": ["Newbury Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20620:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newcomb-primary-school"], + "changed": ["2023-10-23T09:53:41+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0and modernised\u00a0Newcomb\u00a0Primary School. We\u00a0built\u00a0new STEM and art classrooms, an administration facility,\u00a0and\u00a0installed\u00a0a\u00a0new relocatable building. We also constructed a new IT server room in an existing building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $320,000. In 2020, the school received $2.88 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Newcomb Primary School" + ], + "field_latitude": ["-38.16469"], + "field_latitude_longitude_value": ["-38.16469,144.39476"], + "field_latitude_value": ["-38.16469"], + "field_longitude": ["144.39476"], + "field_longitude_value": ["144.39476"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["01-5444"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["7 - 25 Richard Street"], + "field_suburb": ["Newcomb"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20620], + "status": [true], + "title": ["Newcomb Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["69e3d401-7a8c-49ff-babe-f7c11e237fef"] + }, + "sort": ["Newcomb Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20833:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newcomb-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We reconfigured music spaces to create better staff work areas, and refurbished the woodworking and bike repair shop to create flexible facilities with new system technology and maker spaces. We transformed underutilised areas into science and technology spaces. Fire had\u00a0caused significant damage to a disused building at this school. This building had been scheduled for demolition before the fire, and we have now safely completed that work.", + "We are rebuilding the\u00a0Victorian Sailing and Water Safety School.\u00a0", + "We helped build\u00a0a sensory garden that allows students to learn in a non-traditional classroom setting. This new area includes a stage and gathering space, timber decking, stepping stones and synthetic turf mounds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $600,000. In 2020, the school received $5.4 million.", + "This school received $3,750,000 from the Shared Facilities Fund.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Newcomb Secondary College" + ], + "field_latitude": ["-38.16848", "-38.1704"], + "field_latitude_longitude_value": ["-38.16848,144.3849"], + "field_latitude_value": ["-38.16848"], + "field_longitude": ["144.3849", "144.3954"], + "field_longitude_value": ["144.3849"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["D2-01-8151", "01-8151", "D1-01-8151"], + "field_project_title": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2021", "TBC", "Q4 2019"], + "field_start_date": ["Q2 2019", "Q4 2018"], + "field_status_name": ["Complete", "Design", "Complete"], + "field_street_address": ["81-85 Bellarine Hwy"], + "field_suburb": ["Newcomb"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20833], + "status": [true], + "title": ["Newcomb Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["58ee0600-2a46-4383-99d9-0c25270e191f"] + }, + "sort": ["Newcomb Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34248:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/newhaven-college-early-years-centre-littlehaven-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Newhaven College plan an early years centre at their school. This will create 88 kindergarten places for local 3 and 4-year-olds and make drop-offs easier for some families. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Newhaven College Early Years Centre - Littlehaven (interim name)" + ], + "field_latitude": ["-38.489695"], + "field_latitude_longitude_value": ["-38.489695,145.265547"], + "field_latitude_value": ["-38.489695"], + "field_longitude": ["145.265547"], + "field_longitude_value": ["145.265547"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3923"], + "field_project_code": ["15-NCELC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["1770 Phillip Island Rd"], + "field_suburb": ["Rhyll"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34248], + "status": [true], + "title": [ + "Newhaven College Early Years Centre - Littlehaven (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["e1b2626e-ef81-4932-a52f-a09a4d61f954"] + }, + "sort": [ + "Newhaven College Early Years Centre - Littlehaven (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22610:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newhaven-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Newhaven\u00a0Primary School. This 2-room centre provides 66 kindergarten places and opens into an outdoor learning and play space. Having the kindergarten and school together may help local children make a smoother transition into primary school and can also make drop-off time simpler for some families. This kindergarten was built using modular construction, which means the bulk of the building works took place off-site.\u00a0Modular kindergartens are an efficient solution for delivering quality buildings in short timeframes. They are constructed in a factory in sections known as \u201cmodules\u201d. These modules are delivered to the kindergarten site, where builders assemble them, connect utilities and complete outdoor areas. Constructing the modules offsite minimises disruptions to the community and kindergarten. The process also reduces the time required for a traditional build and gives children faster access to high-quality learning environments. To enrol, visit\u00a0Bass Coast Shire Council." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 Budget, this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Newhaven Kindergarten." + ], + "field_latitude": ["-38.51297366"], + "field_latitude_longitude_value": ["-38.51297366,145.3572634"], + "field_latitude_value": ["-38.51297366"], + "field_longitude": ["145.3572634"], + "field_longitude_value": ["145.3572634"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3925"], + "field_project_code": ["15-NPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["School Av"], + "field_suburb": ["Newhaven"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22610], + "status": [true], + "title": ["Newhaven Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["67efd0f1-364b-4ee5-b28c-8790c480f415"] + }, + "sort": ["Newhaven Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20158:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newhaven-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the senior playground and gymnasium." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $109,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Newhaven Primary School." + ], + "field_latitude": ["-38.5128888"], + "field_latitude_longitude_value": ["-38.5128888,145.3568018"], + "field_latitude_value": ["-38.5128888"], + "field_longitude": ["145.3568018"], + "field_longitude_value": ["145.3568018"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3925"], + "field_project_code": ["01-3053"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["12-22 School Av"], + "field_suburb": ["Newhaven"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20158], + "status": [true], + "title": ["Newhaven Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2916dd94-5ed2-4625-8b46-ea21d37d6521"] + }, + "sort": ["Newhaven Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21352:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newhope-baptist-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The NewHope Baptist Preschool\u00a0have\u00a0internally and externally refurbished\u00a0the preschool's\u00a0current classroom, as well as added a new kitchen, staff toilet and classroom to increase capacity.\u00a0 \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Newhope Baptist Preschool" + ], + "field_latitude": ["-37.8091099"], + "field_latitude_longitude_value": ["-37.8091099,145.14196"], + "field_latitude_value": ["-37.8091099"], + "field_longitude": ["145.14196"], + "field_longitude_value": ["145.14196"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["15-965"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["3 Springfield Rd"], + "field_suburb": ["Blackburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21352], + "status": [true], + "title": ["Newhope Baptist Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["deca54a1-a576-48e6-bea0-6845826a8454"] + }, + "sort": ["Newhope Baptist Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20075:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/newington-primary-school-previously-urquhart-park" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. This school was previously known as Urquhart Park Primary School.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.503 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Newington Primary School (previously Urquhart Park)." + ], + "field_latitude": ["-37.56601777"], + "field_latitude_longitude_value": ["-37.56601777,143.8312189"], + "field_latitude_value": ["-37.56601777"], + "field_longitude": ["143.8312189"], + "field_longitude_value": ["143.8312189"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["01-2103"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["49 Inkerman St"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20075], + "status": [true], + "title": ["Newington Primary School (previously Urquhart Park)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["31877e87-7c65-491e-b129-05323df9333b"] + }, + "sort": ["Newington Primary School (previously Urquhart Park)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20307:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newlands-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade and modernise this school, allowing it to offer places to an extra 200 local students. The school will gain new facilities including: a gymnasium administration building 2 classroom buildings with amenities. We're also refurbishing existing classrooms and completing landscaping.", + "\u200b\u200b\u200b\u200bWe built new\u00a0classrooms, toilets and staff facilities and undertook asbestos removal works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $860,000 in planning funding. In the 2020\u201321 State Budget, the school received $7.743 million. In the 2021\u201322 State Budget, the school received at least $11.83 million.", + "In the 2017\u201318 State Budget, the\u00a0school was allocated $754,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Newlands Primary School" + ], + "field_latitude": ["-37.741649627685547", "-37.72985"], + "field_latitude_longitude_value": [ + "-37.741649627685547,145.00907897949219" + ], + "field_latitude_value": ["-37.741649627685547"], + "field_longitude": ["145.00907897949219", "144.9854499"], + "field_longitude_value": ["145.00907897949219"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["D1-01-4646", "01-4646"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2024", "Q2 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["2-26 Murphy St"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20307], + "status": [true], + "title": ["Newlands Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["125b6cc5-df21-46b5-a0ad-9a5b1eb7e54d"] + }, + "sort": ["Newlands Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21297:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newport-gardens-early-years-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Newport Gardens Early Years Centre in preparation for the roll-out of subsidised kindergarten for three-year-olds. This project will ensure that families and children in Hobsons Bay have access to high quality education and care programs as the demand for kindergarten places increase." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $600,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Newport Gardens Early Years Centre" + ], + "field_latitude": ["-37.84630277154404"], + "field_latitude_longitude_value": [ + "-37.84630277154404,144.8716792776846" + ], + "field_latitude_value": ["-37.84630277154404"], + "field_longitude": ["144.8716792776846"], + "field_longitude_value": ["144.8716792776846"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3015"], + "field_project_code": ["15-5275"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["51 Maddox Rd"], + "field_suburb": ["Newport"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21297], + "status": [true], + "title": ["Newport Gardens Early Years Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["83c727b9-68c7-4a81-883b-51dec1d9f14c"] + }, + "sort": ["Newport Gardens Early Years Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20312:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newport-gardens-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a sensory garden and made the playgrounds more accessibile for students with physical disabilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Newport Gardens Primary School" + ], + "field_latitude": ["-37.84152"], + "field_latitude_longitude_value": ["-37.84152,144.86925"], + "field_latitude_value": ["-37.84152"], + "field_longitude": ["144.86925"], + "field_longitude_value": ["144.86925"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3015"], + "field_project_code": ["01-4665"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Woods St & Maddox Rd"], + "field_suburb": ["Newport"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20312], + "status": [true], + "title": ["Newport Gardens Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["63164aef-1c3e-4b9b-992b-8f464134323d"] + }, + "sort": ["Newport Gardens Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19949:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newport-lakes-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised\u00a0Newport Lakes Primary School.\u00a0 We demolished\u00a0the southern teaching wing of Block A as the space had a considerable amount of asbestos and wasn't\u00a0serving the needs of the school. In its place, we constructed four new general purpose and teaching and learning spaces, student toilets, a music and multi-purpose hall and associated amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $3.04 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Newport Lakes Primary School" + ], + "field_latitude": ["-37.84141"], + "field_latitude_longitude_value": ["-37.84141,144.87748"], + "field_latitude_value": ["-37.84141"], + "field_longitude": ["144.87748"], + "field_longitude_value": ["144.87748"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3015"], + "field_project_code": ["01-113"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Elizabeth Street"], + "field_suburb": ["Newport"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19949], + "status": [true], + "title": ["Newport Lakes Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cb27fc5a-ce7f-48ac-b115-4fcab418751a"] + }, + "sort": ["Newport Lakes Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20298:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newstead-primary-school"], + "changed": ["2023-12-05T10:50:31+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. Works included Block A and the technology building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $2.46 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Newstead Primary School." + ], + "field_latitude": ["-37.1054605"], + "field_latitude_longitude_value": ["-37.1054605,144.0666515"], + "field_latitude_value": ["-37.1054605"], + "field_longitude": ["144.0666515"], + "field_longitude_value": ["144.0666515"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3462"], + "field_project_code": ["01-452"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Lyons St"], + "field_suburb": ["Newstead"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20298], + "status": [true], + "title": ["Newstead Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["27574053-722d-40db-9f1a-a25d15a67243"] + }, + "sort": ["Newstead Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20048:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/newtown-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded and modernised\u00a0facilities at the school. The project included refurbishment of\u00a0the main administration and classroom building, and renovation of\u00a0the library to create additional\u00a0classroom space.\u200b", + "We refurbished the toilet block." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2 million was allocated to the school.", + "From the 2019\u201320 School Pride and Sports Fund the school received $250,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Newtown Primary School." + ], + "field_latitude": ["-38.146652", "-38.153717041015625"], + "field_latitude_longitude_value": ["-38.146652,144.337158"], + "field_latitude_value": ["-38.146652"], + "field_longitude": ["144.337158", "144.33497619628906"], + "field_longitude_value": ["144.337158"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["01-1887", "D1-01-1887"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2019", "Q4 2019"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Aberdeen St"], + "field_suburb": ["Newtown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20048], + "status": [true], + "title": ["Newtown Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["645e92be-0e52-4aa6-b7c1-08016daf8cf0"] + }, + "sort": ["Newtown Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24972:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Nganboo-Borron-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new specialist school in Werribee. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 148 students.Walcom Ngarrwa Secondary College will be located next to the school.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school will provide educational programs for students with mild to profound intellectual disability.Read our frequently asked questions about enrolment below." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Nganboo Borron School." + ], + "field_latitude": ["-37.90779"], + "field_latitude_longitude_value": ["-37.90779,144.604331"], + "field_latitude_value": ["-37.90779"], + "field_longitude": ["144.604331"], + "field_longitude_value": ["144.604331"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/LollypopCreekSps_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "What is a specialist school? A specialist school is an education setting that accommodates and provides specialised education programs for students with specific disability and high needs. Who can enrol at this school? Nganboo Borron School has specific enrolment criteria, and students must meet these criteria to enrol at the school. The school will cater for students from 5 to 18 years old with mild to profound intellectual disability. Further details about the school\u2019s enrolment policy can be obtained by contacting the school. Learn more about the support available for students with intellectual disability What do parents need to do before enrolling their child at this school? Before enrolling, your child will need to have completed a full assessment. You must provide the results of this assessment to support your child\u2019s enrolment. In most cases, students are initially assessed at kindergarten or in their early school years. Learn more about getting your child assessed for intellectual disability Can a child with another disability, including physical disability, enrol at this school? Students with a disability, including a physical disability, have the right to attend their local government mainstream school. To enrol at Nganboo Borron School, your child must have a diagnosed intellectual disability in line with the enrolment criteria. Students with intellectual disability may have co-occurring health conditions or other disabilities. The school has been designed to cater for students with a range of needs. How do I enrol? If your child has been formally assessed and diagnosed with intellectual disability in line with the enrolment criteria, they are eligible to enrol at Nganboo Borron School. If your child meets the above criteria, please email nganboo.borron.s@education.vic.gov.au . Does Nganboo Borron School have a zone? Specialist schools do not have school zones. Nganboo Borron School will consider enrolment applications from all eligible students regardless of where they live. However, applications from eligible students may be prioritised in order of closeness to the school if the school has insufficient accommodation to accept all eligible applicants. How can I get my child to this school? Whilst parents are responsible for transporting their children to and from school, the department provides additional travel assistance through the following programs: Conveyance Allowance Program Students with Disabilities Transport Program discounted Myki ticket products and fares. Learn more about getting to and from school for students with disability What are the benefits of the Conveyance Allowance Program? The conveyance allowance supports transport costs, including public transport costs. It does not cover full costs; however, it can assist families, parents and carers by contributing funds towards the costs. The school will be able to provide more information on the different supports offered through the conveyance allowance. What is a designated transport area for school transport? If you live in the designated transport area for Nganboo Borron School, your child may be eligible for transport assistance through the Students with Disabilities Transport Program. Check whether you live within the school\u2019s designated transport area Will Nganboo Borron School have a school bus? From 2024, there will be school buses to service eligible students that live within the school\u2019s designated transport area. Bus route designs are underway. The school will share proposed bus routes with families later this year. What other travel options are available for families? Where possible, the department encourages students to use active travel (walk, ride) to attend school. Students may be eligible for discounted travel through a child Myki card or a Victorian Student Pass where public transport may better suit your family. Learn more about travelling to school Where can I find more information? You can learn more about available supports and services in government schools for families of children living with disability and additional needs. To discuss your child\u2019s eligibility to attend Nganboo Borron School please contact your regional office who can provide more information surrounding the school\u2019s enrolment criteria on 1300 333 232 or email swvr@education.vic.gov.au Download this information as a Word document \u00a0", + "Nganboo Borron School\u00a0was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Nganboo Borron\u00a0(pronounced naan-boo bore-on ) are\u00a0Wadawurrung words meaning children first, nurturing on your shoulder. We\u00a0used\u00a0Lollypop Creek Specialist School\u00a0as an interim name while the school was being planned and designed.", + "Michele Marcu was appointed as principal of the new school. Michele has over 20 years of experience working in the education and disability sectors. She is passionate about ensuring all students have access to the best possible programs and supports. Michele looks forward to creating a culture of inclusion at Nganboo Borron School . She is eager to connect with the community throughout 2023.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 2 learning neighbourhoods (junior & senior) a community hub outdoor play spaces a hardcourt a carpark. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the\u00a0Wadawurrung Traditional Owners Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Enrolment frequently asked questions (FAQs)", + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_paragraph_body": [ + "Lollypop Creek Specialist School (interim name) - Introducing Michele Marcu \u00a0", + "Lollypop Creek Specialist School (interim name) \u2013\u00a0construction update" + ], + "field_postcode": ["3030"], + "field_project_code": ["01-6366"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Frome Cr"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24972], + "status": [true], + "title": ["Nganboo Borron School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6eb3c468-8947-428e-ad3f-17941396bcb2"] + }, + "sort": ["Nganboo Borron School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20695:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ngarri-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in the City of Wyndham. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6.Honey Stirling was appointed as the first principal of the school.The school was previously known by its interim name, Holyoake Parade Primary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 to 8 July 2022. Ngarri (pronounced narr-ee) is a Wadawurrung word meaning \u2018sheoak\u2019.FacilitiesFacilities include the following:an administration building with a library, staff offices and amenities3 learning neighbourhood buildings. These include general purpose classrooms, and flexible and collaborative teaching spacesa specialist learning neighbourhood for subjects such as food technology and sciencea community hub with a competition-grade gymnasium, canteen, music and drama space2 outdoor hardcourtsa sports fielda bike shed.KindergartenWe partnered with Wyndham City Council to build\u00a0Birnbial Family Centre. The centre provides kindergarten, maternal child health and allied health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Ngarri Primary School." + ], + "field_latitude": ["-37.866255"], + "field_latitude_longitude_value": ["-37.866255,144.584056"], + "field_latitude_value": ["-37.866255"], + "field_longitude": ["144.584056"], + "field_longitude_value": ["144.584056"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/NgarriPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3024"], + "field_project_code": ["01-5592"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["70 Holyoake Pde"], + "field_suburb": ["Manor Lakes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20695], + "status": [true], + "title": ["Ngarri Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["37dfd0b0-c994-4d26-85c9-e7d6de765516"] + }, + "sort": ["Ngarri Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21329:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nhill-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Hindmarsh Shire Council, we upgraded the\u00a0centre. The upgrade included: increasing kindergarten\u00a0capacity for 3 and 4-year-olds\u00a0 closing in an external space to create an additional learning room." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was alloated $42,545 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nhill Early Learning Centre." + ], + "field_latitude": ["-36.33154"], + "field_latitude_longitude_value": ["-36.33154,141.65773"], + "field_latitude_value": ["-36.33154"], + "field_longitude": ["141.65773"], + "field_longitude_value": ["141.65773"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3418"], + "field_project_code": ["15-797"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2/20 Whitehead Av"], + "field_suburb": ["Nhill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21329], + "status": [true], + "title": ["Nhill Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6247f39d-6bd4-461e-ba6e-27550cee87ae"] + }, + "sort": ["Nhill Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28138:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nhill-lutheran-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish the central relocatable buildings and replace with modern modular buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1.1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nhill Lutheran School." + ], + "field_latitude": ["-36.32737632027404"], + "field_latitude_longitude_value": [ + "-36.32737632027404,141.66150801254838" + ], + "field_latitude_value": ["-36.32737632027404"], + "field_longitude": ["141.66150801254838"], + "field_longitude_value": ["141.66150801254838"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3418"], + "field_project_code": ["01-1754"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Mackay St"], + "field_suburb": ["Nhill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28138], + "status": [true], + "title": ["Nhill Lutheran School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["3b77666b-165c-4a5d-9fc6-2ce37bb929ae"] + }, + "sort": ["Nhill Lutheran School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20170:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nichols-point-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the carpet throughout the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $388,165" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Nichols Point Primary School" + ], + "field_latitude": ["-34.2088098"], + "field_latitude_longitude_value": ["-34.2088098,142.2034788"], + "field_latitude_value": ["-34.2088098"], + "field_longitude": ["142.2034788"], + "field_longitude_value": ["142.2034788"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3501"], + "field_project_code": ["01-3163"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["110 Koorlong Avenue"], + "field_suburb": ["Nichols Point"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20170], + "status": [true], + "title": ["Nichols Point Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5136cb72-f2ea-4c6e-843b-bb557f60e235"] + }, + "sort": ["Nichols Point Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20033:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nicholson-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0the outside play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2019\u201320 School Pride and Sports Fund the school received $200,000." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Nicholson Primary School." + ], + "field_latitude": ["-37.8157142500558"], + "field_latitude_longitude_value": [ + "-37.8157142500558,147.74108120005" + ], + "field_latitude_value": ["-37.8157142500558"], + "field_longitude": ["147.74108120005"], + "field_longitude_value": ["147.74108120005"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3882"], + "field_project_code": ["01-1716"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Princes Hwy"], + "field_suburb": ["Nicholson"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20033], + "status": [true], + "title": ["Nicholson Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["890e2b35-ea5f-4b6e-84a2-e34e2e547a6e"] + }, + "sort": ["Nicholson Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25199:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/niddrie-autistic-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-17T12:15:10+10:00"], + "field_about_project_processed": [ + "We upgraded facilities at the school by constructing a teaching block with 12 classrooms and staff facilities as well as associated landscaped sensory play areas and a staff car park. This project targeted facilities that needed it most, ensuring that students learn in an environment designed for delivering modern education. The school was previously known as Western Autistic School \u2013 Niddrie Campus. Niddrie Autistic School was chosen as the school name following community consultation and discussions with Geographic Names Victoria, taking into account factors including public interest, relevance to the local area, and local Indigenous languages. We consulted with the community on the school's\u00a0name from 11 June to 25 June 2021. The school is named after the suburb it is located in." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $7.3 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Niddrie Autistic School." + ], + "field_latitude": ["-37.74412421"], + "field_latitude_longitude_value": ["-37.74412421,144.887658"], + "field_latitude_value": ["-37.74412421"], + "field_longitude": ["144.887658"], + "field_longitude_value": ["144.887658"], + "field_mappintype_name": ["School upgrade"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/221021_NiddrieAutisticSchool_Webtiles11.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3042"], + "field_project_code": ["01-5362"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Garnet & Teague St"], + "field_suburb": ["Niddrie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25199], + "status": [true], + "title": ["Niddrie Autistic School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["50adbaa5-59ba-4b2a-92a5-eb34bb133d15"] + }, + "sort": ["Niddrie Autistic School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20602:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/niddrie-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are improving this school. We will upgrade and modernise the main block, and refurbish the junior toilet block.", + "We helped to replace/resurface the school's courts and replace a fire hydrant." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $10 million.\u00a0The school was allocated a further\u00a0$2.429 million\u00a0in 2022. In the 2020 Minor Capital Works Fund, the school was allocated $500,000.", + "The school received $276,000 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Niddrie Primary School." + ], + "field_latitude": ["-37.7309329", "-37.72976"], + "field_latitude_longitude_value": ["-37.7309329,144.8782849"], + "field_latitude_value": ["-37.7309329"], + "field_longitude": ["144.8782849", "144.87696"], + "field_longitude_value": ["144.8782849"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3042"], + "field_project_code": ["D2-01-5410", "01-5410"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2024", "Q4 2018"], + "field_start_date": ["Q2 2021", "Q2 2017"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["25 Watt St"], + "field_suburb": ["Niddrie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20602], + "status": [true], + "title": ["Niddrie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["13b28c30-a327-4de0-a356-29e818f6366e"] + }, + "sort": ["Niddrie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20127:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nilma-primary-school"], + "changed": ["2023-09-11T14:30:58+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space, including new play equipment, a water feature and shade sails." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $182,105" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Nilma Primary School" + ], + "field_latitude": ["-38.1657608"], + "field_latitude_longitude_value": ["-38.1657608,145.9742063"], + "field_latitude_value": ["-38.1657608"], + "field_longitude": ["145.9742063"], + "field_longitude_value": ["145.9742063"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3821"], + "field_project_code": ["01-2712"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["76 Bloomfield Road"], + "field_suburb": ["Nilma"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20127], + "status": [true], + "title": ["Nilma Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a2c821cd-e32c-4dd2-a915-0c9d83916b4d"] + }, + "sort": ["Nilma Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20901:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/noble-park-english-language-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. The new building features general purpose classrooms, teachers offices, breakout spaces, a staff work area, male and female toilets, a staff toilet, an accessible toilet and a store room. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.392 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Noble Park English Language School" + ], + "field_latitude": ["-37.971168"], + "field_latitude_longitude_value": ["-37.971168,145.178166"], + "field_latitude_value": ["-37.971168"], + "field_longitude": ["145.178166"], + "field_longitude_value": ["145.178166"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["01-8749"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["21-35 Thomas Street"], + "field_suburb": ["Noble Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20901], + "status": [true], + "title": ["Noble Park English Language School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cb0a08bc-80b8-4bf5-b301-bfce6ba1812c"] + }, + "sort": ["Noble Park English Language School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20925:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/noble-park-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0upgraded\u00a0the teaching and learning spaces at the school, as well as\u00a0repurposing\u00a0the library, toilets, and the\u00a0administration wings.\u00a0 The school received planning funding in the 2017\u201318 State Budget. This allowed for architectural planning for the current capital works.\u00a0 Community consultation was central to this planning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $7 million was allocated to schools across the State for planning, including this school. In the 2015\u201316 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Noble Park Secondary College." + ], + "field_latitude": ["-37.97136"], + "field_latitude_longitude_value": ["-37.97136,145.18421"], + "field_latitude_value": ["-37.97136"], + "field_longitude": ["145.18421"], + "field_longitude_value": ["145.18421"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["01-8813"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["3 Callaghan St"], + "field_suburb": ["Noble Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20925], + "status": [true], + "title": ["Noble Park Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1cd998c3-42f3-4e7a-baee-c4a8214b8532"] + }, + "sort": ["Noble Park Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22611:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/norfolk-street-childcare-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the kindergarten rooms, bathrooms and kitchen." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $144,100 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Norfolk Street Childcare Centre" + ], + "field_latitude": ["-37.82030008"], + "field_latitude_longitude_value": ["-37.82030008,144.8932171"], + "field_latitude_value": ["-37.82030008"], + "field_longitude": ["144.8932171"], + "field_longitude_value": ["144.8932171"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3013"], + "field_project_code": ["15-5734"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Norfolk St"], + "field_suburb": ["Yarraville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22611], + "status": [true], + "title": ["Norfolk Street Childcare Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c7e706f7-0f5c-4832-9cf7-1894a24fd517"] + }, + "sort": ["Norfolk Street Childcare Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24254:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/norlane-west-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T17:06:42+11:00"], + "field_about_project_processed": [ + "We made Norlane West Kindergarten accessible to children of all abilities. We added ramps at the main entrance and from each playroom into the playground. We also modified the undercover area to remove steps and allow better access from the bathroom and playrooms. We added an accessible toilet to the bathroom, and widened the doorways to improve access." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Inclusion Grant, $200,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Norlane West Kindergarten" + ], + "field_latitude": ["-38.08847051"], + "field_latitude_longitude_value": ["-38.08847051,144.3426883"], + "field_latitude_value": ["-38.08847051"], + "field_longitude": ["144.3426883"], + "field_longitude_value": ["144.3426883"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3214"], + "field_project_code": ["15-340"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["39 Peacock Ave"], + "field_suburb": ["Norlane"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24254], + "status": [true], + "title": ["Norlane West Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a8220120-83aa-4cf4-9b8f-91011a8ad6f7"] + }, + "sort": ["Norlane West Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20207:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/norris-bank-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built\u00a0indoor classrooms to link with a new outdoor learning space\u00a0and sensory garden for students.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2016, the school received $193,400 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Norris Bank Primary School" + ], + "field_latitude": ["-37.69423"], + "field_latitude_longitude_value": ["-37.69423,145.04301"], + "field_latitude_value": ["-37.69423"], + "field_longitude": ["145.04301"], + "field_longitude_value": ["145.04301"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3083"], + "field_project_code": ["01-3618"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["146 Settlement Rd"], + "field_suburb": ["Bundoora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20207], + "status": [true], + "title": ["Norris Bank Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["85135f83-0ff2-4199-aaa2-adc374a3beb4"] + }, + "sort": ["Norris Bank Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21344:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-bendigo-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bThe City of Greater Bendigo upgraded the amenities at North Bendigo Kindergarten.\u00a0 \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2014\u201315, $56,500 was allocated to the kindergarten." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at North Bendigo Kindergarten" + ], + "field_latitude": ["-36.74188"], + "field_latitude_longitude_value": ["-36.74188,144.28261"], + "field_latitude_value": ["-36.74188"], + "field_longitude": ["144.28261"], + "field_longitude_value": ["144.28261"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["15-90"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["55 Bannister St"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21344], + "status": [true], + "title": ["North Bendigo Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a8a3f4e4-c9a0-4381-b9e9-413bca252bd4"] + }, + "sort": ["North Bendigo Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23308:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-brighton-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We expanded this kindergarten with 2 new rooms and an outdoor play area. The expansion also includes spaces for community meetings and maternal and child health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $600,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at North Brighton Children\u2019s Centre" + ], + "field_latitude": ["-37.89124418"], + "field_latitude_longitude_value": ["-37.89124418,145.0004899"], + "field_latitude_value": ["-37.89124418"], + "field_longitude": ["145.0004899"], + "field_longitude_value": ["145.0004899"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3186"], + "field_project_code": ["15-182"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["145A Cochrane St"], + "field_suburb": ["Brighton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23308], + "status": [true], + "title": ["North Brighton Children\u2019s Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["bf2434e2-7874-42e6-8a8b-acefba76c9c2"] + }, + "sort": ["North Brighton Children’s Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23317:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-carlton-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We upgraded North Carlton Children\u2019s Centre. We replaced flooring and lighting. We also repainted interiors and upgraded the kitchenette, toilet and storage areas. In the yard, we made the entry more accessible, and improved draining to prevent flooding.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childood Refurbishment and Minor Works grant, $438,897 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at North Carlton Childrens Centre" + ], + "field_latitude": ["-37.78478127"], + "field_latitude_longitude_value": ["-37.78478127,144.9747927"], + "field_latitude_value": ["-37.78478127"], + "field_longitude": ["144.9747927"], + "field_longitude_value": ["144.9747927"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3054"], + "field_project_code": ["15-540"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["481 Canning St"], + "field_suburb": ["Carlton North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23317], + "status": [true], + "title": ["North Carlton Childrens Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["35854b04-86af-41bb-ae38-a8226c0d71ac"] + }, + "sort": ["North Carlton Childrens Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26026:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-cheltenham-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-29T13:54:59+10:00"], + "field_about_project_processed": [ + "We are expanding the centre, allowing them to offer 36 extra places as part of the roll-out of funded kindergarten for 3-year-olds. This will give more local children 2 years of high-quality kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2022-23 Building Blocks Capacity Building Grants, $981,792 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at North Cheltenham Preschool" + ], + "field_latitude": ["-37.95902314"], + "field_latitude_longitude_value": ["-37.95902314,145.0671959"], + "field_latitude_value": ["-37.95902314"], + "field_longitude": ["145.0671959"], + "field_longitude_value": ["145.0671959"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["15-887"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["71 Argus St"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26026], + "status": [true], + "title": ["North Cheltenham Preschool"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["71316cab-a18d-4a7c-b172-c7fe4aee0222"] + }, + "sort": ["North Cheltenham Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20798:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-geelong-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished\u00a0numerous areas of\u00a0the school as well as\u00a0adding\u00a0some new\u00a0buildings and adjoining spaces. \u200b\u200bWe renovated\u00a0the Science, Food Technology, main classroom and VCE wings, and the administration\u00a0area.\u00a0The works included\u00a0new student amenities and staff facilities.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget,\u00a0 $4.2 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at North Geelong Secondary College" + ], + "field_latitude": ["-38.10964"], + "field_latitude_longitude_value": ["-38.10964,144.34166"], + "field_latitude_value": ["-38.10964"], + "field_longitude": ["144.34166"], + "field_longitude_value": ["144.34166"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["01-7856"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["86-132 Separation St"], + "field_suburb": ["North Geelong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20798], + "status": [true], + "title": ["North Geelong Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["032d11aa-660d-4d4d-8e11-8355a87ba853"] + }, + "sort": ["North Geelong Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28673:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-maidstone-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading this kindergarten. We will extend the front entrance verandah and upgrade the kitchen and children\u2019s toilets. We will also upgrade cabinets and lockers in the children\u2019s play space and replace flooring throughout the building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $243,027.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at North Maidstone Kindergarten." + ], + "field_latitude": ["-37.78203443"], + "field_latitude_longitude_value": ["-37.78203443,144.8731219"], + "field_latitude_value": ["-37.78203443"], + "field_longitude": ["144.8731219"], + "field_longitude_value": ["144.8731219"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3012"], + "field_project_code": ["elc-1241"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["145 Mitchell St"], + "field_suburb": ["Maidstone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28673], + "status": [true], + "title": ["North Maidstone Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["fdc6ac07-79e9-4ba8-949f-2d6b71be0217"] + }, + "sort": ["North Maidstone Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19989:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-melbourne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a second campus for North Melbourne Primary School at Molesworth St, North Melbourne. The innovative vertical campus opened in 2023 and helps the growing local population get great education close to home. About the design The campus is designed to support current teaching and learning approaches that can adapt to the school's changing needs. All indoor and outdoor spaces are multipurpose to accommodate student learning styles, abilities, interests and personality types. There are shared learning spaces for interactive activities such as story time, and breakout rooms for reading or quiet reflection.\u00a0There are welcome landings on each level where the students gather before and after class. This space can also be used for work displays or accessing bag storage. There is a performance zone with a music room that can turn into a stage. It has retractable walls that open to reveal a space with tiered seating for performances, assemblies, events and presentations. The outdoor spaces feature more than 3000 plants and over 80 trees. This gives children plenty of shade and enriches the environment. Next to level 1, there is a outdoor space with a kitchen garden, bush tucker plants, and an outdoor workbench and sink.\u00a0The space can be used for different activities including outdoor learning, physical education and outdoor play. Kindergarten We built Molesworth Street Kindergarten for 3 and 4-year-old children on level 5 of the campus. It has 2 rooms and opens onto outdoor learning and play spaces. Building community The new campus is 350m from North Melbourne Primary School \u2013 Errol Street campus. We created 6 entrances into the campus. This helps connect the campus with surrounding housing and the neighbourhood. We built an undercover space on the campus\u2019s Molesworth Street corner for community to connect when dropping-off or collecting students. There are spaces for the school community to come together for performances, assemblies and events, both indoors and out. We designed the gymnasium and ground level outdoor play space to enable community use, in line with school policy. Community consultation We held a virtual information session in December 2020. Local residents discussed the new school with the Victorian School Building Authority. Following further consultation, the Victorian Government announced the new school was to be a campus of North Melbourne Primary School. The school community told us that they were keen to make the most of the unique opportunity offered by the proximity of the 2 school sites, and to ensure equity of access to the 21st century facilities the new campus would provide.", + "We helped the school upgrade the area around the school oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $2.15 million was allocated to planning for this campus. From the 2020\u201321 Infrastructure Planning and Acceleration fund, the campus was allocated $5 million. In the 2020\u201321 State Budget, the campus received at least $36.12 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $146,125" + ], + "field_funding_type_name": ["New School", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the new Molesworth Street campus and improvements at North Melbourne Primary School." + ], + "field_latitude": ["-37.79764266176122", "-37.7986628"], + "field_latitude_longitude_value": [ + "-37.79764266176122,144.94766512883604" + ], + "field_latitude_value": ["-37.79764266176122"], + "field_longitude": ["144.94766512883604", "144.9506474"], + "field_longitude_value": ["144.94766512883604"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-10/NMPS_RenderFeatureImage_updated231013.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "North Melbourne Primary School \u2013 Molesworth Street Campus \u2013 campus now open!", + "North Melbourne Primary School \u2013 Molesworth Street Campus \u2013 first look" + ], + "field_postcode": ["3051"], + "field_project_code": ["d1-01-1402", "01-1402"], + "field_project_title": [ + "New school campus \u2013 Molesworth Street campus", + "Minor Capital Works Fund \u2013 Errol Street campus" + ], + "field_q_complete": ["Q2 2023", "Q4 2021"], + "field_start_date": ["Q4 2016", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["25 Molesworth Street"], + "field_suburb": ["North Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19989], + "status": [true], + "title": ["North Melbourne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c75f1ec4-6299-451d-b8ce-ea37c5cae2eb"] + }, + "sort": ["North Melbourne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22612:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/north-eastern-montessori-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play space. This has made it safer and more inclusive, particularly in helping children with emotional regulation. It also provides more opportunities for play-based learning. We also planted Indigenous vegetation and use recycled materials." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $143,534 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at North-Eastern Montessori School" + ], + "field_latitude": ["-37.68407"], + "field_latitude_longitude_value": ["-37.68407,145.137091"], + "field_latitude_value": ["-37.68407"], + "field_longitude": ["145.137091"], + "field_longitude_value": ["145.137091"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["15-435"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["315 Aqueduct Rd"], + "field_suburb": ["ST HELENA"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22612], + "status": [true], + "title": ["North-Eastern Montessori School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["28811186-340f-4404-a9fb-78560f3916f2"] + }, + "sort": ["North-Eastern Montessori School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20834:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/northcote-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are delivering the next\u00a0stage of the master plan for the\u00a0school, which includes a new multipurpose learning building with specialist learning facilities.", + "\u200b\u200b\u200b\u200b\u200bWe built a new Performance Hub at the school. This reflected the school's long term vision to have a campus that better caters for contemporary learning and their growing student community. \u00a0 \u200b \u200b Located on the corner of the campus, the Performance Hub is\u00a0a place for the whole student community \u2013 an inspiring and outward-facing\u00a0environment for music and theatre\u00a0programs, and f\u200b\u200b\u200bor\u00a0enabling\u00a0learning through performance. It accommodates teaching and learning areas for the Music School and Drama and Theatre Studies, including\u00a0planning and support facilities, social spaces and amenities. Flexible VCE facilities, including study and meeting areas, are\u00a0also\u00a0part of the hub. This project, designed by Kerstin Thompson Architects,\u00a0was\u00a0the winner of\u00a0'Best Project\u00a0Under $5 Million' in the\u00a02019 Victorian School Design Awards. It was also recognised as a finalist in the 'Completed buildings - school' category at the 2019\u00a0World Architecture Festival." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 state budget, the\u00a0school received $8.007 million to deliver a multi-purpose learning building with specialist learning facilities. In the 2022\u201323 state budget, the school received an additional $8.747 million to deliver the new building\u00a0as a\u00a0three-storey STEM and library building\u00a0 The school has also contributed over $400,000 to the works. In 2022,\u00a0$2.3 million\u00a0was allocated to deliver 2 new double-storey relocatable buildings and to remove an excess single-storey relocatable building.", + "In the 2016\u201317 State Budget, $1.5 million was allocated to the school. In the 2015\u201316 State Budget, $3 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Northcote High School." + ], + "field_latitude": ["-37.761455450003", "-37.77646"], + "field_latitude_longitude_value": [ + "-37.761455450003,144.992624350046" + ], + "field_latitude_value": ["-37.761455450003"], + "field_longitude": ["144.992624350046", "144.98934"], + "field_longitude_value": ["144.992624350046"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3070"], + "field_project_code": ["D1-01-8180", "01-8180"], + "field_project_title": [ + "Upgrade and Modernisation - next\u00a0stage", + "Upgrade and Modernisation - Performance Hub" + ], + "field_q_complete": ["Q2 2024", "Q1 2019"], + "field_start_date": ["Q2 2021", "Q4 2017"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["St Georges Rd"], + "field_suburb": ["Northcote"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20834], + "status": [true], + "title": ["Northcote High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ebbf77f7-4cf7-4a03-911c-18aebd77f4ab"] + }, + "sort": ["Northcote High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19988:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/northcote-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have\u00a0upgraded the school. We\u00a0designed\u00a0a new school entrance, upgraded\u00a0essential services, and extensively refurbished\u00a0blocks A and\u00a0C." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $3.16 million was allocated to this school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Northcote Primary School." + ], + "field_latitude": ["-37.771940"], + "field_latitude_longitude_value": ["-37.771940,144.996700"], + "field_latitude_value": ["-37.771940"], + "field_longitude": ["144.996700"], + "field_longitude_value": ["144.996700"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3070"], + "field_project_code": ["01-1401"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["33 Helen St"], + "field_suburb": ["Northcote"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19988], + "status": [true], + "title": ["Northcote Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b609b62e-d414-47f3-b35e-94cb300a24c0"] + }, + "sort": ["Northcote Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23141:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/northern-bay-college-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-09T14:17:09+11:00"], + "field_about_project_processed": [ + "We are upgrading the playground and internal spaces to better support the needs of children from culturally and liguistically diverse backgrounds and those with diagnosed disability and trauma." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Building Blocks Inclusion Grant, $58,900 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Northern Bay College Early Learning Centre" + ], + "field_latitude": ["-38.0776107"], + "field_latitude_longitude_value": ["-38.0776107,144.3545798"], + "field_latitude_value": ["-38.0776107"], + "field_longitude": ["144.3545798"], + "field_longitude_value": ["144.3545798"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3214"], + "field_project_code": ["15-5247"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Building and Playgrounds" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["3-25 Goldsworthy Rd"], + "field_suburb": ["Corio\u00a0"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23141], + "status": [true], + "title": ["Northern Bay College Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0251d274-5166-492f-924b-223036aeeed2"] + }, + "sort": ["Northern Bay College Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20970:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/northern-bay-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are delivering the next stage of Northern Bay P\u201312 College's master plan at the Goldsworthy Road Campus for Years 9\u201312.We're delivering a multipurpose space. It will include:tiered seatingspace for meetings, events and performancesa podium for a projector and operatorchange roomsa storage rooma foyer space that can be used for art display.", + "We are refurbishing the toilets in the school's Goldsworthy Road 9\u201312 campus library/resource centre to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We built the Northern Bay College Regeneration Project. This project amalgamated nine local schools into one Prep to Year 12 College across five campuses. We completed stages 1 to 3 in early 2013 with the rejuvenation of the Hendy Street, Peacock Avenue and Goldsworthy Road campuses. Stage 4, at the college\u2019s Tallis Street campus, was completed in 2018. This provided flexible learning spaces, and specialist facilities for: arts multimedia design materials technology food technology. Construction is complete at the Wexford campus. This project included a new administration office and more flexible learning spaces. Students based on the Wexford campus have access to arts spaces, quiet room facilities and associated student amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $690,000 in planning funding. In the 2020\u201321 State Budget, the school received $15.31 million. The school was allocated a further $1.2 million in 2023.", + "In the 2022\u201323 State Budget the project received $138,897 from the Minor Capital Works Fund.", + "In the 2015\u201316 State Budget, $6 million was allocated to the school. In the 2018-19 State Budget, $1.5 million has been allocated to Northern Bay P\u201312 College Wexford Campus." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Northern Bay P-12 College" + ], + "field_latitude": ["-38.067523956298828", "-38.078406", "-38.07929"], + "field_latitude_longitude_value": [ + "-38.067523956298828,144.37738037109375" + ], + "field_latitude_value": ["-38.067523956298828"], + "field_longitude": ["144.37738037109375", "144.355709", "144.35555"], + "field_longitude_value": ["144.37738037109375"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3214"], + "field_project_code": ["D1-01-8901", "D2-01-8901", "01-8901"], + "field_project_title": [ + "Upgrade and Modernisation - Goldsworthy Road Campus", + "Minor Capital Works Fund - Goldsworthy Road Campus", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2024", "Q1 2024", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q2 2022"], + "field_status_name": ["Construction", "Construction", "Complete"], + "field_street_address": ["3-25 Goldsworthy Road"], + "field_suburb": ["Corio"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20970], + "status": [true], + "title": ["Northern Bay P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5e4778a8-1201-4095-9029-d68103cd6e8d"] + }, + "sort": ["Northern Bay P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20750:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/northern-college-arts-and-technology"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a new performing arts hall, dance rooms, music studios, music practice rooms and staff and administration rooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $2 million was allocated to the school for planning and design, and stage one works. The Government subsequently announced $9 million in additional funding." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Northern College of the Arts and Technology." + ], + "field_latitude": ["-37.740240"], + "field_latitude_longitude_value": ["-37.740240,145.026000"], + "field_latitude_value": ["-37.740240"], + "field_longitude": ["145.026000"], + "field_longitude_value": ["145.026000"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["01-7300"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["62 Murray Rd"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20750], + "status": [true], + "title": ["Northern College of the Arts and Technology"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b7cb152c-5242-40ff-a53a-ae2273462a37"] + }, + "sort": ["Northern College of the Arts and Technology"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20527:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/northern-school-autism"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build a new community hub and junior learning building at the Lalor campus. We will also upgrade the buildings used by local community groups.", + "We upgraded\u00a0the school, including constructing\u00a0a\u00a0Science, Technology, Engineering, Arts and Maths (STEAM) building, and\u00a0bus shelter canopies.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $26.339 million.", + "In the 2018\u201319 State Budget $2.2 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Northern School For Autism" + ], + "field_latitude": ["-37.70058524", "-37.699780"], + "field_latitude_longitude_value": ["-37.70058524,145.0299342"], + "field_latitude_value": ["-37.70058524"], + "field_longitude": ["145.0299342", "145.030258"], + "field_longitude_value": ["145.0299342"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3073"], + "field_project_code": ["D1-01-5219", "01-5219"], + "field_project_title": [ + "Upgrade and Modernisation - Lalor Campus", + "Upgrade and Modernisation - Reservoir Campus" + ], + "field_q_complete": ["Q4 2025", "Q4 2020"], + "field_start_date": ["Q2 2022", "Q2 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["16-18 Gertz Ave"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20527], + "status": [true], + "title": ["Northern School For Autism"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["82eb9c49-de5e-444e-8cba-390354dcf8f5"] + }, + "sort": ["Northern School For Autism"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21150:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/northside-christian-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct a 2-storey learning centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Northside Christian College." + ], + "field_latitude": ["-37.6945615"], + "field_latitude_longitude_value": ["-37.6945615,145.0550729"], + "field_latitude_value": ["-37.6945615"], + "field_longitude": ["145.0550729"], + "field_longitude_value": ["145.0550729"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3083"], + "field_project_code": ["03-1787"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["31 McLeans Rd"], + "field_suburb": ["Bundoora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21150], + "status": [true], + "title": ["Northside Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["37496c7b-3eab-4485-8452-6822550e4863"] + }, + "sort": ["Northside Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20835:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/norwood-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building on the upgrades completed in 2018 and 2019 with further modernisation of the school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most.", + "We delivered a new architect-designed modular building to Norwood Secondary College. To do this we\u00a0demolished Block A and replaced\u00a0it with a Science Building.\u00a0 Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs.\u00a0They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. Norwood Secondary College is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program\u200b.\u200b", + "We built a new stadium at\u00a0Norwood Secondary College, including a new competition-grade basket\u200bball court and additional single court complex. The Maroondah Education Plan includes the stadium for Norwood Secondary College, a performing arts centre for Mullum Primary School, a redevelopment for Ringwood Secondary College, and consolidation of Melba College's two campuses onto one site.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $820,000 in planning funding. In the 2020\u201321 State Budget, the school received $7.38 million.", + "In Round 3 of the program, the school was allocated $2,676,000.", + "In the 2015\u201316 State Budget, $3.7 million was allocated to the school. The school also received $750,000 in School Pride and Sports Funding." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Norwood Secondary College" + ], + "field_latitude": ["-37.80014", "-37.79915", "-37.79915"], + "field_latitude_longitude_value": ["-37.80014,145.23743"], + "field_latitude_value": ["-37.80014"], + "field_longitude": ["145.23743", "145.23664", "145.23664"], + "field_longitude_value": ["145.23743"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["D2-01-8185", "D1-01-8185", "01-8185"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q2 2019", "Q4 2018"], + "field_start_date": ["Q2 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Byron Street"], + "field_suburb": ["Ringwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20835], + "status": [true], + "title": ["Norwood Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["20912be7-f8d0-4919-89c6-af685a028555"] + }, + "sort": ["Norwood Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36666:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nossal-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are repairing the roof on the main school building. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $496,365 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Nossal High School" + ], + "field_latitude": ["-38.038502"], + "field_latitude_longitude_value": ["-38.038502,145.336563"], + "field_latitude_value": ["-38.038502"], + "field_longitude": ["145.336563"], + "field_longitude_value": ["145.336563"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["01-8865"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Sir Gustav Nossal Boulevard"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36666], + "status": [true], + "title": ["Nossal High School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["5463eff9-e67a-44ee-95fc-d4db0b8b9537"] + }, + "sort": ["Nossal High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21122:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/notre-dame-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build a visual arts facility, 2 general learning areas, a specialist space and staff and student amenities at the Shepparton Campus. This project also included landscaping works and removing relocatable buildings.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,460,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Notre Dame College." + ], + "field_latitude": ["-36.37395"], + "field_latitude_longitude_value": ["-36.37395,145.40779"], + "field_latitude_value": ["-36.37395"], + "field_longitude": ["145.40779"], + "field_longitude_value": ["145.40779"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["02-515"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q4 2015"], + "field_status_name": ["Complete"], + "field_street_address": ["139 Knight St"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21122], + "status": [true], + "title": ["Notre Dame College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9246cfac-44e0-4319-9178-624f2d5b7db3"] + }, + "sort": ["Notre Dame College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25380:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nullawarre-and-district-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We refurbished the student toilets. It has improved amenity, cleanliness and hygiene. This work was supported by our Minor Capital Works Fund. A program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2022-23 State Budget the project received $416,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Nullawarre and District Primary School" + ], + "field_latitude": ["-38.466755", "-38.466755"], + "field_latitude_longitude_value": ["-38.466755,142.734429"], + "field_latitude_value": ["-38.466755"], + "field_longitude": ["142.734429", "142.734429"], + "field_longitude_value": ["142.734429"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3268"], + "field_project_code": ["d1-1652", "01-1652"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2024", "Q4 2023"], + "field_start_date": ["Q4 2022", "Q2 2022"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["132 Henry's Sawmill Rd"], + "field_suburb": ["Nullawarre"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25380], + "status": [true], + "title": ["Nullawarre and District Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["32cefe2d-47f3-4db9-82d1-479fdd6088b0"] + }, + "sort": ["Nullawarre and District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20182:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nullawil-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the outdoor\u00a0garden, including landscaping\u00a0and a new outdoor classroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $130,150." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Nullawil Primary School" + ], + "field_latitude": ["-35.8533673514098"], + "field_latitude_longitude_value": [ + "-35.8533673514098,143.178914949564" + ], + "field_latitude_value": ["-35.8533673514098"], + "field_longitude": ["143.178914949564"], + "field_longitude_value": ["143.178914949564"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3529"], + "field_project_code": ["01-3301"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Church St"], + "field_suburb": ["Nullawil"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20182], + "status": [true], + "title": ["Nullawil Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["39772862-1518-4eff-8c27-f125d3f7549c"] + }, + "sort": ["Nullawil Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20079:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/numurkah-primary-school"], + "changed": ["2023-12-05T11:31:39+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the school's perimeter fencing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $225,625" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Numurkah Primary School" + ], + "field_latitude": ["-36.0903628500615"], + "field_latitude_longitude_value": [ + "-36.0903628500615,145.441939099998" + ], + "field_latitude_value": ["-36.0903628500615"], + "field_longitude": ["145.441939099998"], + "field_longitude_value": ["145.441939099998"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at Numurkah Primary School." + ], + "field_postcode": ["3636"], + "field_project_code": ["01-2134"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["12 Quinn Street"], + "field_suburb": ["Numurkah"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20079], + "status": [true], + "title": ["Numurkah Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6cb216a1-affd-40e1-96a9-ec9ebce5b9d8"] + }, + "sort": ["Numurkah Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36736:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/numurkah-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Numurkah Primary School.\u00a0The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.\u00a0The centre may also include other spaces for community use.\u00a0From 2027, Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.\u00a0Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Numurkah Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-36.09024"], + "field_latitude_longitude_value": ["-36.09024,145.444996"], + "field_latitude_value": ["-36.09024"], + "field_longitude": ["145.444996"], + "field_longitude_value": ["145.444996"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3636"], + "field_project_code": ["15-NPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["12 Quinn Street"], + "field_suburb": ["Numurkah"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36736], + "status": [true], + "title": [ + "Numurkah Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4699f6d1-316a-4109-b8ac-62d918d22935"] + }, + "sort": [ + "Numurkah Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23325:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/nunawading-christian-college-early-learning-centre" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We refurbished the staff's work areas. We also improved the playgrounds and updated landscaping.", + "We extended the carpark. It now has 31 extra spaces and improves safety for staff, children, and families.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $85,000 was allocated to this project.", + "In Round 2 of the 2021-22 Building Blocks Improvement Grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nunawading Christian College Early Learning Centre" + ], + "field_latitude": ["-37.82170936", "-37.82444916"], + "field_latitude_longitude_value": ["-37.82170936,145.1700324"], + "field_latitude_value": ["-37.82170936"], + "field_longitude": ["145.1700324", "145.1666726"], + "field_longitude_value": ["145.1700324"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3131"], + "field_project_code": ["15-5453", "D1-15-5453"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2023", "Q3 2023"], + "field_start_date": ["Q1 2022", "Q1 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["161 Central Rd"], + "field_suburb": ["Nunawading"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23325], + "status": [true], + "title": ["Nunawading Christian College Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["04054c4a-80ef-4445-98cd-4c57a68d6c19"] + }, + "sort": ["Nunawading Christian College Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28155:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nunawading-christian-college-primary"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T14:15:37+11:00"], + "field_about_project_processed": [ + "We are helping the school build a new 2-storey learning centre. The centre includes 8 general learning areas, outdoor learning spaces, an art room, music room, kitchen,office and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nunawading Christian College-Primary." + ], + "field_latitude": ["-37.821325805059104"], + "field_latitude_longitude_value": [ + "-37.821325805059104,145.17226048192387" + ], + "field_latitude_value": ["-37.821325805059104"], + "field_longitude": ["145.17226048192387"], + "field_longitude_value": ["145.17226048192387"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3131"], + "field_project_code": ["02-1508"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["Laughlin Av"], + "field_suburb": ["Nunawading"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28155], + "status": [true], + "title": ["Nunawading Christian College-Primary"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["30d0de68-bc45-4473-bcb3-997a1db35c2c"] + }, + "sort": ["Nunawading Christian College-Primary"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21045:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nunawading-christian-college-secondary"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school remove asbestos from their assembly hall building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $53,600." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Nunawading Christian College-Secondary." + ], + "field_latitude": ["-37.8246519"], + "field_latitude_longitude_value": ["-37.8246519,145.1683797"], + "field_latitude_value": ["-37.8246519"], + "field_longitude": ["145.1683797"], + "field_longitude_value": ["145.1683797"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3131"], + "field_project_code": ["02-1712"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["161 Central Rd"], + "field_suburb": ["Nunawading"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21045], + "status": [true], + "title": ["Nunawading Christian College-Secondary"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b55fdf93-5138-46c7-9e99-ba9c26e13d30"] + }, + "sort": ["Nunawading Christian College-Secondary"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20278:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nungurner-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground which has new play equipment and softfall.", + "We helped the school construct a new shed." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000", + "In the 2020 Minor Capital Works Fund the school was allocated $53,120." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Nungurner Primary School." + ], + "field_latitude": ["-37.8657399", "-37.8657399"], + "field_latitude_longitude_value": ["-37.8657399,147.8881545"], + "field_latitude_value": ["-37.8657399"], + "field_longitude": ["147.8881545", "147.8881545"], + "field_longitude_value": ["147.8881545"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3909"], + "field_project_code": ["D1-01-4226", "01-4226"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2022", "Q3 2022"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["455 Nungurner Rd"], + "field_suburb": ["Nungurner"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20278], + "status": [true], + "title": ["Nungurner Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9fa83c88-4486-4f81-b900-3dae3753bda6"] + }, + "sort": ["Nungurner Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22304:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/nyah-district-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:41+11:00"], + "field_about_project_processed": [ + "We are building an inclusive outdoor learning area, including new sensory equipment, timber decking and seating." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Nyah District Primary School" + ], + "field_latitude": ["-35.186082"], + "field_latitude_longitude_value": ["-35.186082,143.343189"], + "field_latitude_value": ["-35.186082"], + "field_longitude": ["143.343189"], + "field_longitude_value": ["143.343189"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3595"], + "field_project_code": ["01-5456"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["53-59 Monash Avenue"], + "field_suburb": ["Nyah West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22304], + "status": [true], + "title": ["Nyah District Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["f158eef6-c1cb-497b-9e7c-5963d5f8ec53"] + }, + "sort": ["Nyah District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36484:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oak-park-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-11-24T15:48:47+11:00"], + "field_about_project_processed": [ + "We are helping expand Oak Park Kindergarten to create up to 45 new kindergarten places for local children. We will build a new kindergarten room, as well as a new office, staff room and a planning and meeting room." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received $1.5 million as part of the Building Blocks Partnership between the State Government and Merri-Bek City Council. The Victorian Government has provided up to $10.7 million in funding to support 11 projects that will deliver up to 329 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Oak Park Kindergarten" + ], + "field_latitude": ["-37.71600677"], + "field_latitude_longitude_value": ["-37.71600677,144.9123187"], + "field_latitude_value": ["-37.71600677"], + "field_longitude": ["144.9123187"], + "field_longitude_value": ["144.9123187"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["15-OPK"], + "field_project_title": ["Building Blocks Partnership"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["1A Short Avenue"], + "field_suburb": ["Oak Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36484], + "status": [true], + "title": ["Oak Park Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["7b4b6b90-3e00-478c-9949-9a651315fffb"] + }, + "sort": ["Oak Park Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28675:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oak-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are improving and extending the storeroom. We will install safer shelving that makes it easier for children and staff to access play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $96,667.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Oak Street Kindergarten." + ], + "field_latitude": ["-38.13691923"], + "field_latitude_longitude_value": ["-38.13691923,145.8551722"], + "field_latitude_value": ["-38.13691923"], + "field_longitude": ["145.8551722"], + "field_longitude_value": ["145.8551722"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["elc-236"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["4 Oak St"], + "field_suburb": ["Drouin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28675], + "status": [true], + "title": ["Oak Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0649cdab-46ab-45cb-882a-b3574c7cffea"] + }, + "sort": ["Oak Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21469:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oakleigh-education-plan"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Oakleigh Education Plan. Work on the plan began in 2018. Its vision is to rejuvenate education across Oakleigh \u2013 getting students more engaged with their education, encouraging them to aim higher, while raising community pride in local schools. We work with three local primary and secondary schools, connecting and supporting them to share their expertise and resources. We are modernising science buildings, upgrading classrooms and improving sports facilities. The schools involved in the plan are: Oakleigh South Primary School Huntingdale Primary School South Oakleigh Secondary College. Community engagement From 22 March to 3 May 2019 we engaged with more than 400 local parents, students and staff. You can contact us to access a copy of the engagement report.\u00a0 Explore further Subscribe to our mailing list to stay up to date with the latest information on the Oakleigh Education Plan. For more information on learning programs and partnerships this plan is delivering, please visit the Department of Education. This is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to others across the state, please visit the VSBA education plans page. For all other queries contact education.plans@edumail.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the State for planning. This includes funding for the Oakleigh Education Plan." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Oakleigh Education Plan" + ], + "field_latitude": ["-37.918310"], + "field_latitude_longitude_value": ["-37.918310,145.102200"], + "field_latitude_value": ["-37.918310"], + "field_longitude": ["145.102200"], + "field_longitude_value": ["145.102200"], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["EP-O"], + "field_project_title": ["Education Plan"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21469], + "status": [true], + "title": ["Oakleigh Education Plan"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4d8c80af-0a59-439d-a97d-38008b25cb55"] + }, + "sort": ["Oakleigh Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21156:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oakleigh-grammar"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped upgrade the facilities at Oakleigh Grammar." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,500,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Oakleigh Grammar" + ], + "field_latitude": ["-37.896320778511694"], + "field_latitude_longitude_value": [ + "-37.896320778511694,145.08253280665716" + ], + "field_latitude_value": ["-37.896320778511694"], + "field_longitude": ["145.08253280665716"], + "field_longitude_value": ["145.08253280665716"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["03-1866"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["77 Willesden Road"], + "field_suburb": ["Oakleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21156], + "status": [true], + "title": ["Oakleigh Grammar"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f4ed415f-4470-4f12-b3da-90bff0f477ba"] + }, + "sort": ["Oakleigh Grammar"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20020:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oakleigh-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school by delivering the next stage of its master plan. This included upgrading Building 2.", + "We refurbished the school and built a competition-grade gymnasium.\u00a0 The refurbishment included the main school\u00a0building, as well as\u00a0an\u00a0open plan space, which was\u00a0changed into a general purpose classroom with an additional withdrawal room and a music\u00a0room.", + "We upgraded the school's\u00a0kindergarten by creating\u00a0a second kindergarten room with capacity for 22 children.\u00a0 The new space allows for both a funded kindergarten and three-year-old program and will enable more children to benefit from the kinder\u2019s commitment to providing accessible facilities and wide-ranging early years services.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $4.01 million.", + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the State for planning. This included funding for the\u00a0school. In the 2018\u201319 State Budget $9 million was allocated to the school.", + "The school received two funding commitments from the Children\u2019s Facilities Capital Program for a combined value of $330,000 in 2017\u201318 in order to facilitate the upgrade." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Oakleigh Primary School." + ], + "field_latitude": ["-37.899295806884766", "-37.894901", "-37.89454"], + "field_latitude_longitude_value": [ + "-37.899295806884766,145.0960693359375" + ], + "field_latitude_value": ["-37.899295806884766"], + "field_longitude": ["145.0960693359375", "145.088745", "145.08895"], + "field_longitude_value": ["145.0960693359375"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "Early childhood" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["D2-01-1601", "01-1601", "D1-01-1601"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Upgrade and Modernisation - Kindergarten" + ], + "field_q_complete": ["Q4 2022", "Q3 2020", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q2 2016"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["20 Warrigal Rd"], + "field_suburb": ["Oakleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20020], + "status": [true], + "title": ["Oakleigh Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f803793d-0e93-48ab-b063-5e6b513dcba6"] + }, + "sort": ["Oakleigh Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20368:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oakleigh-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including the administration and classroom building. We are also building a new kitchen garden. The upgraded and new spaces will provide modern and functional learning environments equipped for 21st century learning. This school is part of the Oakleigh Education Plan, which is working to transform education in the local area. By rejuvenating and reforming education across Oakleigh we are raising student engagement and community perceptions, and creating an academic drive for all students.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $8.847 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Oakleigh South Primary School" + ], + "field_latitude": ["-37.918643951416016"], + "field_latitude_longitude_value": [ + "-37.918643951416016,145.09620666503906" + ], + "field_latitude_value": ["-37.918643951416016"], + "field_longitude": ["145.09620666503906"], + "field_longitude_value": ["145.09620666503906"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Upgrading the central school building will equip students with access to modernised learning spaces. We will create flexible learning spaces by extending the existing building. These spaces will connect to two breakout spaces so that students can continue to benefit from the school\u2019s well-developed curriculum programs for individual learning. Consideration has been to integrate accessibility and inclusiveness in the designs. With outdoor seating areas, these design elements include entry ramps and landscaping for disabled access.", + "The administration, staff centre and classroom building will have their facilities modernised. While the main admin entrance location will be retained, a new welcoming space and entry will be created, along with new layouts and spaces for both the foyer area and staff centre. The new foyer area will link the main entrance to the office, meeting rooms and principal\u2019s office. It will allow for improved access for senior personnel and administration staff. Teachers and staff will now have access to an updated staff centre with improved facilities and spaces to host their student resources.", + "A new kitchen facility and upgrade of the relocated Horticulture Garden will provide an integrated facility for students to continue its established program learning about farming, cooking and consuming produce straight from the garden. Located to the east end of the hall, the design of the new kitchen space links to the new and renovated works. Students will understand how environment, agriculture, and cooking skills combine through hands-on education with these new and upgraded facilities.", + "Architects took great care to prioritise ventilation and outdoor learning facilities in these new and upgraded learning spaces. Where possible, windows will open to allow fresh air into classrooms, with additional ventilation available through highlight louvre windows allowing additional air flow. There are also many spaces where students can learn outdoors. We will develop the garden north of the administration area so students can enjoy their lunchtime outdoors and allow for outdoor classes. The outdoor area around the library will receive landscaping, and the deck extended as an outdoor learning space.", + "Throughout the project, architects have considered the environmental impact from building materials to ongoing power usage. Renovations of existing buildings will use sustainable materials and energy-efficient lighting. Windows in the new building will be double-glazed, and updated shading will allow natural light and protection from excess sun throughout the day. Native plants and trees that need less water than introduced plants will be grown on the school grounds." + ], + "field_paragraph_accordion_name": [ + "Modernised learning areas for students", + "Refreshed classroom building, administration and staff centre", + "Integrated kitchen facility and horticulture garden", + "Ventilation and outdoor learning", + "Environmentally sustainable design" + ], + "field_paragraph_body": [ + "Oakleigh South Primary School \u2013 design release" + ], + "field_paragraph_title": ["Design features"], + "field_postcode": ["3167"], + "field_project_code": ["01-4823"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Riley St"], + "field_suburb": ["Oakleigh South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20368], + "status": [true], + "title": ["Oakleigh South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c06153bd-fae3-4440-bcdc-9a0532dfc846"] + }, + "sort": ["Oakleigh South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20380:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oakwood-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We installed\u00a0new perimeter fencing.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": ["The school received $20,000 in 2015-16"], + "field_funding_type_name": ["School Improvement Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Oakwood Park Primary School" + ], + "field_latitude": ["-37.96096"], + "field_latitude_longitude_value": ["-37.96096,145.19063"], + "field_latitude_value": ["-37.96096"], + "field_longitude": ["145.19063"], + "field_longitude_value": ["145.19063"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["01-4856"], + "field_project_title": ["School Improvement Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["Camellia Avenue"], + "field_suburb": ["Noble Park North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20380], + "status": [true], + "title": ["Oakwood Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b0290a50-cbd9-441e-9799-71a80a5f8799"] + }, + "sort": ["Oakwood Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20587:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oatlands-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0installed shade cloth to outdoor areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $40,000 was allocated to the school through the School Pride and Sports Fund." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Oatlands Primary School." + ], + "field_latitude": ["-38.00668"], + "field_latitude_longitude_value": ["-38.00668,145.31535"], + "field_latitude_value": ["-38.00668"], + "field_longitude": ["145.31535"], + "field_longitude_value": ["145.31535"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["01-5363"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["79-93 Kurrajong Rd"], + "field_suburb": ["Narre Warren"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20587], + "status": [true], + "title": ["Oatlands Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5ff07491-1819-4a3a-ac82-88fd524d2d14"] + }, + "sort": ["Oatlands Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20836:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oberon-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new high school in Armstrong Creek. It opened in 2021 and helps the growing local population get great education close to home.\u00a0 We built new school facilities on a new site for Oberon High. These are modern buildings that will cater for more students in the southern Geelong area. This school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the 2019 Victorian School Design Awards. The facilities include: an administration and library building 3 learning community buildings with adaptable spaces for a variety of learning activities a science arts and technology building a performing arts and physical education building with a competition grade double court four outdoor multipurpose courts and a sports oval. It is located next to the Armstrong Creek School, a combined primary and specialist school, ensuring quality education for Prep through to Year 12 all in the one precinct. Families that require travel assistance can do so through either the free School Bus Program, or access free public transport as part of the Conveyance Allowance by applying directly through the school. Oberon High School's name, culture and history will continue at its new home. The uniform for Oberon High School will remain the same on the new site. As part of this project, we also upgraded the gym at the former Oberon High School site for use by Wangala Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $2.5 million was allocated to the school.In the 2018\u201319 State Budget, a further $3.9 million was allocated to the school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Oberon High School." + ], + "field_latitude": ["-38.231053"], + "field_latitude_longitude_value": ["-38.231053,144.364939"], + "field_latitude_value": ["-38.231053"], + "field_longitude": ["144.364939"], + "field_longitude_value": ["144.364939"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["01-8210"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["155-157 Batten Rd"], + "field_suburb": ["Armstrong Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20836], + "status": [true], + "title": ["Oberon High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f1a21bbe-6456-4e27-9337-fe58c2af56b6"] + }, + "sort": ["Oberon High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20335:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oberon-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We updated and refurbished classrooms and facilities in poor condition to improve standards across the school. This includes\u00a0building a new multi-purpose area.\u200b\u200b The works targeted facilities t\u200bhat were\u00a0most in need, ensuring the school has the learning facilities it requires to deliver modern education.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, Oberon Primary School was allocated $1.4 million. In the 2019\u201320 State Budget, the school received $950,000. From the 2019\u201320 School Pride and Sports Fund, the school received $210,000." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Oberon Primary School" + ], + "field_latitude": ["-38.179516"], + "field_latitude_longitude_value": ["-38.179516,144.341949"], + "field_latitude_value": ["-38.179516"], + "field_longitude": ["144.341949"], + "field_longitude_value": ["144.341949"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["01-4735"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Dorothy Avenue"], + "field_suburb": ["Belmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20335], + "status": [true], + "title": ["Oberon Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["09859d31-515e-4c76-bf7d-e7291e28986c"] + }, + "sort": ["Oberon Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20165:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ocean-grove-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground. It includes play equipment and a soft fall surface.", + "\u200bWe demolished and rebuilt the school gymnasium\u00a0into a sports/performance precinct, which is also\u00a0available to the local community outside of school hours.\u00a0 New relocatable classrooms\u00a0were installed on-site, and outdated sections of the South Wing demolished.\u00a0\u00a0 We also opened up\u00a0a courtyard for outdoor learning, improving \u200bstudent flow between the north and south wings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000", + "In the 2016-17 State Budget, $4.15 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ocean Grove Primary School" + ], + "field_latitude": ["-38.2635868", "-38.26352"], + "field_latitude_longitude_value": ["-38.2635868,144.5217383"], + "field_latitude_value": ["-38.2635868"], + "field_longitude": ["144.5217383", "144.52161"], + "field_longitude_value": ["144.5217383"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3226"], + "field_project_code": ["D1-01-3100", "01-3100"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q4 2018"], + "field_start_date": ["Q2 2021", "Q3 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1 - 23 Draper Street"], + "field_suburb": ["Ocean Grove"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20165], + "status": [true], + "title": ["Ocean Grove Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e061c428-dfe7-4cca-9a7c-45a741732145"] + }, + "sort": ["Ocean Grove Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20129:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/officer-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200bWe've\u00a0rejuvenated\u00a0the school\u2019s centenary garden.\u200b As part of the Education State vision, the Victorian Government has set a goal to increase pride and confidence in government schools.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $230,029 was allocated to the school." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Officer Primary School" + ], + "field_latitude": ["-38.05803"], + "field_latitude_longitude_value": ["-38.05803,145.41022"], + "field_latitude_value": ["-38.05803"], + "field_longitude": ["145.41022"], + "field_longitude_value": ["145.41022"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["01-2742"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["13-23 Tivendale Rd"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20129], + "status": [true], + "title": ["Officer Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["35c3f398-2058-43fe-963a-672c2ff13086"] + }, + "sort": ["Officer Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20972:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/officer-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are constructing a roof to create an all-weather learning area and covered walkway for senior students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $64,120" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Officer Secondary College" + ], + "field_latitude": ["-38.0699354"], + "field_latitude_longitude_value": ["-38.0699354,145.4130814"], + "field_latitude_value": ["-38.0699354"], + "field_longitude": ["145.4130814"], + "field_longitude_value": ["145.4130814"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["01-8907"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["1 Parker Street"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20972], + "status": [true], + "title": ["Officer Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["346332df-beef-441d-84d8-f30ccf80a1fa"] + }, + "sort": ["Officer Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20658:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/officer-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms.", + "We built an inclusive, wheelchair-accessible learning and sensory space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $3.717 million.", + "In 2019, $199,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Officer Specialist School" + ], + "field_latitude": ["-38.07078882", "-38.06994"], + "field_latitude_longitude_value": ["-38.07078882,145.4113067"], + "field_latitude_value": ["-38.07078882"], + "field_longitude": ["145.4113067", "145.41308"], + "field_longitude_value": ["145.4113067"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["D1-01-5550", "01-5550"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q4 2019"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["3 Parker St"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20658], + "status": [true], + "title": ["Officer Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9266c739-f710-4d8c-b963-c2451e32192e"] + }, + "sort": ["Officer Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20328:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/old-orchard-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the corridor ceilings to provide natural light and prevent further roof leaks." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $392,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Old Orchard Primary School." + ], + "field_latitude": ["-37.8073288"], + "field_latitude_longitude_value": ["-37.8073288,145.1524752"], + "field_latitude_value": ["-37.8073288"], + "field_longitude": ["145.1524752"], + "field_longitude_value": ["145.1524752"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["01-4715"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["88 Koonung Rd"], + "field_suburb": ["Blackburn North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20328], + "status": [true], + "title": ["Old Orchard Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6a18f2ad-d51a-4157-9c2d-99c05cf1315f"] + }, + "sort": ["Old Orchard Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25455:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/olive-philips-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment and landscaping to make it more inclusive for children of all abilities and to better reflect the natural surroundings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $195,682 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Olive Phillips Kindergarten" + ], + "field_latitude": ["-37.99098578"], + "field_latitude_longitude_value": ["-37.99098578,145.0393723"], + "field_latitude_value": ["-37.99098578"], + "field_longitude": ["145.0393723"], + "field_longitude_value": ["145.0393723"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3193"], + "field_project_code": ["15-1122"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["28A Bodley Avenue"], + "field_suburb": ["Beaumaris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25455], + "status": [true], + "title": ["Olive Philips Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["1c8e5c50-6750-4b56-8d56-39bd75681e9f"] + }, + "sort": ["Olive Philips Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25398:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/olympic-avenue-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment and landscaping to make it more inclusive for children of all abilities and to better reflect the surrounding natural environment.", + "We made the outdoor facilities safer for children and staff. We upgraded the deteriorating monkey bars and shade sail. We also added new rubber matting and a new entrance gate to improve the safety and wellbeing of kindergarten users." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $196,386 was allocated to this project.", + "In Round 2 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Olympic Avenue Kindergarten" + ], + "field_latitude": ["-37.9617372115784"], + "field_latitude_longitude_value": [ + "-37.9617372115784,145.04661367117" + ], + "field_latitude_value": ["-37.9617372115784"], + "field_longitude": ["145.04661367117"], + "field_longitude_value": ["145.04661367117"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["D1-15- 888", "15-888"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2023", "Q4 2022"], + "field_start_date": ["Q3 2022", "Q2 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["28 Olympic Ave"], + "field_suburb": ["Cheltenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25398], + "status": [true], + "title": ["Olympic Avenue Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["b3e117e6-f7b9-464a-9287-ad04df76b84d"] + }, + "sort": ["Olympic Avenue Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23139:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/olympic-village-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-09T14:17:09+11:00"], + "field_about_project_processed": [ + "We created a large meeting space where children, families and the community can gather to acknowledge the First Nations Custodians of the Land. We also added a large shared yard that can be used by the kindergarten, playgroups and young mum's groups.", + "We upgraded the children's bathroom to include a nappy change area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Building Blocks Inclusion Grant, $200,000 was allocated to this project.", + "In the 2021\u201322 Building Blocks Inclusion Grants, $92,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Olympic Village Preschool" + ], + "field_latitude": ["-37.73955386"], + "field_latitude_longitude_value": ["-37.73955386,145.0428724"], + "field_latitude_value": ["-37.73955386"], + "field_longitude": ["145.0428724"], + "field_longitude_value": ["145.0428724"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3081"], + "field_project_code": ["15-639", "D1-15-639"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Building and Playgrounds", + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q2 2023", "Q1 2023"], + "field_start_date": ["Q1 2022", "Q3 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1 Morobe St"], + "field_suburb": ["Heidelberg West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23139], + "status": [true], + "title": ["Olympic Village Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5c5b1c03-3591-49f6-a561-084395b52c0e"] + }, + "sort": ["Olympic Village Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21296:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/one-tree-altona-north-childrens-service"], + "changed": ["2023-12-06T12:20:15+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the centre to prepare it for the roll-out of subsidised kindergarten for 3-year-olds. The kindergarten can now offer 40 extra places to local families. The works have improved the quality of the learning environment. It also helps local children access 2 years of high-quality funded kindergarten.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Building Blocks Grants Capacity Building stream, the children's centre received $600,000" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at One Tree Altona North Children\u2019s Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3025"], + "field_project_code": ["15-5268"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Expansion" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_suburb": ["Altona North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21296], + "status": [true], + "title": ["One Tree Altona North Children\u2019s Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["554165e5-c4d4-41db-a91b-dcdf1c9747c9"] + }, + "sort": ["One Tree Altona North Children’s Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21485:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orbost-community-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting 2 local primary schools and one secondary school to come together to form a new P\u201312 college in Orbost. Orbost Community College is the name of the new P\u201312 college which will open in 2024. The school will be located on the\u00a0Orbost Secondary College\u00a0site. The merger combines Orbost Primary School, Orbost North Primary School, and Orbost Secondary College. It will provide students with first-rate facilities and greater opportunities. Work is underway We have nearly finished building the first stage of the project. This includes a new food technology building and relocating the canteen to a refurbished space in the school hall. We have also appointed a builder for the next stage, which includes: demolishing a teaching building constructing a new junior building extending the administration building landscaping. We expect to finish this phase in 2024. Site and features New learning spaces for students of every ability with: a modern food technology building multi-purpose classrooms in a junior learning hub expanded contemporary staffroom basketball court and outdoor stage area. The Orbost Regeneration Project The new college is the result of years of work between the 3 school communities. In 2019 a working party was formed. It included the principals, and school council representatives from each school. It will continue to identify, develop, and explore all options to ensure the best possible educational opportunities are available to all students in the Orbost area. The key areas of focus will be: developing a school that provides for all students and families in their\u00a0community improving the quality and consistency of teaching and wellbeing practices, boosting their ability to attract and retain quality staff improving the school's ability to provide a guaranteed and viable curriculum across a range of subject areas. We will work with each school community to ensure we capture its history and bring its identity to the new P\u201312 college." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $7.271 million.\u00a0In 2022 the school was allocated a further $1,198,228." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Orbost Community College" + ], + "field_latitude": ["-37.7039713"], + "field_latitude_longitude_value": ["-37.7039713,148.4663183"], + "field_latitude_value": ["-37.7039713"], + "field_longitude": ["148.4663183"], + "field_longitude_value": ["148.4663183"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Orbost Community College is the name of the new P\u201312 college in Orbost. The new name is inclusive, reflects the College\u2019s community connections and embraces all year levels. Public consultation by the Orbost District Education Committee attracted strong community interest and provided valuable insights.", + "The best parts of all 3 schools will be merged to create the new school. The new school leadership will continue to make decisions about teaching and learning practices, year level groupings and school culture.\u00a0 The school will continue to focus on supporting the needs of Orbost and the surrounding communities.", + "The working party consists of principals and school council members representing their 3 school communities. It was formed in 2019, but the schools have been working together for many years and meeting regularly to discuss the current and future needs of their students and schools. The working party developed the proposal for the schools to merge as its conversations focused on the best use of current facilities, the retention of staff and the curriculum available to all students.", + "By coming together on one site, and building on the already strong, collaborative relationships of the schools, students will have more subject choices and teachers. Educators will receive more opportunities for professional learning and development. We can build on the work already achieved to create a new P\u201312 college and support the local community to see greater educational outcomes for students. The merger was driven by the schools and school councils and proposed after significant consideration. This included multiple site visits to other P\u201312 schools throughout 2019. The 3 school councils passed a motion for the merger at the end of 2019.", + "The site was chosen by the working party, in partnership with the Department of Education, for its size, location, and centrality for the school community. The site is the largest of the 3 schools in the regeneration project and will provide all students with more subject choice and a wider range of facilities. It will support students as they transition between primary and secondary learning by building earlier, closer relationships between students, staff and educators.", + "Funding from the 2021\u201322 State Budget will provide the facilities needed at the new site for students from all the schools to come together and learn successfully.", + "Students will receive greater access to subjects that weren\u2019t available due to lower student numbers or lack of resources, facilities, and staff. It means being part of a wider network and school community. There will be closer connections between students and staff, and better transition and wellbeing support as students move from primary to secondary learning.", + "Staff will gain opportunities for greater professional learning and development. They will begin working with individual students earlier, allowing them to better understand their learning needs. A shared approach to teaching and learning will help staff learn and grow from one another.", + "The merger was driven by 3 school communities working together to ensure Orbost students and families had access to greater educational opportunities. Having primary and secondary years on the one site will encourage parents, families, and carers to come together across multiple age ranges and help build a stronger school community. Families will gain a greater understanding of their child\u2019s learning and achievements through a unified curriculum and have closer access to staff and teachers.", + "Parents and carers are encouraged to approach their child\u2019s principal to ask questions and provide feedback at any time during the process. Parents and carers are also welcome to contact the VSBA directly to ask about the project.", + "Each school works closely with their Koorie Engagement Support Officers (KESOs) and is guided by their expertise to provide the best culturally sensitive practices. Their expertise will guide engagement with traditional owner groups during the merger.", + "The leadership teams of the 3 schools are part of a working party who represent the schools and their needs. The Department of Education is working with the architect and principals to make sure the school communities are informed and updated on the project.", + "In partnership with the wider Department of Education, the VSBA will continue to support the 3 schools and the working party to understand the next steps. Together, we will provide the community with clear communications and updates. This will include updates and timelines as we design and build the new P-12 College. We will ensure all staff, students, parents, families, and carers are involved throughout this merger and will soon release a business plan developed by the working party. Now that funding has been announced, we will work with the schools to develop a master plan for the new college. This work will involve the support of staff, students, parents, families, and carers to shape the future of the school.", + "A master plan is a long-term planning document. It gives us a better understanding of the land and buildings, and how the site could be developed to best meet student and school needs. The architect will work with relevant stakeholders\u00a0for 8 to 10 weeks to develop the master plan.\u00a0", + "After the master plan has been finalised and approved, the architects will develop more advanced designs for the new P\u201312 college.\u00a0 Throughout, the architects will continue to work with the working party, each school's leadership team and VSBA project managers. The design needs to be within the scope of works agreed in the master plan." + ], + "field_paragraph_accordion_name": [ + "School naming consultation", + "What to expect?", + "Who is in the working party and what do they do?", + "Why was this decision made?", + "Why was the Orbost Secondary College site chosen?", + "Will the school be able to fit all 3 schools\u2019 students?", + "What does this mean for students?", + "What does this mean for staff?", + "What does this mean for our community?", + "How will parents and carers be engaged throughout the process?", + "Are you consulting traditional owner groups?", + "Who's involved in future decisions?", + "What are the next steps?", + "What is a master plan?", + "What can we expect after master planning has been completed?" + ], + "field_paragraph_body": [ + "Downloads The content in this download is also available on this web page.\u00a0" + ], + "field_postcode": ["3888"], + "field_project_code": ["OR-REG"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["20 Arnold St"], + "field_suburb": ["Orbost"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21485], + "status": [true], + "title": ["Orbost Community College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3e02fc53-3b9e-4c6a-9236-1560a1d39ed3"] + }, + "sort": ["Orbost Community College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20347:en", + "_score": null, + "_ignored": ["field_paragraph_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orbost-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded facilities at the school, including the\u00a0refurbishment\u00a0and modernisation of\u00a0classrooms and facilities in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $130,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Orbost North Primary School." + ], + "field_latitude": ["-37.69795"], + "field_latitude_longitude_value": ["-37.69795,148.46589"], + "field_latitude_value": ["-37.69795"], + "field_longitude": ["148.46589"], + "field_longitude_value": ["148.46589"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "In the 2021\u201322 Stage Budget, the Orbost Regeneration Project was announced, which will bring students together from Orbost Primary School, Orbost North Primary School and Orbost Secondary College on the current secondary school site.\u00a0The P-12 school will be known as\u00a0 Orbost Community College." + ], + "field_postcode": ["3888"], + "field_project_code": ["01-4767"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Rupert St"], + "field_suburb": ["Orbost"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20347], + "status": [true], + "title": ["Orbost North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["792ed326-f7d9-4919-a66c-c78968b85dbe"] + }, + "sort": ["Orbost North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20130:en", + "_score": null, + "_ignored": ["field_paragraph_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orbost-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0the school upgrade the asphalt surface in sport and entrance areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $75,290." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Orbost Primary School." + ], + "field_latitude": ["-37.7079406"], + "field_latitude_longitude_value": ["-37.7079406,148.4576366"], + "field_latitude_value": ["-37.7079406"], + "field_longitude": ["148.4576366"], + "field_longitude_value": ["148.4576366"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "In the 2021\u201322 Stage Budget, the Orbost Regeneration Project was announced, which will bring students together from Orbost Primary School, Orbost North Primary School and Orbost Secondary College on the current secondary school site.\u00a0The P-12 school will be known as\u00a0 Orbost Community College ." + ], + "field_postcode": ["3888"], + "field_project_code": ["01-2744"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Ruskin St"], + "field_suburb": ["Orbost"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20130], + "status": [true], + "title": ["Orbost Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["08722748-00b9-4219-a9c1-e7afb0679300"] + }, + "sort": ["Orbost Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20837:en", + "_score": null, + "_ignored": ["field_paragraph_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orbost-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced\u00a0an older building containing asbestos with a new permanent modular building. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. Orbost Secondary College\u00a0is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "We\u00a0upgraded\u00a0facilities, including:\u00a0 refurbishing\u00a0the music room to include a new entry foyer and new administration\u00a0offices, painting\u00a0the art room, and fitting it with\u00a0new flooring, lighting and sinks, completing external landscaping to\u00a0give the school clear entry and exit points." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $3.48 million through the Permanent Modular School Buildings Program.", + "In the 2018\u201319 State Budget $900,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Orbost Secondary College." + ], + "field_latitude": ["-37.70397"], + "field_latitude_longitude_value": ["-37.70397,148.46725"], + "field_latitude_value": ["-37.70397"], + "field_longitude": ["148.46725"], + "field_longitude_value": ["148.46725"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "In the 2021\u201322 Stage Budget, the Orbost Regeneration Project was announced, which will bring students together from Orbost Primary School, Orbost North Primary School and Orbost Secondary College on the current secondary school site. The P-12 school will be known as\u00a0 Orbost Community College ." + ], + "field_postcode": ["3888"], + "field_project_code": ["D1-01-8215", "01-8215"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2020", "Q2 2020"], + "field_start_date": ["Q2 2019", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["20 Arnold Street"], + "field_suburb": ["Orbost"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20837], + "status": [true], + "title": ["Orbost Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["37b7f25e-0c02-4d98-854c-8d8816330e28"] + }, + "sort": ["Orbost Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22355:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orchard-grove-primary-school"], + "changed": ["2023-11-13T12:42:52+11:00"], + "created": ["2022-01-14T14:24:08+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We provided a new student amenities block. It has improved amenity, accessibility and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 2 of the Minor Capital Works Fund, the project received $498,627" + ], + "field_funding_type_name": ["Planning", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Orchard Grove Primary School" + ], + "field_latitude": ["-37.84023"], + "field_latitude_longitude_value": ["-37.84023,145.146528"], + "field_latitude_value": ["-37.84023"], + "field_longitude": ["145.146528"], + "field_longitude_value": ["145.146528"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3130"], + "field_project_code": ["D1-01-5285", "01-5285"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Subject to future funding", "Q4 2023"], + "field_start_date": ["Q2 2023", "Q4 2021"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["101 Orchard Grove"], + "field_suburb": ["Blackburn South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22355], + "status": [true], + "title": ["Orchard Grove Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["6cb41f17-581a-4ce4-ad95-d57a08cd8624"] + }, + "sort": ["Orchard Grove Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20585:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orchard-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We built a new primary school\u00a0in Officer. It opened in 2021 and helps the growing local population get great education close to home.\u00a0 Nathan Jagoe was\u00a0appointed as the first principal. Enrolments are now open for Prep to Year 6.\u00a0 Your new school includes the following facilities: 2 learning neighbourhoods administration building outdoor play courts performing arts and physical education building arts, science and food technology building\u00a0 sports field. A\u00a0kinder is located next to\u00a0the school. This helps local\u00a0children make\u00a0a smooth transition from preschool\u00a0and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Further information on the school, including enrolment,\u00a0can be found on its official Facebook Page. School name Orchard Park Primary School was originally known by the interim\u00a0name of Timbertop (Officer North West) Primary School while it was being planned and built. Orchard Park Primary School\u00a0was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. The school is named\u00a0after an orchard that was developed on the land in 1911. We consulted with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $190,450.", + "Funding was provided in the 2017\u201318 State Budget to buy land in this area for a new school.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["Inclusive Schools Fund", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Orchard Park Primary School." + ], + "field_latitude": ["-38.05488", "-38.054509"], + "field_latitude_longitude_value": ["-38.05488,145.396589"], + "field_latitude_value": ["-38.05488"], + "field_longitude": ["145.396589", "145.396842"], + "field_longitude_value": ["145.396589"], + "field_mappintype_name": ["School upgrade", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["d1-5358", "01-5358"], + "field_project_title": [ + "Inclusive Schools Fund \u2013 Round 8", + "New School" + ], + "field_q_complete": ["Q2 2024", "Q1 2021"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["291 Pink Hill Blvd"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20585], + "status": [true], + "title": ["Orchard Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6312e407-1a7c-4a8c-90f5-5bf0ff9cffb8"] + }, + "sort": ["Orchard Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22613:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orchard-road-community-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded the play yard to make it more accessible and to encourage a wider variety of activities. This allows the space to grow with the children, and for children with additional needs to play safely.", + "\u200bThe City of Whittlesea has built Orchard Road Community and Early Learning Centre, a new Integrated Children's Centre. \u200b\u200b Orchard Road Community and Early Learning Centre will be a one-stop shop for young families in the northern suburbs, with kindergarten services, maternal and child health services, early intervention services and meeting rooms for parent support groups, playgroups and other child and family services. The centre opened\u00a0in the middle of 2017, with the Kindergarten program then\u00a0starting in 2018.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Improvement Grant, $77,808 was allocated to this project.", + "As part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $1.6 million has been allocated to the Integrated Children's Centre." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "New Early Learning Facility" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Orchard Road Community & Early Learning Centre." + ], + "field_latitude": ["-37.61517968"], + "field_latitude_longitude_value": ["-37.61517968,145.1272562"], + "field_latitude_value": ["-37.61517968"], + "field_longitude": ["145.1272562"], + "field_longitude_value": ["145.1272562"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["15-5704", "D1-15-5704"], + "field_project_title": [ + "Building Blocks Improvement Grant", + "New Early Learning Facility" + ], + "field_q_complete": ["Q1 2023", "Q2 2017"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["121 Orchard Rd"], + "field_suburb": ["Doreen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22613], + "status": [true], + "title": ["Orchard Road Community & Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["82607487-8684-486a-a73b-b7fb9f47a486"] + }, + "sort": ["Orchard Road Community & Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20161:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ormond-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will be replacing the synthetic turf in outdoor play areas.", + "We upgraded classrooms\u00a0and built\u00a0a Science, Technology, Engineering, Arts and Mathematics (STEAM) room.", + "We\u00a0redeveloped the school's disused courtyard into a new playground for students.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $100,000", + "In the 2018\u201319 State Budget $2.3 million was allocated to the school.", + "The school received $30,000 in 2015\u201316." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ormond Primary School." + ], + "field_latitude": ["-37.906742", "-37.906792"], + "field_latitude_longitude_value": ["-37.906742,145.034164"], + "field_latitude_value": ["-37.906742"], + "field_longitude": ["145.034164", "145.034058"], + "field_longitude_value": ["145.034164"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["D2-01-3074", "D1-01-3074", "01-3074"], + "field_project_title": [ + "Upgrade and Modernisation - Synthetic Turf Replacement", + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q3 2025", "Q4 2020"], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["Cnr Murray & Wheatley Rd"], + "field_suburb": ["Ormond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20161], + "status": [true], + "title": ["Ormond Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0661742b-0c7a-46eb-8ac0-7d29b878d12b"] + }, + "sort": ["Ormond Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20224:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/orrvale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We extended the school's carpark and traffic management system for the improved safety of students.", + "We built\u00a0a new learning hub, which incorporates music and arts facilities, and refurbished\u00a0the administration building ." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $375,625.", + "In the 2017\u201318 State Budget, the school was allocated $1.768 million." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Orrvale Primary School." + ], + "field_latitude": ["-36.4099025", "-36.409901"], + "field_latitude_longitude_value": ["-36.4099025,145.4394873"], + "field_latitude_value": ["-36.4099025"], + "field_longitude": ["145.4394873", "145.439484"], + "field_longitude_value": ["145.4394873"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3631"], + "field_project_code": ["D1-01-3805", "01-3805"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q4 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["300 Channel Rd"], + "field_suburb": ["Orrvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20224], + "status": [true], + "title": ["Orrvale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9514853f-d0cb-4a6b-a854-306c3f9aca66"] + }, + "sort": ["Orrvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20120:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/osborne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the breezeway next to classrooms. It creates an indoor/outdoor learning space.\u00a0", + "We replaced\u00a0older buildings containing asbestos with new architecturally-designed permanent modular buildings. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "We built an outdoor sensory learning space that connects to the library. This helps students to transition from learning inside to outside and includes a pergola, decking, steps, rocks and fencing.", + "\u200b\u200b\u200b\u200bWe\u00a0refurbished the school's gym. As part of the Education State vision, the Victorian Government has set a goal to increase pride and confidence in government schools.\u00a0 \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $393,125.", + "In the 2019\u201320 State Budget, the school received $7.984 million through the Permanent Modular School Buildings Program.", + "In 2018, $193,400 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "The school received $136,101 in the 2016-17 State Budget." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Osborne Primary School." + ], + "field_latitude": ["-38.2569207", "-38.25738"], + "field_latitude_longitude_value": ["-38.2569207,145.0396238"], + "field_latitude_value": ["-38.2569207"], + "field_longitude": ["145.0396238", "145.04"], + "field_longitude_value": ["145.0396238"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3934"], + "field_project_code": [ + "D3-01-2655", + "D2-01-2655", + "D1-01-2655", + "01-2655" + ], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2023", "Q4 2020", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q2 2019", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["120 Craigie Rd"], + "field_suburb": ["Mount Martha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20120], + "status": [true], + "title": ["Osborne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["abcfa0b5-56ed-4de5-a3bc-1ddfffe289b5"] + }, + "sort": ["Osborne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21095:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oscar-romero-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200b\u200bWe supported the construction of a\u00a0new Catholic primary school in Craigieburn West. Oscar Romero Catholic Primary School\u00a0is part of\u00a0Our Lady's\u00a0Parish Craigieburn and Roxburgh Park.\u00a0 Key features include: flexible learning spaces: multi-use environments to accommodate a range of needs such as performance areas, arts/crafts, science, instructional spaces for small and large groups, quite reflective sacred space, gathering space for parents, staff/admin facilities and teacher planning areas links from indoor to outdoor environments grounds designed for\u00a0passive and active play, shaded areas for learning and playing, and gardens for aesthetics and growing\u00a0produce a community gathering space" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2.5 million has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Oscar Romero Catholic Primary School" + ], + "field_latitude": ["-37.584353"], + "field_latitude_longitude_value": ["-37.584353,144.902747"], + "field_latitude_value": ["-37.584353"], + "field_longitude": ["144.902747"], + "field_longitude_value": ["144.902747"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["02-2218"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["1 MacKillop Street"], + "field_suburb": ["Craigieburn West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21095], + "status": [true], + "title": ["Oscar Romero Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c6c9537-5960-481c-bae8-5d806b2b455b"] + }, + "sort": ["Oscar Romero Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28139:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-help-christians-school-brunswick-east"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school with minor refurbishment works to general learning areas and an external staircase. Works also include repurposing the library into a STEM and multi-purpose learning area and installation of a new lift." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1.97 million" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady Help of Christians School (Brunswick East)." + ], + "field_latitude": ["-37.77645317642895"], + "field_latitude_longitude_value": [ + "-37.77645317642895,144.97784522609896" + ], + "field_latitude_value": ["-37.77645317642895"], + "field_longitude": ["144.97784522609896"], + "field_longitude_value": ["144.97784522609896"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3057"], + "field_project_code": ["01-0931"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["26 Miller St"], + "field_suburb": ["Brunswick East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28139], + "status": [true], + "title": ["Our Lady Help of Christians School (Brunswick East)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["53c98990-e3af-46c2-adb0-4c5129547dec"] + }, + "sort": ["Our Lady Help of Christians School (Brunswick East)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34786:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-help-christians-school-warrnambool-east"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school build a learning centre, with general learning areas, associated spaces and toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $5 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady Help of Christians School in Warrnambool East" + ], + "field_latitude": ["-38.38513265"], + "field_latitude_longitude_value": ["-38.38513265,142.5198606"], + "field_latitude_value": ["-38.38513265"], + "field_longitude": ["142.5198606"], + "field_longitude_value": ["142.5198606"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["02-1693"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["28 Selby Road"], + "field_suburb": ["Warrnambool East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34786], + "status": [true], + "title": ["Our Lady Help of Christians School (Warrnambool East)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5ae4730b-1aa2-4caa-ae57-8423ad6b1442"] + }, + "sort": ["Our Lady Help of Christians School (Warrnambool East)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21099:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-star-sea-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the expansion of the school with a second stage of construction.", + "\u200b\u200b\u200b\u200b\u200bWe supported the construction of\u00a0a new school within this\u00a0growth corridor. The new school includes 4 flexible classroom spaces with associated break out areas, a library and staff and administration\u00a0spaces. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $3,295,000 has been allocated to the school.", + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,800,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady Star of the Sea Primary School." + ], + "field_latitude": ["-38.46381", "-38.46381"], + "field_latitude_longitude_value": ["-38.46381,145.23979"], + "field_latitude_value": ["-38.46381"], + "field_longitude": ["145.23979", "145.23979"], + "field_longitude_value": ["145.23979"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3922"], + "field_project_code": ["D1-02-2222", "02-2222"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2019-20", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q4 2021", "Q2 2018"], + "field_start_date": ["Q4 2019", "Q3 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["6 Cowes-Rhyll Rd"], + "field_suburb": ["Cowes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21099], + "status": [true], + "title": ["Our Lady Star of the Sea Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8f961e54-a9d3-442a-b7bd-b5e8c4e33ecd"] + }, + "sort": ["Our Lady Star of the Sea Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21057:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-star-sea-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported Our Lady Star of the Sea School\u00a0to upgrade a multi-purpose building to include general learning and collaborative areas as well as staffing and storage spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $2,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady Star of the Sea School" + ], + "field_latitude": ["-38.261020"], + "field_latitude_longitude_value": ["-38.261020,144.540113"], + "field_latitude_value": ["-38.261020"], + "field_longitude": ["144.540113"], + "field_longitude_value": ["144.540113"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3226"], + "field_project_code": ["02-1833"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["13-29 John Dory Drive"], + "field_suburb": ["Ocean Grove"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21057], + "status": [true], + "title": ["Our Lady Star of the Sea School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bd3e62cd-2085-43b7-a640-7c4f9788744b"] + }, + "sort": ["Our Lady Star of the Sea School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20993:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-lourdes-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish\u00a0classrooms.\u00a0\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $600,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady of Lourdes School." + ], + "field_latitude": ["-37.85249"], + "field_latitude_longitude_value": ["-37.85249,145.00946"], + "field_latitude_value": ["-37.85249"], + "field_longitude": ["145.00946"], + "field_longitude_value": ["145.00946"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3181"], + "field_project_code": ["02-1176"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Wynnstay Rd"], + "field_suburb": ["Prahran East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20993], + "status": [true], + "title": ["Our Lady of Lourdes School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bc77f273-8624-4710-b122-f2cfba2f1859"] + }, + "sort": ["Our Lady of Lourdes School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21033:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-lourdes-school-bayswater"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade 3 general learning areas and student amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1.46 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady of Lourdes School (Bayswater)." + ], + "field_latitude": ["-37.8481721"], + "field_latitude_longitude_value": ["-37.8481721,145.2659594"], + "field_latitude_value": ["-37.8481721"], + "field_longitude": ["145.2659594"], + "field_longitude_value": ["145.2659594"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3153"], + "field_project_code": ["02-1645"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["23 Orange Gr"], + "field_suburb": ["Bayswater"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21033], + "status": [true], + "title": ["Our Lady of Lourdes School (Bayswater)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["366afb82-4738-4f72-9a23-0145a55afb78"] + }, + "sort": ["Our Lady of Lourdes School (Bayswater)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21008:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-assumption-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish buildings to create a Discovery Centre, specialist spaces and associated areas, and constructed outdoor learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1.98 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady of the Assumption School." + ], + "field_latitude": ["-37.9657454"], + "field_latitude_longitude_value": ["-37.9657454,145.0599302"], + "field_latitude_value": ["-37.9657454"], + "field_longitude": ["145.0599302"], + "field_longitude_value": ["145.0599302"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3192"], + "field_project_code": ["02-1505"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["9 Centre Dandenong Rd"], + "field_suburb": ["Cheltham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21008], + "status": [true], + "title": ["Our Lady of the Assumption School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5604e767-625b-4dcb-a114-1669426a6647"] + }, + "sort": ["Our Lady of the Assumption School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20991:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-immaculate-conception-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school replace 4 general learning areas with a new 2-storey building. The new facilities will include 10 general learning areas and staff and student toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady of the Immaculate Conception School." + ], + "field_latitude": ["-37.788967"], + "field_latitude_longitude_value": ["-37.788967,144.8346989"], + "field_latitude_value": ["-37.788967"], + "field_longitude": ["144.8346989"], + "field_longitude_value": ["144.8346989"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["02-1101"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["32 Station Pl"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20991], + "status": [true], + "title": ["Our Lady of the Immaculate Conception School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["da632ba4-83af-4ac4-8e88-98849e82fc3d"] + }, + "sort": ["Our Lady of the Immaculate Conception School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21005:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-sacred-heart-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade\u00a0the theatrette and associated areas. \u00a0\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $500,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady of the Sacred Heart College." + ], + "field_latitude": ["-37.92544"], + "field_latitude_longitude_value": ["-37.92544,145.03988"], + "field_latitude_value": ["-37.92544"], + "field_longitude": ["145.03988"], + "field_longitude_value": ["145.03988"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["02-1481"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q3 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["111 Jasper Rd"], + "field_suburb": ["Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21005], + "status": [true], + "title": ["Our Lady of the Sacred Heart College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["076ed2b0-cbe1-4c9b-b201-275be3b6ccac"] + }, + "sort": ["Our Lady of the Sacred Heart College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21097:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-lady-way-catholic-primary-school"], + "changed": ["2023-11-28T13:59:46+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the Our Lady of the Way Catholic Primary School build:12 general learning areasa communal learning areatoilets and other associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady of the Way Catholic Primary School." + ], + "field_latitude": ["-37.412982940673828"], + "field_latitude_longitude_value": [ + "-37.412982940673828,144.92596435546875" + ], + "field_latitude_value": ["-37.412982940673828"], + "field_longitude": ["144.92596435546875"], + "field_longitude_value": ["144.92596435546875"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3756"], + "field_project_code": ["02-2220"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["30 Alcantara Blvd"], + "field_suburb": ["Wallan East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21097], + "status": [true], + "title": ["Our Lady of the Way Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["af4525cc-dca6-462b-b663-0e391600c2e6"] + }, + "sort": ["Our Lady of the Way Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21022:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/our-ladys-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade their administration area.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $425,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Our Lady's School." + ], + "field_latitude": ["-36.37073"], + "field_latitude_longitude_value": ["-36.37073,146.31291"], + "field_latitude_value": ["-36.37073"], + "field_longitude": ["146.31291"], + "field_longitude_value": ["146.31291"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["02-1591"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["White St"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21022], + "status": [true], + "title": ["Our Lady's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cac43fad-1bfb-4b34-92cf-6981076f6cbb"] + }, + "sort": ["Our Lady's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26231:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ouyen-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-07-13T14:28:56+10:00"], + "field_about_project_processed": [ + "We are adding a new outdoor covered roof to existing twin playing courts." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$726,000 was reallocated from the 2021\u201322 capital program to the school, with a further $175,000 in 2023." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ouyen P-12 College." + ], + "field_latitude": ["-35.064"], + "field_latitude_longitude_value": ["-35.064,142.3208"], + "field_latitude_value": ["-35.064"], + "field_longitude": ["142.3208"], + "field_longitude_value": ["142.3208"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3490"], + "field_project_code": ["01-8220"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["1-35 Fuller St"], + "field_suburb": ["Ouyen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26231], + "status": [true], + "title": ["Ouyen P-12 College"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["67d31e5d-289e-4e33-812d-061a7f2a8d99"] + }, + "sort": ["Ouyen P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33038:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/overport-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We will be upgrading the school's soccer pitch and running track." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $582,000" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Overport Primary School" + ], + "field_latitude": ["-38.160488"], + "field_latitude_longitude_value": ["-38.160488,145.126972"], + "field_latitude_value": ["-38.160488"], + "field_longitude": ["145.126972"], + "field_longitude_value": ["145.126972"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3199"], + "field_project_code": ["01-4780"], + "field_project_title": [ + "Upgrade and Modernisation - Soccer Pitch and Running Track" + ], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["Towerhill Road"], + "field_suburb": ["Frankston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33038], + "status": [true], + "title": ["Overport Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["8f30f14e-1b78-4bf6-8808-6fc376ef07d3"] + }, + "sort": ["Overport Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36995:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oxley-kids"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-20T11:54:48+11:00"], + "field_about_project_processed": [ + "We are building 2 kindergarten rooms at the kindergarten. This will provide space for up to 44 more local children per day. These changes will help expand free kindergarten, as part of the Best Start, Best Life reforms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 4 of the 2023 Building Blocks Capacity Grant, $2,000,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build of Sebastopol Community Hub (interim name)" + ], + "field_latitude": ["-37.7629893"], + "field_latitude_longitude_value": ["-37.7629893,145.305622"], + "field_latitude_value": ["-37.7629893"], + "field_longitude": ["145.305622"], + "field_longitude_value": ["145.305622"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3116"], + "field_project_code": ["15-5393"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["15\u201349 Old Melbourne Rd"], + "field_suburb": ["Chirnside Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36995], + "status": [true], + "title": ["Oxley Kids"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8f9c6794-96ec-4e91-a5c5-520d8d9a16e9"] + }, + "sort": ["Oxley Kids"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19987:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oxley-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet block to improve amenity, cleanliness and hygiene.", + "\u200b\u200bWe developed open learning spaces suitable for 21st century learning.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $499,625.", + "In 2016, $102,300 was allocated to the school as part of the Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Oxley Primary School." + ], + "field_latitude": ["-36.4414131", "-36.44141"], + "field_latitude_longitude_value": ["-36.4414131,146.3611123"], + "field_latitude_value": ["-36.4414131"], + "field_longitude": ["146.3611123", "146.36111"], + "field_longitude_value": ["146.3611123"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3678"], + "field_project_code": ["D1-01-1399", "01-1399"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2022", "Q2 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1050 Wangaratta-Whitfield Rd"], + "field_suburb": ["Oxley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19987], + "status": [true], + "title": ["Oxley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["251de2a9-39cb-45d1-8353-d324a8d922bf"] + }, + "sort": ["Oxley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21121:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/padua-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe supported the school to\u00a0build\u00a016\u00a0general learning areas and associated spaces at the Mornington Campus.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2,000,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Padua College." + ], + "field_latitude": ["-38.21925"], + "field_latitude_longitude_value": ["-38.21925,145.07351"], + "field_latitude_value": ["-38.21925"], + "field_longitude": ["145.07351"], + "field_longitude_value": ["145.07351"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["02-501"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q4 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["62 Oakbank Rd"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21121], + "status": [true], + "title": ["Padua College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["307d3660-8c58-448c-8412-20459429ab83"] + }, + "sort": ["Padua College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20718:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-consolidated-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school, including creating a dedicated space for the disengaged students program and upgrading the junior toilet block." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pakenham Consolidated School." + ], + "field_latitude": ["-38.0701789855957"], + "field_latitude_longitude_value": [ + "-38.0701789855957,145.47410583496094" + ], + "field_latitude_value": ["-38.0701789855957"], + "field_longitude": ["145.47410583496094"], + "field_longitude_value": ["145.47410583496094"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["01-6243"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Rundell Way"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20718], + "status": [true], + "title": ["Pakenham Consolidated School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["31d1c153-34ec-44e8-ae75-1efb350d47bf"] + }, + "sort": ["Pakenham Consolidated School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20589:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-hills-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to install new play equipment in two playgrounds, creating an improved play environment.", + "We built\u00a0an integrated multi-agency service hub 'Parentzone'. This space is\u00a0an integrated community hub for parents, children and the broader community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $107,165", + "This school has received a total of $2,309,884 from the Shared Facilities Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Pakenham Hills Primary School" + ], + "field_latitude": ["-38.0606467", "-38.060626"], + "field_latitude_longitude_value": ["-38.0606467,145.494359"], + "field_latitude_value": ["-38.0606467"], + "field_longitude": ["145.494359", "145.494421"], + "field_longitude_value": ["145.494359"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["D1-01-5370", "01-5370"], + "field_project_title": [ + "Minor Capital Works Fund", + "Shared Facilities Fund" + ], + "field_q_complete": ["Q4 2021", "Q4 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["15 Kennedy Rd"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20589], + "status": [true], + "title": ["Pakenham Hills Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5147316f-2aed-4ade-9f56-81127d3346e7"] + }, + "sort": ["Pakenham Hills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21210:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Cardinia Shire Council upgraded facilities at Pakenham\u00a0Kindergarten\u00a0to increase capacity. The extended kindergarten service now\u00a0caters for extended hours, wrap around care and facilitated playgroups.\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Pakenham Kindergarten" + ], + "field_latitude": ["-38.07514"], + "field_latitude_longitude_value": ["-38.07514,145.47816"], + "field_latitude_value": ["-38.07514"], + "field_longitude": ["145.47816"], + "field_longitude_value": ["145.47816"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["15-134"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Main St"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21210], + "status": [true], + "title": ["Pakenham Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["94268cdb-0138-495b-a3e2-ce931c269306"] + }, + "sort": ["Pakenham Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25381:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-lakeside-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are undertaking drainage works across the eastern end of the school, including replacing stormwater pipes and pits. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $856,517 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pakenham Lakeside Primary School" + ], + "field_latitude": ["-38.068457"], + "field_latitude_longitude_value": ["-38.068457,145.438998"], + "field_latitude_value": ["-38.068457"], + "field_longitude": ["145.438998"], + "field_longitude_value": ["145.438998"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["01-5504"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["23 Shearwater Drive"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25381], + "status": [true], + "title": ["Pakenham Lakeside Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b151f82f-aaa1-4d18-8367-9d2b73519ee0"] + }, + "sort": ["Pakenham Lakeside Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33006:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-north-west-primary-school-interim-name"], + "changed": ["2023-08-21T12:32:20+10:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We're building a new primary school in Pakenham. It will open in 2025 with places for up to 525 students. This will help the growing local population get a great education close to home.Subscribe to our mailing list for updates.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Pakenham North West Primary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["01-5615"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33006], + "status": [true], + "title": ["Pakenham North West Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["1a7446fa-5412-4f0e-bd86-e128a3958642"] + }, + "sort": ["Pakenham North West Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20646:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Pakenham Primary School\u00a0opened in Term 1, 2019. \u200b The school received an additional $9.9 million in the 2018\u201319 State Budget for Stage 2 of the project -\u00a0a performing arts and physical education facility.\u00a0 This school\u00a0won\u00a0the Minister's Award for Excellence in the\u00a02019 Victorian School Design Awards. Nearby Early Learning Hollins Children's Centre is located next to Pakenham Primary School, which may help\u00a0local\u00a0children make\u00a0a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017\u201318 State Budget allocated $13.806 million towards the school. The school received an additional $9.9 million in the 2018\u201319 State Budget for construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Pakenham Primary School" + ], + "field_latitude": ["-38.064257"], + "field_latitude_longitude_value": ["-38.064257,145.510209"], + "field_latitude_value": ["-38.064257"], + "field_longitude": ["145.510209"], + "field_longitude_value": ["145.510209"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["01-5527"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["50 Atlantic Drive"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20646], + "status": [true], + "title": ["Pakenham Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["99b7145c-72f6-4fc7-8144-6a3b4e213314"] + }, + "sort": ["Pakenham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33039:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We will be upgrading classrooms at the college, including those in Block A." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $11.3 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pakenham Secondary College" + ], + "field_latitude": ["-38.068997"], + "field_latitude_longitude_value": ["-38.068997,145.471002"], + "field_latitude_value": ["-38.068997"], + "field_longitude": ["145.471002"], + "field_longitude_value": ["145.471002"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["01-8223"], + "field_project_title": ["Upgrade and Modernisation - Classrooms"], + "field_q_complete": ["Q3 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["1020 Princes Highway"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33039], + "status": [true], + "title": ["Pakenham Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a08ee89c-4339-48d1-b1de-0771a3aeffee"] + }, + "sort": ["Pakenham Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20640:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pakenham-springs-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We laid synthetic surfacing and installed drainage in the oval so it is usable year-round and in wet weather.", + "We supported the\u00a0building of an indoor/outdoor space. It includes stations to teach students self-calming and self-management strategies through motion, reading and drawing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $340,165.", + "In 2018, $130,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Pakenham Springs Primary School." + ], + "field_latitude": ["-38.071060180664063", "-38.084508"], + "field_latitude_longitude_value": [ + "-38.071060180664063,145.48779296875" + ], + "field_latitude_value": ["-38.071060180664063"], + "field_longitude": ["145.48779296875", "145.470076"], + "field_longitude_value": ["145.48779296875"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["D1-01-5507", "01-5507"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2023", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["5 Livingstone Blvd"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20640], + "status": [true], + "title": ["Pakenham Springs Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["46503f78-7033-4490-bb2a-2dd53e37ad06"] + }, + "sort": ["Pakenham Springs Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22656:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/panorama-heights-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We have modernised the main office to create larger, more functional, working and storage spaces. We removed walls and installed built-in workstations and cupboards to create a large, central meeting area. We also upgraded the children's toilets, and installed new bag cubbies to improve storage, accessibility and to remove trip hazards.", + "We installed larger play equipment to support the children's learning and development. This includes swings, slides, forts and overhead climbing activities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project.", + "In Round 2 of the 2021\u201322 Building Blocks Improvement Grant, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Panorama Heights Preschool." + ], + "field_latitude": ["-37.72481821", "-37.72476319"], + "field_latitude_longitude_value": ["-37.72481821,145.1301672"], + "field_latitude_value": ["-37.72481821"], + "field_longitude": ["145.1301672", "145.1301671"], + "field_longitude_value": ["145.1301672"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3094"], + "field_project_code": ["15-492", "D1-15-492"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant - Minor Infrastructure" + ], + "field_q_complete": ["Q4 2022", "Q2 2022"], + "field_start_date": ["Q3 2021", "Q1 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["3 Mitchell Av"], + "field_suburb": ["Montmorency"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22656], + "status": [true], + "title": ["Panorama Heights Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5f034760-38e8-41ca-82a6-28cdbcf2e8dc"] + }, + "sort": ["Panorama Heights Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20559:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/park-ridge-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are replacing roof sheeting and repairing skylights. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We helped the school upgrade its playground and install new play equipment.", + "We helped redevelop\u00a0parts of the existing garden and playground, and\u00a0add\u00a0a soft-fall fitness track and a sensory/de-escalation area. The sensory garden\u00a0includes a timber deck, shade sails and plants, and the fitness trail includes equipment stations." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $371,729 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $144,125.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Park Ridge Primary School" + ], + "field_latitude": ["-37.918414", "-37.9217093001151", "-37.918414"], + "field_latitude_longitude_value": ["-37.918414,145.262461"], + "field_latitude_value": ["-37.918414"], + "field_longitude": ["145.262461", "145.263696649739", "145.262461"], + "field_longitude_value": ["145.262461"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3178"], + "field_project_code": ["D2-01-5281", "D1-01-5281", "01-5281"], + "field_project_title": [ + "Minor Capital Works Fund \u2013 2022\u201323 State Budget", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2024", "Q4 2021", "Q4 2019"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q4 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Wentworth Av"], + "field_suburb": ["Rowville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20559], + "status": [true], + "title": ["Park Ridge Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["64cc726c-0404-4a3e-a378-81f7a2719d90"] + }, + "sort": ["Park Ridge Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22628:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/park-street-child-care-co-op"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We extended the kindergarten room to create more places for local children. We installed new art sinks, and upgraded bathrooms and nappy changing facilities. We also improved the centre's accessibility by removing steps, leveling flooring, improving ramp access and adding an accessible adult toilet." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $497,150 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Park Street Childcare and Kindergarten Cooperative" + ], + "field_latitude": ["-37.7769775"], + "field_latitude_longitude_value": ["-37.7769775,144.954915"], + "field_latitude_value": ["-37.7769775"], + "field_longitude": ["144.954915"], + "field_longitude_value": ["144.954915"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3056"], + "field_project_code": ["15-3584"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["785 Park St"], + "field_suburb": ["Brunswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22628], + "status": [true], + "title": ["Park Street Childcare and Kindergarten Cooperative"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a63c806e-6e82-45e6-9ec1-9ed09628882f"] + }, + "sort": ["Park Street Childcare and Kindergarten Cooperative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22668:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parkdale-family-and-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We created outdoor spaces for children to play with sand, water and mud. The spaces are cleaner and safer with clear division of different play areas. There is also a cubby and a larger area for group activities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $112,500 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Parkdale Family and Children's Centre" + ], + "field_latitude": ["-37.98960368"], + "field_latitude_longitude_value": ["-37.98960368,145.0943442"], + "field_latitude_value": ["-37.98960368"], + "field_longitude": ["145.0943442"], + "field_longitude_value": ["145.0943442"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["15-5448"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["122 Warren Rd"], + "field_suburb": ["Mordialloc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22668], + "status": [true], + "title": ["Parkdale Family and Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9db9feaf-84dc-441e-95b0-a65b30b80323"] + }, + "sort": ["Parkdale Family and Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22625:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parkdale-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded Parkdale Preschool with a new educational kitchen, breakout room, administrative space, laundry and toilets. The redevelopment also improved the connection between the indoor and outdoor spaces, while retaining the kindergarten\u2019s unique character and community focus.", + "We are re-concreting the carpark and repainting the building's exterior. We'll also install a metal mural to create a more welcoming environment. We\u2019re updating the rear outdoor area with a timber pergola. This will provide more sun protection and more spaces for outdoor play all year round." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $495,000 was allocated to this project.", + "In the 2022-23 Building Blocks Improvement Grant round, $115,712 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Parkdale Preschool" + ], + "field_latitude": ["-37.99320441", "-37.99320441"], + "field_latitude_longitude_value": ["-37.99320441,145.0755064"], + "field_latitude_value": ["-37.99320441"], + "field_longitude": ["145.0755064", "145.0755064"], + "field_longitude_value": ["145.0755064"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["15-905", "D1-15-905"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q2 2022", "Q4 2023"], + "field_start_date": ["Q3 2021", "Q4 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["14 Alameda Pl"], + "field_suburb": ["Parkdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22625], + "status": [true], + "title": ["Parkdale Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["72fa9b91-e597-4a57-8197-ef998b9bd954"] + }, + "sort": ["Parkdale Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20267:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parkdale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished existing prep classrooms to create open spaces for 21st century learning. The adjacent toilet block was also refurbished.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $500,000 was allocated to the school." + ], + "field_funding_type_name": ["School Improvement Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Parkdale Primary School" + ], + "field_latitude": ["-37.99287"], + "field_latitude_longitude_value": ["-37.99287,145.0829"], + "field_latitude_value": ["-37.99287"], + "field_longitude": ["145.0829"], + "field_longitude_value": ["145.0829"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["01-4171"], + "field_project_title": ["School Improvement Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["305-311 Nepean Highway"], + "field_suburb": ["Parkdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20267], + "status": [true], + "title": ["Parkdale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["149c56d6-9b99-4aa5-bad3-418cf6533d5f"] + }, + "sort": ["Parkdale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20839:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parkdale-secondary-college"], + "changed": ["2023-07-20T16:50:06+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the year 7 and 8 centre. The centre includes multi-use workshop spaces and amenities. We refurbished the first aid facilities, removed the remaining light timber construction wings, and the built new hardcourts." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $966,800. In 2020, the school received $8.70 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Parkdale Secondary College" + ], + "field_latitude": ["-38.00044"], + "field_latitude_longitude_value": ["-38.00044,145.09107"], + "field_latitude_value": ["-38.00044"], + "field_longitude": ["145.09107"], + "field_longitude_value": ["145.09107"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["01-8225"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Warren Road"], + "field_suburb": ["Mordialloc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20839], + "status": [true], + "title": ["Parkdale Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["85b01f13-0fa1-4df1-9046-29283469c4a0"] + }, + "sort": ["Parkdale Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20605:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parkhill-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade this school to give students better learning opportunities.", + "We transformed the school\u2019s tired old classrooms and facilities into the modern learning environments students and staff need to achieve their best. We replaced the\u00a0multipurpose hall and toilets with a\u00a0competition-sized gymnasium, and upgraded\u00a0music and science spaces.", + "We replaced\u00a0relocatable classrooms with permanent facilities creating new flexible learning precincts, alongside a new arts space and landscaping. \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $5.3 million", + "In the 2019\u201320 State Budget, the school received $4 million.", + "In the 2016\u201317 State Budget, $5.3 million has been allocated to the school. In the 2015\u201316 State Budget, $449,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Parkhill Primary School" + ], + "field_latitude": ["-37.865", "-37.865"], + "field_latitude_longitude_value": ["-37.865,145.10508"], + "field_latitude_value": ["-37.865"], + "field_longitude": ["145.10508", "145.1050799"], + "field_longitude_value": ["145.10508"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3147"], + "field_project_code": ["D2-01-5416", "D1-01-5416", "01-5416"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation - Gymnasium, Music and Science Spaces", + "Upgrade and Modernisation - New Arts Space & Landscaping" + ], + "field_q_complete": ["Q1 2026", "Q2 2022", "Q2 2018"], + "field_start_date": ["Q2 2023", "Q2 2019"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["4a Parkhill Drive"], + "field_suburb": ["Ashwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20605], + "status": [true], + "title": ["Parkhill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d4830d75-9604-43e8-acf8-6c169bba65ae"] + }, + "sort": ["Parkhill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22649:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parklands-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are refurbishing the under-utilised community room and office space so that it can be used as an additional playroom with bathrooms. The area will also include an office space and storeroom. This will allow Parklands Preschool to offer kindergarten for three-year-olds and a space for playgroups." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $500,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Parklands Preschool" + ], + "field_latitude": ["-38.22209541"], + "field_latitude_longitude_value": ["-38.22209541,146.433578"], + "field_latitude_value": ["-38.22209541"], + "field_longitude": ["146.433578"], + "field_longitude_value": ["146.433578"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3840"], + "field_project_code": ["15-PARKP"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["121\u2013129 Bridle Rd"], + "field_suburb": ["Morwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22649], + "status": [true], + "title": ["Parklands Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3e696836-dea5-4864-9650-db65b8d9ba09"] + }, + "sort": ["Parklands Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20388:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parkmore-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an inclusive playground, which included new play and sensory equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Parkmore Primary School" + ], + "field_latitude": ["-37.843759"], + "field_latitude_longitude_value": ["-37.843759,145.176491"], + "field_latitude_value": ["-37.843759"], + "field_longitude": ["145.176491"], + "field_longitude_value": ["145.176491"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3131"], + "field_project_code": ["01-4881"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["38-54 Jolimont Road"], + "field_suburb": ["Forest Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20388], + "status": [true], + "title": ["Parkmore Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["60d41be5-0a92-45af-bb3c-0dee837f30d0"] + }, + "sort": ["Parkmore Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20373:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parktone-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school by building a new library. We also moved the relocatable buildings.", + "We constructed\u00a0classrooms and a new multi-purpose hall. \u200b", + "We installed acoustic materials in the stadium.", + "We\u00a0built a student lounge with sensory equipment, including a crash mat, interactive liquid tiles, blinds and dimmer lighting." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $3.466 million.", + "In the 2016\u201317 State Budget, $4 million was allocated to the school.", + "In the 2020 Minor Capital Works Fund, the school was allocated $377,165.", + "In 2018, $195,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Parktone Primary School" + ], + "field_latitude": [ + "-37.992362976074219", + "-37.98599", + "-37.9873099501887" + ], + "field_latitude_longitude_value": [ + "-37.992362976074219,145.07542419433594" + ], + "field_latitude_value": ["-37.992362976074219"], + "field_longitude": [ + "145.07542419433594", + "145.0814399", + "145.088760949925" + ], + "field_longitude_value": ["145.07542419433594"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": [ + "D2-01-4843", + "01-4843", + "D3-01-4843", + "D1-01-4843" + ], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2022", "Q1 2019", "Q2 2022", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["Robert St"], + "field_suburb": ["Parkdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20373], + "status": [true], + "title": ["Parktone Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5e3a5a7f-bfe7-4caf-a73f-286ebe43dbde"] + }, + "sort": ["Parktone Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20628:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/parkwood-green-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $10 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Parkwood Green Primary School." + ], + "field_latitude": ["-37.69789"], + "field_latitude_longitude_value": ["-37.69789,144.744637"], + "field_latitude_value": ["-37.69789"], + "field_longitude": ["144.744637"], + "field_longitude_value": ["144.744637"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3037"], + "field_project_code": ["01-5480"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["178 Community Hub"], + "field_suburb": ["Hillside"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20628], + "status": [true], + "title": ["Parkwood Green Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7c73e683-ba8e-48c7-a19a-6d5b2eae82e5"] + }, + "sort": ["Parkwood Green Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34332:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pascoe-vale-community-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-08-01T16:05:01+10:00"], + "field_about_project_processed": [ + "We\u2019re upgrading and expanding Pascoe Vale Community Centre. We\u2019ll expand the classroom, and build a new office space and staff toilet. We\u2019re also improving the yard to create new places for children to learn and play outdoors. This upgrade will create more than 40 new kindergarten places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received $400,000 as part of the Building Blocks Partnership between the State Government and Merri-Bek City Council. The Victorian Government has provided $10.7 million to support 11 projects that will create 329 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build at Pascoe Vale Community Centre." + ], + "field_latitude": ["-37.72919144"], + "field_latitude_longitude_value": ["-37.72919144,144.9373978"], + "field_latitude_value": ["-37.72919144"], + "field_longitude": ["144.9373978"], + "field_longitude_value": ["144.9373978"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["15-PVCC"], + "field_project_title": ["Building Blocks Capacity Grant"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["7 Prospect Street"], + "field_suburb": ["Pascoe Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34332], + "status": [true], + "title": ["Pascoe Vale Community Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2d059873-9ced-4007-ab12-72a6a0b0a1e7"] + }, + "sort": ["Pascoe Vale Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20840:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pascoe-vale-girls-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our upgrade of Pascoe Vale Girls Secondary College by building a new arts and technology centre.", + "We upgraded Pascoe Vale Secondary College, including building a performing arts centre that the school shares with its community. We\u00a0also provided\u00a0students with new food technology and music facilities, and renovated\u00a0the sports hall.", + "We resurfaced the school\u2019s oval. The Victorian Government has set a goal to increase pride and confidence in government schools. The School Pride and Sports Fund is one way of achieving that goal. Funding was provided for projects under $1 million, helping students, teachers and the community to feel proud of their school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $11.944 million.", + "In the 2018\u201319 State Budget $2.3 million was allocated to the school.", + "The school was allocated $200,000 from Round 3 of the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Pascoe Vale Girls Secondary College." + ], + "field_latitude": ["-37.7171982501662", "-37.718090", "-37.71738"], + "field_latitude_longitude_value": [ + "-37.7171982501662,144.933681799945" + ], + "field_latitude_value": ["-37.7171982501662"], + "field_longitude": ["144.933681799945", "144.934400", "144.93546"], + "field_longitude_value": ["144.933681799945"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["D2-01-8227", "D1-01-8227", "01-8227"], + "field_project_title": [ + "Upgrade and Modernisation - Arts and Technology Centre", + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2024", "Q4 2020", "Q2 2018"], + "field_start_date": ["Q2 2021", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Lake Avenue"], + "field_suburb": ["Pascoe Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20840], + "status": [true], + "title": ["Pascoe Vale Girls Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c1bb1924-a0c2-4101-9702-8c61dfd4c6b4"] + }, + "sort": ["Pascoe Vale Girls Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20334:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pascoe-vale-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a sensory garden that is\u00a0designed to promote mindfulness." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $91,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pascoe Vale North Primary School" + ], + "field_latitude": ["-37.72149"], + "field_latitude_longitude_value": ["-37.72149,144.95053"], + "field_latitude_value": ["-37.72149"], + "field_longitude": ["144.95053"], + "field_longitude_value": ["144.95053"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["01-4731"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Kent Rd"], + "field_suburb": ["Pascoe Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20334], + "status": [true], + "title": ["Pascoe Vale North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["45a8f56e-f013-4f46-9069-23e50d4393db"] + }, + "sort": ["Pascoe Vale North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20164:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pascoe-vale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade we will build a competition-grade gym. We will also landscape the grounds and build a new playground.", + "We delivered the next stage of the school's master plan. We built a new STEAM (science, technology, engineering, arts and maths) centre. We moved two relocatable buildings and the soccer pitch to open up the centre of the school.We delivered:state-of-the-art teaching and learning spacesan environmentally sustainable buildinglandscaping.\u00a0", + "We extended Building A, to create new administration and staff spaces, and\u00a0refurbished\u00a0classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $7.794 million.", + "In the 2020\u201321 State Budget, the school received $7.873 million.", + "In the 2018\u201319 State Budget $3 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Pascoe Vale Primary School." + ], + "field_latitude": ["-37.731225", "-37.724700927734375", "-37.730759"], + "field_latitude_longitude_value": ["-37.731225,144.937255"], + "field_latitude_value": ["-37.731225"], + "field_longitude": ["144.937255", "144.93583679199219", "144.937546"], + "field_longitude_value": ["144.937255"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["D2-01-3081", "D1-01-3081", "01-3081"], + "field_project_title": [ + "Upgrade and Modernisation \u2013\u00a0Gymnasium", + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation - Building A" + ], + "field_q_complete": ["Q1 2025", "Q3 2023", "Q4 2020"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q2 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["362 Gaffney Street"], + "field_suburb": ["Pascoe Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20164], + "status": [true], + "title": ["Pascoe Vale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["47f6adb6-af68-467a-b28b-638064773cee"] + }, + "sort": ["Pascoe Vale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20325:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pascoe-vale-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new learning centre with three neighbourhoods (six teaching spaces) and an art room. The learning neighbourhoods are supported by areas for withdrawal, resources and staff. We also refurbished the existing administration building to create a welcoming foyer and landscaped entrance on Reynard Street. This project replaced outdated facilities with high quality, flexible learning spaces and increased the connection with indoor and outdoor environments.\u200b", + "We built a school hall, support spaces, and playground. This added to the extensive upgrades we completed in 2018." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $3.604 million was allocated to the school.", + "In the 2019\u201320 State Budget, the school received $100,000. In 2019\u201320, the school received $170,000 from the School Pride and Sports Fund. In 2020, the school received $1.23 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Pascoe Vale South Primary School." + ], + "field_latitude": ["-37.74625", "-37.74625"], + "field_latitude_longitude_value": ["-37.74625,144.9355799"], + "field_latitude_value": ["-37.74625"], + "field_longitude": ["144.9355799", "144.93558"], + "field_longitude_value": ["144.9355799"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["01-4704", "D1-01-4704"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": ["Q4 2018", "Q1 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["411-429 Reynard St"], + "field_suburb": ["Pascoe Vale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20325], + "status": [true], + "title": ["Pascoe Vale South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d5c37670-ced8-42a3-9eb6-ebb0707b7cda"] + }, + "sort": ["Pascoe Vale South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26562:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Patterson-Drive-Kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-08-01T15:04:53+10:00"], + "field_about_project_processed": [ + "We're building a new modular kindergarten at Donnybrook Primary School.The new building will open in Term 1, 2024 and will provide 33 approved kindergarten places for the growing community.\u00a0Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families.\u00a0This kindergarten was formerly known as Donnybrook Primary School Kindergarten and Murnong Kindergarten.EnrolmentAll enrolment enquiries will be managed by City of Whittlesea." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Patterson Drive Kindergarten (interim name)" + ], + "field_latitude": ["-37.535980"], + "field_latitude_longitude_value": ["-37.535980,144.996700"], + "field_latitude_value": ["-37.535980"], + "field_longitude": ["144.996700"], + "field_longitude_value": ["144.996700"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["15-HHPSK"], + "field_project_title": ["Kindergarten on a school site"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["181-183 Olivine Boulevard"], + "field_suburb": ["Donnybrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26562], + "status": [true], + "title": ["Patterson Drive Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["b05bef25-8698-4386-b08c-395e6ab1c863"] + }, + "sort": ["Patterson Drive Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20513:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/patterson-lakes-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded student and staff facilities. This included: expanding the school's administration area, adding 2 new classrooms and refurbishing the STEM (Science, Technology, Engineering and Maths) rooms and library. These works ensured students learn in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $2.2 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Patterson Lakes Primary School." + ], + "field_latitude": ["-38.068779"], + "field_latitude_longitude_value": ["-38.068779,145.145248"], + "field_latitude_value": ["-38.068779"], + "field_longitude": ["145.145248"], + "field_longitude_value": ["145.145248"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3197"], + "field_project_code": ["01-5190"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["130-148 Gladesville Blvd"], + "field_suburb": ["Patterson Lakes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20513], + "status": [true], + "title": ["Patterson Lakes Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["21dce838-05a3-41e2-bf79-e4493b1b4559"] + }, + "sort": ["Patterson Lakes Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20893:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/patterson-river-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We demolished old administration and home economics rooms and built new classrooms and facilities. We also upgraded the science block and general purpose classrooms.", + "We\u00a0refurbished\u00a0the senior centre, including classrooms, staff facilities and student amenities.\u00a0\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $800,000. In 2020, the school received $7.2 million.", + "In the 2015-16 State Budget, $1 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Patterson River Secondary College" + ], + "field_latitude": ["-38.08352", "-38.08352"], + "field_latitude_longitude_value": ["-38.08352,145.13426"], + "field_latitude_value": ["-38.08352"], + "field_longitude": ["145.13426", "145.13426"], + "field_longitude_value": ["145.13426"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["D1-01-8725", "01-8725"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["78 - 98 Eel Race Road"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20893], + "status": [true], + "title": ["Patterson River Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3733c638-f26a-4137-afc2-1e594742c957"] + }, + "sort": ["Patterson River Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33025:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/paynesville-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Paynesville Primary School" + ], + "field_latitude": ["-37.91128"], + "field_latitude_longitude_value": ["-37.91128,147.714701"], + "field_latitude_value": ["-37.91128"], + "field_longitude": ["147.714701"], + "field_longitude_value": ["147.714701"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3880"], + "field_project_code": ["01-2343"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["31 - 47 Ashley Street"], + "field_suburb": ["Paynesville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33025], + "status": [true], + "title": ["Paynesville Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["28d392cb-05e4-4fb8-a136-2e5bee1f330e"] + }, + "sort": ["Paynesville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20412:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pembroke-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build an outdoor inclusive learning space, including new play equipment and a yarning circle." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $65,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pembroke Primary School" + ], + "field_latitude": ["-37.7887774500004"], + "field_latitude_longitude_value": [ + "-37.7887774500004,145.329045650008" + ], + "field_latitude_value": ["-37.7887774500004"], + "field_longitude": ["145.329045650008"], + "field_longitude_value": ["145.329045650008"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3138"], + "field_project_code": ["01-4937"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Pembroke Rd"], + "field_suburb": ["Mooroolbark"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20412], + "status": [true], + "title": ["Pembroke Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cc95bcc7-6809-455f-b2a1-d6abc269ff41"] + }, + "sort": ["Pembroke Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20225:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/penders-grove-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an outdoor area with therapeutic natural elements such as plants, tactile foliage and fragrant flowers, and interactive kinetic play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $120,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Penders Grove Primary School" + ], + "field_latitude": ["-37.754517"], + "field_latitude_longitude_value": ["-37.754517,145.01427"], + "field_latitude_value": ["-37.754517"], + "field_longitude": ["145.01427"], + "field_longitude_value": ["145.01427"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3071"], + "field_project_code": ["01-3806"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["370 Victoria Rd"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20225], + "status": [true], + "title": ["Penders Grove Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f5329ab2-ecbb-48d6-bef6-7f845fef607e"] + }, + "sort": ["Penders Grove Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24986:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/peninsula-specialist-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will construct a new classroom building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $9.479 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Peninsula Specialist College" + ], + "field_latitude": ["-38.341841"], + "field_latitude_longitude_value": ["-38.341841,145.010108"], + "field_latitude_value": ["-38.341841"], + "field_longitude": ["145.010108"], + "field_longitude_value": ["145.010108"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3936"], + "field_project_code": ["01-5230"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2026"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["25 Old White Hill Road"], + "field_suburb": ["Dromana"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24986], + "status": [true], + "title": ["Peninsula Specialist College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["461b9217-350a-4191-8ae4-25a6f5ad163e"] + }, + "sort": ["Peninsula Specialist College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21071:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/penola-catholic-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the college to construct a 2-storey modular building including general learning areas, staff areas, breakout spaces, amenities and associated areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Penola Catholic College." + ], + "field_latitude": ["-37.6887516"], + "field_latitude_longitude_value": ["-37.6887516,144.9196683"], + "field_latitude_value": ["-37.6887516"], + "field_longitude": ["144.9196683"], + "field_longitude_value": ["144.9196683"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["02-1949"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["29 GIbson St"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21071], + "status": [true], + "title": ["Penola Catholic College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1d91c3e6-6d05-48a7-9a8c-bc08283edd5a"] + }, + "sort": ["Penola Catholic College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36659:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/penshurst-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $183,184 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Penshurst Primary School" + ], + "field_latitude": ["-37.879184"], + "field_latitude_longitude_value": ["-37.879184,142.291326"], + "field_latitude_value": ["-37.879184"], + "field_longitude": ["142.291326"], + "field_longitude_value": ["142.291326"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3289"], + "field_project_code": ["01-486"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["87 Ritchie Street"], + "field_suburb": ["Penshurst"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36659], + "status": [true], + "title": ["Penshurst Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["6e1a9c9f-5e3b-4883-aae1-eb3582fa8587"] + }, + "sort": ["Penshurst Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24598:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/perridak-burron-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping the Ballarat and District Aboriginal Co-operative plan a 100-place kindergarten in Miners Rest. The centre would offer kindergarten to Aboriginal and non-Aboriginal families. Long day care, family services and community programs will also be offered to help connect families to early childhood education and services. This planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $81,700 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of Perridak Burron Early Learning Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-PB"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24598], + "status": [true], + "title": ["Perridak Burron Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c28d5913-775f-4768-853d-fd4267967d71"] + }, + "sort": ["Perridak Burron Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28681:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/perry-street-child-care-centre-and-elizabeth-gorman-memorial-kindergarten-inc" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are building a gardening studio with undercover storage. Children will be able to spend more time outdoors, learning about gardening. Families will gain a secure undercover area to park bikes and prams." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $111,321.04 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Perry Street Child Care Centre and Elizabeth Gorman Memorial Kindergarten Inc." + ], + "field_latitude": ["-37.77188344"], + "field_latitude_longitude_value": ["-37.77188344,145.024308"], + "field_latitude_value": ["-37.77188344"], + "field_longitude": ["145.024308"], + "field_longitude_value": ["145.024308"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3078"], + "field_project_code": ["15-4843"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["129 Perry St"], + "field_suburb": ["Fairfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28681], + "status": [true], + "title": [ + "Perry Street Child Care Centre and Elizabeth Gorman Memorial Kindergarten Inc" + ], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0b1f2561-2a88-4b1e-bbfc-ef2c575bff33"] + }, + "sort": [ + "Perry Street Child Care Centre and Elizabeth Gorman Memorial Kindergarten Inc" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20743:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/peter-lalor-secondary-college"], + "changed": ["2023-08-03T11:05:27+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We worked with the college on long-term redevelopment plans. This included working with the Northern School for Autism campus and other community and education organisations sharing the school grounds.\u00a0In addition to planning, the funding allowed us to deliver the first stage of the project. We built general and specialist learning spaces with collaborative areas. We built outdoor courts, and a shade structure that could be used for outdoor learning. We also completed landscaping as part of the project." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $8.2 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Peter Lalor Secondary College." + ], + "field_latitude": ["-37.665985107421875"], + "field_latitude_longitude_value": [ + "-37.665985107421875,145.00874328613281" + ], + "field_latitude_value": ["-37.665985107421875"], + "field_longitude": ["145.00874328613281"], + "field_longitude_value": ["145.00874328613281"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3075"], + "field_project_code": ["01-7217"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["35 Duncan Road"], + "field_suburb": ["Lalor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20743], + "status": [true], + "title": ["Peter Lalor Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["937348c9-cdb4-47e9-b9e2-23194ef728bd"] + }, + "sort": ["Peter Lalor Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21290:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/phillip-island-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped expand Phillip Island Early Learning Centre in preparation for the roll-out of subsidised three-year-old kindergarten. We helped add a new room to the existing Long Day Care and sessional kindergarten building to accommodate 44 new places. The building will offer an inclusive environment that meets the needs of every child and the community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 20\u201321 Building Blocks Capacity Grants $657,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Phillip Island Early Learning Centre" + ], + "field_latitude": ["-38.452308654785156"], + "field_latitude_longitude_value": [ + "-38.452308654785156,145.2386474609375" + ], + "field_latitude_value": ["-38.452308654785156"], + "field_longitude": ["145.2386474609375"], + "field_longitude_value": ["145.2386474609375"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3922"], + "field_project_code": ["15-5184"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["177 Settlement Rd"], + "field_suburb": ["Cowes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21290], + "status": [true], + "title": ["Phillip Island Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a39ea42e-607a-410a-bbe9-a710ec4bf20e"] + }, + "sort": ["Phillip Island Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20969:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/phoenix-p-12-community-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We extended the basketball gymnasium to include 2 new\u00a0courts, a\u00a0meeting room, warm-up room, spectator seating, office and kiosk. We also constructed 2 outdoor tennis courts\u00a0and completed\u00a0landscaping.", + "\u200bWe\u00a0completed\u00a0stage 3 of a new learning precinct on the former Sebastopol Secondary College site, which was\u00a0rebuilt to accommodate students from Years 5 through 12.\u00a0 We extended\u00a0the existing learning centre to build a Years 5/6 'Learning Village'. This included\u00a0refurbishing\u00a0classrooms as well as building new classrooms, an\u00a0interview room, a staff work space, toilets and two outdoor learning spaces. We also built\u00a0a materials technology building,\u00a0and extended\u00a0the existing gym for\u00a0performing arts, music \u200b\u200b\u200band\u00a0a single court competition-grade gym.", + "The Redan\u00a0campus\u200b\u00a0used this funding\u00a0to create 5 dedicated quiet areas that are integrated with existing learning spaces. These were created to allow for best practice teaching, and to\u00a0support the educational and social needs of children with disabilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.177 million. in 2020, the school received $10.594 million.", + "In the 2015\u201316 State Budget, $10 million was allocated to the school. The school also received $600,000 in School Pride and Sports Funding.", + "In 2016, the school received $112,300 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Phoenix P-12 Community College" + ], + "field_latitude": ["-37.58779", "-37.58779", "-37.58779"], + "field_latitude_longitude_value": ["-37.58779,143.83473"], + "field_latitude_value": ["-37.58779"], + "field_longitude": ["143.83473", "143.83473", "143.83473"], + "field_longitude_value": ["143.83473"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3356"], + "field_project_code": ["D2-01-8900", "01-8900", "D1-01-8900"], + "field_project_title": [ + "Upgrade and Modernisation - Sports Courts", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2022", "Q3 2018", "Q4 2017"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["53-71 Hertford St"], + "field_suburb": ["Sebastopol"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20969], + "status": [true], + "title": ["Phoenix P-12 Community College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ad338ca6-b0f3-43cb-b137-ceefe6611d68"] + }, + "sort": ["Phoenix P-12 Community College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21380:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pinewood-child-and-family-hub"], + "changed": ["2023-10-20T13:06:23+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Monash City Council to build an integrated children's centre. The centre offers community services and a kindergarten.The centre offers 36 extra places in quality learning environments. It helps ensures children have access to 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Building Blocks Capacity Grant, $2,000,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Pinewood Child and Family Hub" + ], + "field_latitude": ["-37.8883756"], + "field_latitude_longitude_value": ["-37.8883756,145.14006"], + "field_latitude_value": ["-37.8883756"], + "field_longitude": ["145.14006"], + "field_longitude_value": ["145.14006"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["15-PEYH"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children\u2019s Centre" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Pinewood Dr"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21380], + "status": [true], + "title": ["Pinewood Child and Family Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["25456ef1-5181-47d9-8b34-5d2ef53509ce"] + }, + "sort": ["Pinewood Child and Family Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20385:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pinewood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We upgraded the playground to provide an additional outdoor play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2020 Minor Capital Works Fund, the school was allocated $271,125" + ], + "field_funding_type_name": ["Planning", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pinewood Primary School" + ], + "field_latitude": ["-37.8901761"], + "field_latitude_longitude_value": ["-37.8901761,145.1422208"], + "field_latitude_value": ["-37.8901761"], + "field_longitude": ["145.1422208"], + "field_longitude_value": ["145.1422208"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["D1-01-4874", "01-4874"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Subject to future funding", "Q3 2022"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["27\u201335 Pinewood Drive"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20385], + "status": [true], + "title": ["Pinewood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["99fe44b7-1efb-42c3-af11-ad0ad3cd0aa1"] + }, + "sort": ["Pinewood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20054:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/plenty-parklands-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to improve the school. The latest funding will allow us to upgrade facilities at the school, ensuring students are learning in an environment designed for delivering modern education.", + "We replaced the school's roof.", + "We added a verandah and bi-fold doors to an existing building to create an amphitheatre sensory learning space that caters for auditory, kinaesthetic, visual and tactile learning. The verandah will be surrounded by an accessible garden with herbs and other sensory elements.", + "We used the School Pride and Sports Fund allocation to upgrade the phone and key systems and replace carpets at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.4 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2018\u201319 State Budget, $200,000 was allocated to the school through the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Plenty Parklands Primary School" + ], + "field_latitude": ["-37.669804", "-37.669804", "-37.66936"], + "field_latitude_longitude_value": ["-37.669804,145.077074"], + "field_latitude_value": ["-37.669804"], + "field_longitude": ["145.077074", "145.077074", "145.07665"], + "field_longitude_value": ["145.077074"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3082"], + "field_project_code": [ + "D3-01-1915", + "D2-01-1915", + "D1-01-1915", + "01-1915" + ], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2023", "Q1 2022", "Q1 2020", "Q4 2018"], + "field_start_date": ["Q2 2021", "Q4 2020", "Q4 2018", "Q2 2018"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["48 Blossom Park Dr"], + "field_suburb": ["Mill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20054], + "status": [true], + "title": ["Plenty Parklands Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["164c335d-c193-446e-8016-db69afaafede"] + }, + "sort": ["Plenty Parklands Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21381:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/plenty-valley-international-montessori-early-learning-facilities" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with the school, we\u00a0upgraded their facilities. The upgrade included: increasing\u00a0kindergarten capacity for 3 and 4-year-olds\u00a0 additional outdoor space including monkey bars, a\u00a0sand pit and tricycle track\u00a0 new toilets minor upgrades to internal facilities\u00a0a kitchenette." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was alloated $120,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Plenty Valley International Montessori Early Learning Facilities." + ], + "field_latitude": ["-37.684639313306"], + "field_latitude_longitude_value": [ + "-37.684639313306,145.13692218581031" + ], + "field_latitude_value": ["-37.684639313306"], + "field_longitude": ["145.13692218581031"], + "field_longitude_value": ["145.13692218581031"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["15-PVIMEL"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["315 Aqueduct Rd"], + "field_suburb": ["St Helena"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21381], + "status": [true], + "title": [ + "Plenty Valley International Montessori Early Learning Facilities" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["384542c0-2781-410c-a5af-fe8e2cd36c91"] + }, + "sort": [ + "Plenty Valley International Montessori Early Learning Facilities" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21353:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/poa-banyul-community-hub"], + "changed": ["2023-11-17T14:21:25+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build the Poa Banyul Community Hub.The centre provides local residents access to family, community and early years services. The centre has 66 kindergarten places for 3 and 4-year-olds.The centre has a multipurpose space that can be used as a kindergarten room. It also has 2 maternal and child health rooms, family support services and outdoor areas.This hub was previously known as Armstrong Creek West Neighbourhood Child and Community Centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $2.25 million was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Poa Banyul Community Hub" + ], + "field_latitude": ["-38.232048034667969"], + "field_latitude_longitude_value": [ + "-38.232048034667969,144.30363464355469" + ], + "field_latitude_value": ["-38.232048034667969"], + "field_longitude": ["144.30363464355469"], + "field_longitude_value": ["144.30363464355469"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["15-ACW"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["110-122 Unity Dr"], + "field_suburb": ["Mount Duneed"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21353], + "status": [true], + "title": ["Poa Banyul Community Hub"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1b4f9792-c94b-4072-bbe8-2e4978ffb3cc"] + }, + "sort": ["Poa Banyul Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20264:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/point-cook-prep-year-9-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an outdoor learning space that\u00a0complements\u00a0the existing indoor support program facility. The project\u00a0included\u00a0an enclosed area with seating and tables, sensory materials (e.g. musical flowers), a mini trampoline as well as a play space with artificial turf." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $189,400 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Point Cook Prep - Year 9 College" + ], + "field_latitude": ["-37.89380261"], + "field_latitude_longitude_value": ["-37.89380261,144.7244931"], + "field_latitude_value": ["-37.89380261"], + "field_longitude": ["144.7244931"], + "field_longitude_value": ["144.7244931"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-4159"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["18-50 Ponsford Dr"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20264], + "status": [true], + "title": ["Point Cook Prep - Year 9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c6af935e-ef5e-41ff-882c-aa0d317dfb8b"] + }, + "sort": ["Point Cook Prep - Year 9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33007:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/point-cook-south-p-9-interim-name"], + "changed": ["2023-08-21T14:29:30+10:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are building a new P-9 school in in Point Cook. It will open in 2026 with places for up to 1,250 students (650 primary and 600 secondary places). This will help the growing local population get a great education close to home.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Point Cook South Proposed P9 (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-PCSP9"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33007], + "status": [true], + "title": ["Point Cook South P-9 (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["50bb07cc-2b18-47cc-b53a-339aa6829419"] + }, + "sort": ["Point Cook South P-9 (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33008:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/point-cook-south-specialist-school-interim-name"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We're planning for a new specialist school in Point Cook South. It will open with places for up to 164 students. This will help the growing local population get a great education close to home." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Point Cook South Specialist School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-PCSSp"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33008], + "status": [true], + "title": ["Point Cook South Specialist School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["b27ec7c1-7f45-4e32-b4e6-92f45bc18ee0"] + }, + "sort": ["Point Cook South Specialist School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20138:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pomonal-primary-school"], + "changed": ["2023-12-01T16:14:34+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are replacing the school's administration building roof and installing a new kitchen and cabinetry. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We built an integrated outdoor classroom and kitchen with a landscaped sensory garden. This area is covered and has an oven where students can learn to cook with produce from the kitchen garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $446,796 from the Minor Capital Works Fund.", + "In 2018, $90,300 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Pomonal Primary School." + ], + "field_latitude": ["-37.193443", "-37.193443"], + "field_latitude_longitude_value": ["-37.193443,142.608733"], + "field_latitude_value": ["-37.193443"], + "field_longitude": ["142.608733", "142.608733"], + "field_longitude_value": ["142.608733"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3381"], + "field_project_code": ["D1-01-2859", "01-2859"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2020"], + "field_start_date": ["Q4 2023", "Q4 2018"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["2859 Ararat Pomonal Rd"], + "field_suburb": ["Pomonal"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20138], + "status": [true], + "title": ["Pomonal Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["16018238-aec2-4ae6-998d-50ef88006257"] + }, + "sort": ["Pomonal Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25382:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/poowong-consolidated-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student toilet block to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $374,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Poowong Consolidated School" + ], + "field_latitude": ["-38.342481"], + "field_latitude_longitude_value": ["-38.342481,145.769703"], + "field_latitude_value": ["-38.342481"], + "field_longitude": ["145.769703"], + "field_longitude_value": ["145.769703"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3988"], + "field_project_code": ["01-6245"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["5 Gardner Lane"], + "field_suburb": ["Poowong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25382], + "status": [true], + "title": ["Poowong Consolidated School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f5312740-6170-4b42-8cec-e2c00f16441b"] + }, + "sort": ["Poowong Consolidated School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19952:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/porepunkah-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0replaced carpet in the school's main classroom space.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $4,000 was allocated to the school." + ], + "field_funding_type_name": ["School Improvement Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Porepunkah Primary School" + ], + "field_latitude": ["-36.69948"], + "field_latitude_longitude_value": ["-36.69948,146.91102"], + "field_latitude_value": ["-36.69948"], + "field_longitude": ["146.91102"], + "field_longitude_value": ["146.91102"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3740"], + "field_project_code": ["01-1144"], + "field_project_title": ["School Improvement Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Martley Street"], + "field_suburb": ["Porepunkah"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19952], + "status": [true], + "title": ["Porepunkah Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1f9ac5fc-2c82-4d0d-bd2b-d9ad3789f198"] + }, + "sort": ["Porepunkah Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21185:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/port-fairy-community-services-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Port Fairy Community Services Centre in preparation for the roll-out of subsidised kindergarten for three-year-olds. We converted an existing meeting room into a children's room that will be used to provide three-year-old kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $478,715 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Port Fairy Community Services Centre" + ], + "field_latitude": ["-38.333080291748047"], + "field_latitude_longitude_value": [ + "-38.333080291748047,142.17634582519531" + ], + "field_latitude_value": ["-38.333080291748047"], + "field_longitude": ["142.17634582519531"], + "field_longitude_value": ["142.17634582519531"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3284"], + "field_project_code": ["15-1021"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["16 Atkinson St"], + "field_suburb": ["Port Fairy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21185], + "status": [true], + "title": ["Port Fairy Community Services Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0abe1345-7b63-4fa5-bf3c-04c1ef71fb5e"] + }, + "sort": ["Port Fairy Community Services Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20148:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/port-melbourne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe modernised\u00a0Port Melbourne Primary School\u00a0by building\u00a0a new gym for school and community use. We also\u00a0re-located modular buildings and upgraded the arts and music building.\u200b\u200b \u200b \u200b\u200b\u200bThe new gym is\u00a0located on the Clark Street school boundary. We designed it with an acoustic ceiling\u200b and panelling, and double-glazed windows to reduce noise. Features of the gymnasium include:\u00a0 an indoor, competition-size basketball and netball court the flexibility to serve as an event and performance space for the school community change rooms and toilets\u00a0 a kitchenette/ canteen rainwater tanks for toilet flushing and ground irrigation. Upgrading the arts and music building has\u00a0allowed the school to offer a more comprehensive and inclusive arts program.\u200b This project, designed by Williams Boag,\u00a0was a finalist in the\u00a02019 Victorian School Design Awards.", + "We\u00a0built state-of-the-art classrooms and administration facilities. This completes\u00a0the school\u2019s massive upgrade, giving Port Melbourne families the world-class school their kids deserve." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the State for planning. This included funding for Port Melbourne Primary School. The Victorian Government has allocated a further $5.496 million to the school.", + "In the 2019\u201320 State Budget, the school received $784,400. In 2020, the school received $7.06 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Port Melbourne Primary School." + ], + "field_latitude": ["-37.835579", "-37.7932814"], + "field_latitude_longitude_value": ["-37.835579,144.932953"], + "field_latitude_value": ["-37.835579"], + "field_longitude": ["144.932953", "144.9216582"], + "field_longitude_value": ["144.932953"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3207"], + "field_project_code": ["01-2932", "D1-01-2932"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation - Stage 2" + ], + "field_q_complete": ["Q2 2019", "Q2 2022"], + "field_start_date": ["Q1 2018", "Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["415 Graham Street"], + "field_suburb": ["Port Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20148], + "status": [true], + "title": ["Port Melbourne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1396c15f-1910-424f-83b5-0b537f93b386"] + }, + "sort": ["Port Melbourne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20794:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/port-melbourne-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new secondary college in Port Melbourne. It opened in 2022 and helps the growing local population get great education close to home. Anne Stout was appointed as the first principal of the school.\u00a0 The school was previously known by its interim name, Fishermans Bend Secondary School, during the planning phase. We consulted with the community on Port Melbourne Secondary College's name from 11 June to 25 June 2021. The school is named after the suburb it is located in. Facilities Facilities include the following: Gymnasium with competition-grade basketball and netball facilities Food technology area with commercial-grade kitchen and canteen Performing arts amenities Fabrication lab\u00a0 Robotics workshop 200-seat lecture theatre\u00a0 Outdoor terraces Urban garden with recreational ball sports areas Kitchen garden. Design consultation In July and August 2018, we engaged the local community, education experts, and key stakeholders to contribute to the design of the school. We wanted to understand what makes the local community unique. Identify facilities the school could provide outside of school hours. We wanted to know what learning and teaching spaces they would like, and what their hopes are for the new school. Here are the top four things we heard locals, teachers, and students want for the secondary school: build a school that doubles as a community hub build modern, state-of-the-art learning spaces, including outdoor areas reflect the suburb\u2019s bayside location in the school design consider safe access as part of planning Our architects used your feedback to help shape your school's interior and its landscape design You can\u00a0contact us\u00a0for a copy of the engagement report." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $3.8 million was allocated to the school for planning.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Port Melbourne Secondary College." + ], + "field_latitude": ["-37.83207"], + "field_latitude_longitude_value": ["-37.83207,144.931785"], + "field_latitude_value": ["-37.83207"], + "field_longitude": ["144.931785"], + "field_longitude_value": ["144.931785"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/221021_PortMelb_Webtiles.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3207"], + "field_project_code": ["01-7839"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["477 Graham St"], + "field_suburb": ["Port Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20794], + "status": [true], + "title": ["Port Melbourne Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2dea33b4-341c-4bb0-8646-396d3875016f"] + }, + "sort": ["Port Melbourne Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20495:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/port-phillip-specialist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school.This school benefited from Victoria's largest-ever single investment in upgrading specialist schools, with 39 specialist schools sharing $388.8 million.", + "We built a large hospitality training kitchen, combining several disused spaces, to teach independent living and work-related skills. The design\u00a0allows students with physical support equipment, such as wheelchairs and standing frames, to access the programs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $9.31 million.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Port Phillip Specialist School" + ], + "field_latitude": ["-37.833328247070313", "-37.83678831"], + "field_latitude_longitude_value": [ + "-37.833328247070313,144.91670227050781" + ], + "field_latitude_value": ["-37.833328247070313"], + "field_longitude": ["144.91670227050781", "144.9419729"], + "field_longitude_value": ["144.91670227050781"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3207"], + "field_project_code": ["D1-01-5145", "01-5145"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cnr Nott & Pool St"], + "field_suburb": ["Port Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20495], + "status": [true], + "title": ["Port Phillip Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c6638e71-a2c5-45a2-bbe7-349edea4061c"] + }, + "sort": ["Port Phillip Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20102:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/portarlington-primary-school"], + "changed": ["2023-09-11T14:37:38+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the school perimeter fencing to provide a safe, secure and clear boundary between the school and busy street frontage." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $341,045." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Portarlington Primary School." + ], + "field_latitude": ["-38.1156562"], + "field_latitude_longitude_value": ["-38.1156562,144.6551442"], + "field_latitude_value": ["-38.1156562"], + "field_longitude": ["144.6551442"], + "field_longitude_value": ["144.6551442"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3223"], + "field_project_code": ["01-2455"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["100 Newcombe St"], + "field_suburb": ["Portarlington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20102], + "status": [true], + "title": ["Portarlington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["15f8a6f8-51a1-4086-a37e-5dada01d0e51"] + }, + "sort": ["Portarlington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20560:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/portland-bay-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including new play equipment and synthetic turf.", + "\u200b\u200bWe built\u00a0a new school on the Portland Primary School site. The works at\u00a0Portland Bay School included new learning spaces for craft, general classrooms, manual activity rooms and a library. \u200bThe school\u00a0also has innovative outdoor and specialist areas. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000", + "In the 2016\u201317 State Budget, $7 million was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Portland Bay School" + ], + "field_latitude": ["-38.34633089", "-38.346268"], + "field_latitude_longitude_value": ["-38.34633089,141.5975588"], + "field_latitude_value": ["-38.34633089"], + "field_longitude": ["141.5975588", "141.598654"], + "field_longitude_value": ["141.5975588"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3305"], + "field_project_code": ["D1-01-5282", "01-5282"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2024", "Q2 2018"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["77 Henty Street"], + "field_suburb": ["Portland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20560], + "status": [true], + "title": ["Portland Bay School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b8188624-51a1-4b54-becf-f90d59d329f2"] + }, + "sort": ["Portland Bay School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20390:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/portland-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to repair and replace roofing and guttering in two buildings.", + "\u200b\u200b\u200b\u200bWe refurbished various parts of\u00a0Portland Primary School. This included fixing the school's Block A so that it can be used as a learning\u00a0space and refurbishing Block B, which is currently the school's administration,\u00a0staff facility, the library and general learning spaces.\u00a0\u00a0 This modernisation won Best School Project\u00a0\u2013 Below $1 million at the 2018 Victorian School Design Awards\u200b.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $84,120", + "In the 2016\u201317 State Budget, $1 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Portland Primary School" + ], + "field_latitude": ["-38.3474164", "-38.34739"], + "field_latitude_longitude_value": ["-38.3474164,141.5994891"], + "field_latitude_value": ["-38.3474164"], + "field_longitude": ["141.5994891", "141.59906"], + "field_longitude_value": ["141.5994891"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3305"], + "field_project_code": ["D1-01-489", "01-489"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2022", "Q4 2017"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["45 Palmer Street"], + "field_suburb": ["Portland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20390], + "status": [true], + "title": ["Portland Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1509a1b4-91ab-4ac3-9b09-563b594e7fd7"] + }, + "sort": ["Portland Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20913:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/portland-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0upgraded\u00a0the school. The administration and S block were\u00a0refurbished. These\u00a0house the administration and staff facilities, library and general learning spaces. We also provided several relocatable buildings as part of this project." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $2 million was allocated to the school. An additional $193,000 was allocated to the school for maintenance." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Portland Secondary College." + ], + "field_latitude": ["-38.35921"], + "field_latitude_longitude_value": ["-38.35921,141.5988099"], + "field_latitude_value": ["-38.35921"], + "field_longitude": ["141.5988099"], + "field_longitude_value": ["141.5988099"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3305"], + "field_project_code": ["01-8798"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Must St"], + "field_suburb": ["Portland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20913], + "status": [true], + "title": ["Portland Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["658f1d03-4567-46bf-bd9c-d0a63d5d1002"] + }, + "sort": ["Portland Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20341:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/portland-south-primary-school"], + "changed": ["2023-12-05T11:33:23+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the roof and upgraded toilets to provide safe, accessible facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Portland South Primary School." + ], + "field_latitude": ["-38.3647888"], + "field_latitude_longitude_value": ["-38.3647888,141.6108652"], + "field_latitude_value": ["-38.3647888"], + "field_longitude": ["141.6108652"], + "field_longitude_value": ["141.6108652"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at Portland South Primary School." + ], + "field_postcode": ["3305"], + "field_project_code": ["01-4750"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["133\u2013141 Edgar St"], + "field_suburb": ["Portland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20341], + "status": [true], + "title": ["Portland South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["494e2217-0664-4043-9a65-8349aa93e5d4"] + }, + "sort": ["Portland South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36737:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/portland-south-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Portland South Primary School.The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.The centre may also include other spaces for community use.From 2027, Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.\u00a0Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.\u00a0Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Portland South Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-38.365275"], + "field_latitude_longitude_value": ["-38.365275,141.610615"], + "field_latitude_value": ["-38.365275"], + "field_longitude": ["141.610615"], + "field_longitude_value": ["141.610615"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3305"], + "field_project_code": ["15-PSPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["133\u2013141 Edgar Street"], + "field_suburb": ["Portland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36737], + "status": [true], + "title": [ + "Portland South Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c5d621c5-73a2-4122-97d9-917adcbe213e"] + }, + "sort": [ + "Portland South Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28779:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/powlett-reserve-childrens-centre-and-kindergarten" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T15:05:16+11:00"], + "field_about_project_processed": [ + "We are redesigning the kindergarten yard to make it more inclusive. Children of all abilities will be able to play and learn in an outdoor environment that caters for their needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $181,093.23 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Powlett Reserve Children's Centre and Kindergarten." + ], + "field_latitude": ["-37.81169627"], + "field_latitude_longitude_value": ["-37.81169627,144.9881414"], + "field_latitude_value": ["-37.81169627"], + "field_longitude": ["144.9881414"], + "field_longitude_value": ["144.9881414"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3002"], + "field_project_code": ["15-828"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["72 Grey St"], + "field_suburb": ["East Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28779], + "status": [true], + "title": ["Powlett Reserve Children's Centre and Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["1cec2468-ecc7-4fa0-bb32-9065895cdb6a"] + }, + "sort": ["Powlett Reserve Children's Centre and Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20609:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/powlett-river-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are replacing an old toilet block with new modern facilities that better support accessibility and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $495,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Powlett River Primary School." + ], + "field_latitude": ["-38.5602831"], + "field_latitude_longitude_value": ["-38.5602831,145.5458752"], + "field_latitude_value": ["-38.5602831"], + "field_longitude": ["145.5458752"], + "field_longitude_value": ["145.5458752"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3992"], + "field_project_code": ["01-5423"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["9\u201321 Bent St"], + "field_suburb": ["Dalyston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20609], + "status": [true], + "title": ["Powlett River Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5654a503-2ecf-44b1-ab33-e4b32e98d559"] + }, + "sort": ["Powlett River Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20841:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/prahran-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Prahran High School is\u00a0a co-educational secondary school we've built\u00a0for 650 students. The school opened in Term 1, 2019 with its first Year 7 students.\u00a0This school, designed by Gray Puksand,\u00a0was\u00a0the winner in the\u00a0'Best Project Above $10 Million' category\u00a0in the\u00a02019 Victorian School Design Awards. We\u00a0built\u00a0this innovative, vertical school next to an existing educational precinct that includes Melbourne Polytechnic and the National Institute of Circus Arts.\u00a0 Prahran High School has a new\u00a0school website and official Facebook page. Follow\u00a0both\u00a0for all of the latest updates.\u00a0\u200b \u00a0 \u200b \u200b \u200b Facilities Prahran High School\u00a0features an open atrium at the centre of the building, contemporary teaching areas, a main performance space and outdoor terraces on every level. A series of cascading bleachers (tiered seating with stairs) connects the various levels, allowing easy circulation and promoting social interaction and physical exercise. All levels also have lifts to ensure accessibility for all. Library, music and drama facilities on the ground floor\u00a0fully utilise the large ceiling heights. Levels 1, 2 and 3 house the Science, Art and Food Technology spaces,\u00a0taking advantage of the northern aspect with access to the outdoor learning terraces. General learning, ICT and break-out areas are\u00a0incorporated throughout the building. There is\u00a0a gym on level 3\u00a0with direct access to a large outdoor recreational zone that includes a rebound court, running track and protective netting. A rooftop play area\u00a0with trees and a garden gives students space for passive recreation, and there is also a lane that can be activated for play during school hours. A key priority for the architects was\u00a0minimising\u00a0noise for surrounding residents. Entry points\u00a0and transport The school\u2019s main entry is\u00a0from High Street, with an additional St John Street entrance open during peak periods. To ensure student and staff safety, the building\u00a0includes security measures such as surveillance equipment, a 1.8m fence and entry swipe cards or keypad. Bike storage has been built into the design, with the school located near multiple bike paths. There are\u00a0no onsite parking spaces, encouraging staff and students to use the numerous convenient public transport options. A few parking spaces on St John and Thomas streets are\u00a0dedicated for school drop off and pick up at the beginning and end of the school day.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017-18 State Budget allocated $37.2 million to the school. Previously $25 million had been allocated to the project." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Prahran High School" + ], + "field_latitude": ["-37.851837"], + "field_latitude_longitude_value": ["-37.851837,144.991445"], + "field_latitude_value": ["-37.851837"], + "field_longitude": ["144.991445"], + "field_longitude_value": ["144.991445"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["First day at Prahran High School"], + "field_postcode": ["3181"], + "field_project_code": ["01-8231"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["138 High Street"], + "field_suburb": ["Windsor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20841], + "status": [true], + "title": ["Prahran High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c286ea0d-c079-485f-b9dc-ec9a69709ce2"] + }, + "sort": ["Prahran High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20988:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/presentation-college-windsor"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Presentation College to complete upgrade works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Presentation College Windsor" + ], + "field_latitude": ["-37.85767"], + "field_latitude_longitude_value": ["-37.85767,144.99399"], + "field_latitude_value": ["-37.85767"], + "field_longitude": ["144.99399"], + "field_longitude_value": ["144.99399"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3181"], + "field_project_code": ["02-106"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["187 Dandenong Road"], + "field_suburb": ["Windsor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20988], + "status": [true], + "title": ["Presentation College Windsor"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5d4f3770-2284-43c7-9304-c95f9cb33b00"] + }, + "sort": ["Presentation College Windsor"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21271:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/preshil-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Preshil Kindergarten created\u00a0an enclosed walk-way to directly join the existing kindergarten room to an unused room, increasing enrolment capacity." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $123,750 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Preshil Kindergarten" + ], + "field_latitude": ["-37.81588"], + "field_latitude_longitude_value": ["-37.81588,145.05232"], + "field_latitude_value": ["-37.81588"], + "field_longitude": ["145.05232"], + "field_longitude_value": ["145.05232"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3101"], + "field_project_code": ["15-4292"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["395 Barkers Rd"], + "field_suburb": ["Kew"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21271], + "status": [true], + "title": ["Preshil Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d68965dd-9662-42e5-87e6-8475c2a663e8"] + }, + "sort": ["Preshil Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20843:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/preston-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe are building a four-level building with creative arts, design technology, library, classrooms and staff work areas.", + "We refurbished the gym and delivered art and media learning areas as well as a performance learning area. We also delivered staff administration areas.", + "\u200bIn Stage 2, we built a new gymnasium with a competition-grade basketball court, change rooms,\u00a0\u200bfood technology\u00a0and a canteen.We also refurbished the existing gym\u00a0to accommodate\u00a0the school administration facilities.", + "The former Preston Girls\u2019 Secondary College site re-opened as the new co-educational Preston High School in term 1, 2019, when it welcomed\u00a0its first Year 7 students.\u00a0Preston High School \u200bhas an official\u00a0web\u200bsite\u00a0and\u00a0Facebook page\u200b.We\u00a0refurbished\u00a0the former school\u2019s two-storey heritage building.\u00a0We made\u00a0use of the high ceilings and generously-sized spaces to create\u00a0modern classrooms with space for\u00a0art and\u00a0science, technology, engineering and mathematics (STEM) learning.\u00a0On each level, there are\u00a0breakout spaces for\u00a0small group and individual projects. At the back of the main building is\u00a0a central courtyard for students.Community EngagementWe undertook community engagement in early 2017, asking parents, students, teachers and the wider community what sort of school they\u00a0would like.\u00a0More than 2,500 people\u00a0participated in the engagement.\u00a0We summarised their comments in an engagement report, which has helped shape the school\u2019s educational direction and the architect\u2019s master plan. You can contact us for a copy of this engagement." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received at least $18.935 million for Stages 2B and 3, sharing in the $122.4 million allocated for new schools.", + "In the 2020\u201321 State Budget, the school received at least $18.935 million for Stages 2B and 3, sharing in the $122.4 million allocated for new schools.", + "In the 2017-18 State Budget, $5.01 million was allocated to the new school. The project received an additional $10.6 million in the 2018-19 State Budget.", + "In the 2017-18 State Budget, $5.01 million was allocated to the new school. The project received an additional $10.6 million in the 2018-19 State Budget." + ], + "field_funding_type_name": [ + "New School", + "New School", + "New School", + "New School" + ], + "field_landing_page_summary": [ + "Learn more about the build of Preston High School" + ], + "field_latitude": ["-37.741804"], + "field_latitude_longitude_value": ["-37.741804,145.007047"], + "field_latitude_value": ["-37.741804"], + "field_longitude": ["145.007047"], + "field_longitude_value": ["145.007047"], + "field_mappintype_name": ["New school", "New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": [ + "D3-01-8241", + "D2-01-8241", + "D1-01-8241", + "01-8241" + ], + "field_project_title": [ + "New School - Stage 3", + "New School - Stage 2B", + "New School - Stage 2", + "New School - Stage 1" + ], + "field_q_complete": ["Q3 2023", "Q1 2022", "Q2 2020", "Q1 2019"], + "field_start_date": ["Q4 2020", "Q4 2020", "Q4 2018", "Q2 2017"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["Cooma St"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20843], + "status": [true], + "title": ["Preston High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["674e8407-b344-42c5-bca3-8d2ac15a8d7d"] + }, + "sort": ["Preston High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20346:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/preston-north-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning area. It includes a water feature, artificial turf, and a yarning circle.", + "\u200bWe delivered\u00a0a new architect-designed modular building to Preston North East Primary School to replace the South Wing with new classrooms, an art and craft room and student toilets.\u00a0 \u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $179,000", + "In the 2017-18 State Budget, $3,496,000 was allocated to the school" + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Preston North East Primary School" + ], + "field_latitude": ["-37.732932", "-37.73361"], + "field_latitude_longitude_value": ["-37.732932,145.029474"], + "field_latitude_value": ["-37.732932"], + "field_longitude": ["145.029474", "145.02947"], + "field_longitude_value": ["145.029474"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["D1-01-4764", "01-4764"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2023", "Q4 2018"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["93 Tyler Street"], + "field_suburb": ["East Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20346], + "status": [true], + "title": ["Preston North East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["afa2ac63-8009-4241-9176-3cacd8650d9c"] + }, + "sort": ["Preston North East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20004:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/preston-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to upgrade this school to give students better learning opportunities.", + "We are refurbishing staff and accessible bathrooms to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We\u00a0repaired\u00a0the roof at Preston Primary School.", + "We replaced an old toilet block with new modern facilities that better support accessibility and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $3.7 million", + "In the 2022-23 State Budget the project received $253,194 from the Minor Capital Works Fund.", + "In the 2019-20 State Budget, the school received $400,000.", + "In the 2020 Minor Capital Works Fund, the school was allocated $398,625." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Preston Primary School." + ], + "field_latitude": ["-37.730548", "-37.7301", "-37.73062"], + "field_latitude_longitude_value": ["-37.730548,145.01031"], + "field_latitude_value": ["-37.730548"], + "field_longitude": ["145.01031", "145.01083", "145.0106708"], + "field_longitude_value": ["145.01031"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": [ + "D3-01-1494", + "D2-01-1494", + "01-1494", + "D1-01-1494" + ], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund \u2013 2022\u201323 State Budget", + "Upgrade and Modernisation - Roof Repairs", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2025", "Q1 2024", "Q2 2020", "Q3 2022"], + "field_start_date": ["Q2 2023", "Q2 2022", "Q2 2019", "Q4 2020"], + "field_status_name": [ + "Design", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["240 Tyler St"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20004], + "status": [true], + "title": ["Preston Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6511f6cc-a369-4a23-964f-12716f5aa8f8"] + }, + "sort": ["Preston Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20842:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/preston-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising Preston South Primary School, adding new facilities that will allow it to offer places to an extra 200 local students. This includes constructing\u00a0a three-storey building with collaborative learning, outdoor learning and sciences and technologies spaces, as well as new staff and administration facilities. The project will also include new landscaping and outdoor play areas.\u00a0 New main learning and administration building The new three-storey\u00a0main learning and administration building will feature a number of learning spaces: Ground level: science/technologies, administration and staff resources Level 1: collaborative general learning, outdoor learning, makerspace, reading nook Level 2: collaborative general learning, outdoor learning, makerspace, reading nook During the build Existing facilities at Preston South Primary School will be temporarily repurposed during the build. Relocatable buildings and amenities will be added for additional capacity. These will be removed from site after the build is complete. The hall will be repurposed as an outside school hours care space. This building will be removed after the build is complete. A temporary school entry via Young Street and T.A. Cochran Reserve will be established.\u00a0Existing trees along Hotham Street entry will\u00a0be retained. Designed brochure You can view a designed brochure with this information. Preston South Primary School - design brochurePDF3.55 MB (3.55 MB)" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $14.63 million, which is a share in $130.1 million from the Established Areas Program." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Preston South Primary School" + ], + "field_latitude": ["-37.747879"], + "field_latitude_longitude_value": ["-37.747879,145.007889"], + "field_latitude_value": ["-37.747879"], + "field_longitude": ["145.007889"], + "field_longitude_value": ["145.007889"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["01-824"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["56B Hotham Street"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20842], + "status": [true], + "title": ["Preston South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["144fe2a2-4f62-4744-bc60-40d093c8aa0a"] + }, + "sort": ["Preston South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20150:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/princes-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a nature play space with rocks, timber, plants and water elements. This\u00a0space can now be\u00a0used for building friendships, problem solving, quiet play and retreating. We also built a shaded outdoor amphitheatre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Princes Hill Primary School" + ], + "field_latitude": ["-37.78039994"], + "field_latitude_longitude_value": ["-37.78039994,144.9681013"], + "field_latitude_value": ["-37.78039994"], + "field_longitude": ["144.9681013"], + "field_longitude_value": ["144.9681013"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3054"], + "field_project_code": ["01-2955"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["280 Pigdon St"], + "field_suburb": ["Carlton North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20150], + "status": [true], + "title": ["Princes Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7d02b146-9787-4cf2-b119-f9b1617b7e8c"] + }, + "sort": ["Princes Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20844:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/princes-hill-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading outdoor areas, including the basketball court and amphitheatres, to encourage active school and community use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $446,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Princes Hill Secondary College." + ], + "field_latitude": ["-37.7825098000008"], + "field_latitude_longitude_value": [ + "-37.7825098000008,144.965402600016" + ], + "field_latitude_value": ["-37.7825098000008"], + "field_longitude": ["144.965402600016"], + "field_longitude_value": ["144.965402600016"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3054"], + "field_project_code": ["01-8245"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["Arnold St"], + "field_suburb": ["Princes Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20844], + "status": [true], + "title": ["Princes Hill Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0be6934a-6734-4331-a242-2a4db06f0d3e"] + }, + "sort": ["Princes Hill Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23307:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/prom-coast-centre-children"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We increased the centre\u2019s capacity with a new purpose-built modular kindergarten room. This will create more kindergarten places for local children, including the newly funded places for 3-year-olds, and help meet local demand for long day care. The centre is co-located with Foster Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project was funded through Round 2 of the 2021-22 Building Blocks Capacity Building Grant." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Prom Coast Centre for Children" + ], + "field_latitude": ["-38.65405056"], + "field_latitude_longitude_value": ["-38.65405056,146.2002932"], + "field_latitude_value": ["-38.65405056"], + "field_longitude": ["146.2002932"], + "field_longitude_value": ["146.2002932"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3960"], + "field_project_code": ["15-1185"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Modular" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["30\u201332 Pioneer St"], + "field_suburb": ["Foster"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23307], + "status": [true], + "title": ["Prom Coast Centre for Children"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a8a24ef9-5310-420a-a2ff-05f822e08935"] + }, + "sort": ["Prom Coast Centre for Children"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20044:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/puckapunyal-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We rebuilt Puckapunyal Primary School after it was significantly damaged by a fire in December 2020. Up to 90% of the main building was destroyed by the fire, and there was\u00a0significant smoke and water damage to the\u00a0remainder. The Building the Education Revolution (BER) building, play equipment, sheds, sand pits, oval and garden areas were unaffected by the fire. Students were temporarily relocated to Seymour College for the remainder of the 2020 school year. Relocatable buildings were placed on the school site at the beginning of Term 1, allowing students to return to Puckapunyal for the 2021 school year. In the 2020 Minor Capital Works Fund, the school was allocated $207,125 to resurface the outdoor sports court area with synthetic turf. This was completed with the school rebuild." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_landing_page_summary": [ + "Learn more about the improvements at Puckapunyal Primary School." + ], + "field_latitude": ["-37.002342"], + "field_latitude_longitude_value": ["-37.002342,145.033691"], + "field_latitude_value": ["-37.002342"], + "field_longitude": ["145.033691"], + "field_longitude_value": ["145.033691"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Puckapunyal Primary School \u2013 school rebuild" + ], + "field_postcode": ["3668"], + "field_project_code": ["01-1855"], + "field_project_title": ["School Rebuild"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Alamein Rd"], + "field_suburb": ["Puckapunyal"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20044], + "status": [true], + "title": ["Puckapunyal Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3bbde77b-6a66-41da-82ef-cf467afbad00"] + }, + "sort": ["Puckapunyal Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21238:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/punt-road-kindergarten-and-childcare-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded the centre for the roll-out of subsidised kindergarten for three-year-olds. We helped add a room that allows for the separation of the three and four-year-old programs. The works enable an increase in enrolments for both programs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $368,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Punt Road Kindergarten and Childcare Centre" + ], + "field_latitude": ["-35.9167366027832"], + "field_latitude_longitude_value": [ + "-35.9167366027832,145.64691162109375" + ], + "field_latitude_value": ["-35.9167366027832"], + "field_longitude": ["145.64691162109375"], + "field_longitude_value": ["145.64691162109375"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3644"], + "field_project_code": ["15-299"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["39 Punt Rd"], + "field_suburb": ["Cobram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21238], + "status": [true], + "title": ["Punt Road Kindergarten and Childcare Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0e2c50b8-a8f2-464c-a428-e2c2c2e8b7d8"] + }, + "sort": ["Punt Road Kindergarten and Childcare Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28660:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pyalong-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the preschool. It will gain a larger verandah to create spaces for indoor/outdoor play. We will also install new accessible toilets, kitchen and nappy changing areas. We will expand the office space, modernise doors, windows and outdoor blinds, and improve security." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $500,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pyalong Preschool." + ], + "field_latitude": ["-37.1236709"], + "field_latitude_longitude_value": ["-37.1236709,144.8580574"], + "field_latitude_value": ["-37.1236709"], + "field_longitude": ["144.8580574"], + "field_longitude_value": ["144.8580574"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3521"], + "field_project_code": ["15-1063"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["12 High St"], + "field_suburb": ["Pyalong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28660], + "status": [true], + "title": ["Pyalong Preschool"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["fbd5df68-a09e-4b58-9ae9-6e800d2b2b57"] + }, + "sort": ["Pyalong Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20031:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/pyramid-hill-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the playground with new play equipment. We laid a soft-fall surface to create an accessible, safe, engaging play space for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $234,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Pyramid Hill College." + ], + "field_latitude": ["-36.0473548"], + "field_latitude_longitude_value": ["-36.0473548,144.1143182"], + "field_latitude_value": ["-36.0473548"], + "field_longitude": ["144.1143182"], + "field_longitude_value": ["144.1143182"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3575"], + "field_project_code": ["01-1712"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["101 Kelly St"], + "field_suburb": ["Pyramid Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20031], + "status": [true], + "title": ["Pyramid Hill College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["89af6b2b-c427-4fe1-a03f-7bffccd0c8da"] + }, + "sort": ["Pyramid Hill College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19957:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/quarry-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the student amenities block. It has improved amenity, cleanliness and hygiene.", + "We built a dedicated outdoor sensory learning space. It provides a variety of sensory experiences and safe spaces for vulnerable students. The space includes: log seating and climbing area under a multi-coloured glazed roof, concrete vertical half-pipes to allow chalk drawings and textured surfaces, a small bean\u00a0cubby, and a raised platform for group art work. The new space will also allow staff to extend their professional learning for practical outcomes." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $499,637", + "In Round 2 of the Inclusive Schools Fund, $97,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Quarry Hill Primary School" + ], + "field_latitude": ["-36.775117", "-36.77489"], + "field_latitude_longitude_value": ["-36.775117,144.279976"], + "field_latitude_value": ["-36.775117"], + "field_longitude": ["144.279976", "144.28055"], + "field_longitude_value": ["144.279976"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["D1-01-1165", "01-1165"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["25 Peel Street"], + "field_suburb": ["Quarry Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19957], + "status": [true], + "title": ["Quarry Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["368a5ca1-2888-49d9-8f1f-adf1b7498ec9"] + }, + "sort": ["Quarry Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20694:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/quarters-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Cranbourne West. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Elizabeth Davey was appointed as the first principal of the school. The school was previously known by its interim name, Camms Road Primary School, during the planning phase. We consulted with the community on Quarters Primary School's name from 20 June 2022 and 8 July 2022. The school is named after \u2018the Quarters\u2019, used by students to identify the place they come from. Quarters Primary School is a supported inclusion school. This school has specialised facilities and capabilities designed to accommodate students with disabilities. Facilities The school has the following facilities: an administration building with a library, staff offices and amenities, as well as specialist teaching areas for science and food technology 3 learning neighbourhood buildings with general purpose classrooms, and flexible and collaborative teaching spaces a community hub building with a competition-grade gymnasium, canteen, music and drama space 2 outdoor hard courts a sports field. Kinder We have built a two-room kindergarten at the school. This building will initially open for community and family services only. It will switch to being a kindergarten as the local community grows and demand builds for more early childhood education. The centre will offer up to 66 kindergarten places." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2020\u201321 State Budget allocated more than $147 million to purchase land for 11 new schools. This included land for Quarters Primary School.In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Quarters Primary School." + ], + "field_latitude": ["-38.094787"], + "field_latitude_longitude_value": ["-38.094787,145.249102"], + "field_latitude_value": ["-38.094787"], + "field_longitude": ["145.249102"], + "field_longitude_value": ["145.249102"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/QuartersPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5591"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Morningside Blvd"], + "field_suburb": ["Cranbourne West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20694], + "status": [true], + "title": ["Quarters Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3241656e-e842-41ef-a45d-e393e5e7500a"] + }, + "sort": ["Quarters Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22603:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/\ufeff\ufeffquarters-primary-school-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a two-room kindergarten at the new Quarters Primary School.This building will initially open for community and family services only. It will switch to being a kindergarten as the local community grows and demand builds for more early childhood education. The centre will offer up to 66 kindergarten places.Enrolment enquiriesEarly Childhood Management Services (ECMS) has been announced as the provider for\u00a0Quarters Primary School Kindergarten.The City of Casey are taking registrations for Quarters Primary School Kindergarten through their\u00a0Register for Kindergarten website. Once you register with the council, they will pass your details onto Early Childhood Management Services for them to follow up." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 Budget, this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Quarters Primary School Kindergarten" + ], + "field_latitude": ["-38.0947946"], + "field_latitude_longitude_value": ["-38.0947946,145.2503991"], + "field_latitude_value": ["-38.0947946"], + "field_longitude": ["145.2503991"], + "field_longitude_value": ["145.2503991"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["15-CRK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Morningside Blvd"], + "field_suburb": ["Cranbourne West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22603], + "status": [true], + "title": ["Quarters Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d17f0b95-6c9e-4801-8cde-f98fc9abd0a9"] + }, + "sort": ["Quarters Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19963:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/queenscliff-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the boys' and staff toilets in the main building to improve amenity, cleanliness and hygiene.\u00a0", + "We upgraded\u00a0and modernised facilities, including upgrades\u00a0to reception and the multipurpose building, and rectification works to the external sport court and field.\u00a0\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $497,897 from the Minor Capital Works Fund.", + "In the 2017\u201318 State Budget, $211,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Queenscliff Primary School" + ], + "field_latitude": ["-38.267224", "-38.2653"], + "field_latitude_longitude_value": ["-38.267224,144.656211"], + "field_latitude_value": ["-38.267224"], + "field_longitude": ["144.656211", "144.65795"], + "field_longitude_value": ["144.656211"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3225"], + "field_project_code": ["D1-01-1190", "01-1190"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2023", "Q3 2018"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cnr Stokes & Stevens Street"], + "field_suburb": ["Queenscliff"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19963], + "status": [true], + "title": ["Queenscliff Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5ff8853c-4a6d-480e-8769-cfcc750f5e03"] + }, + "sort": ["Queenscliff Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20847:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rainbow-p-12-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are undertaking a major upgrade of the school. This includes refurbishing and adding a new STEM (science, technology, engineering and maths) wing to Block A, rebuilding Block C, and rebuilding Block D as a media arts space. We are also landscaping the school grounds. \u00a0", + "\u200b\u200b\u200bWe refurbished\u00a0the school to increase pride and confidence in the school.\u00a0This included a major refurbishment of the school's main building, the squash court, and external landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $11.161 million, with a further $2.7 million in 2023.", + "In the 2016\u201317 State Budget, $350,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rainbow P-12 College" + ], + "field_latitude": ["-35.901561737060547", "-35.89299"], + "field_latitude_longitude_value": [ + "-35.901561737060547,141.93496704101562" + ], + "field_latitude_value": ["-35.901561737060547"], + "field_longitude": ["141.93496704101562", "141.99651"], + "field_longitude_value": ["141.93496704101562"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3424"], + "field_project_code": ["D1-01-8256", "01-8256"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["17 Albert St"], + "field_suburb": ["Rainbow"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20847], + "status": [true], + "title": ["Rainbow P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["969ea05d-3ab1-466b-92fc-5f8892db74cc"] + }, + "sort": ["Rainbow P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20686:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ramlegh-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Clyde North. It opened in 2021 and helps the growing local population get great education close to home. Your new school includes the following facilities: 2 learning neighbourhoods administration building outdoor play courts performing arts and physical education building sports field.\u00a0 Ramlegh Family and Community Centre\u00a0is located next to the school.\u00a0This may\u00a0help local\u00a0children make\u00a0a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Linda Corcoran has been appointed as the first principal.\u00a0 Further information on the school, including enrolment,\u00a0can be found on its\u00a0official Facebook page. School Name Ramlegh Park Primary School\u00a0was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. The school is named after the area of Ramlegh Springs which features two significant parks. We consulted with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input.", + "We built an outdoor inclusive learning area. It includes a water feature, new play equipment, and paving." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for the\u00a0school.In the 2019-20 State Budget, the school shared in $624.8 million allocated for new schools.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000." + ], + "field_funding_type_name": ["New School", "Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Ramlegh Park Primary School." + ], + "field_latitude": ["-38.115017", "-38.1185199027112"], + "field_latitude_longitude_value": ["-38.115017,145.338807"], + "field_latitude_value": ["-38.115017"], + "field_longitude": ["145.338807", "145.337274720855"], + "field_longitude_value": ["145.338807"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Visit Ramlegh Park Primary School"], + "field_postcode": ["3978"], + "field_project_code": ["01-5581", "D1-01-5581"], + "field_project_title": [ + "New School", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q1 2021", "Q2 2023"], + "field_start_date": ["Q2 2018", "Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["34S Thoroughbred Dr"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20686], + "status": [true], + "title": ["Ramlegh Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["734c411f-5415-4f76-bc00-9f9e7275ec7b"] + }, + "sort": ["Ramlegh Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20582:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ranfurly-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped to build a sensory/therapeutic space. Students with special needs now have access to a variety of equipment that helps them to calm and focus themselves, and be better prepared for learning and interacting with others. The space will also be used for wellbeing programs and utilised by occupational therapists and speech pathologists." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ranfurly Primary School" + ], + "field_latitude": ["-34.19316604025218"], + "field_latitude_longitude_value": [ + "-34.19316604025218,142.13298642199834" + ], + "field_latitude_value": ["-34.19316604025218"], + "field_longitude": ["142.13298642199834"], + "field_longitude_value": ["142.13298642199834"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["01-5346"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["348 Ontario Av"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20582], + "status": [true], + "title": ["Ranfurly Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e5375887-c06f-4273-a60d-a44efc81feef"] + }, + "sort": ["Ranfurly Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21257:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rangebank-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Casey City Council modernised Rangebank preschool's outdoor spaces, including creating new storage and better play spaces, upgrading outdoor surfaces and installing new play equipment.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $125,000 was allocated to the preschool." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Rangebank Kindergarten" + ], + "field_latitude": ["-38.08769"], + "field_latitude_longitude_value": ["-38.08769,145.27339"], + "field_latitude_value": ["-38.08769"], + "field_longitude": ["145.27339"], + "field_longitude_value": ["145.27339"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["15-359"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["40-46 Lesdon Av"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21257], + "status": [true], + "title": ["Rangebank Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["621859cc-4b5e-4527-8eec-ffc6f70bbb01"] + }, + "sort": ["Rangebank Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20534:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rangebank-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We constructed new toilets that are safe, hygienic and accessible for all students.", + "We\u00a0redesigned the playground for junior students and developed a courtyard for senior students that includes seating, shade and a mini-amphitheatre. There are\u00a0also\u00a0soft-fall surfaces, play equipment and a sandpit." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rangebank Primary School." + ], + "field_latitude": ["-38.0873496", "-38.087362"], + "field_latitude_longitude_value": ["-38.0873496,145.2756421"], + "field_latitude_value": ["-38.0873496"], + "field_longitude": ["145.2756421", "145.276217"], + "field_longitude_value": ["145.2756421"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["D2-01-5232", "D1-01-5232", "01-5232"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q3 2022", + "Q1 2020" + ], + "field_start_date": ["Q2 2023", "Q4 2020", "Q4 2018"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["14-36 Lesdon Av"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20534], + "status": [true], + "title": ["Rangebank Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3f1efd71-ad36-450b-86ea-ce1527051543"] + }, + "sort": ["Rangebank Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20614:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rangeview-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an outdoor inclusive learning space. This new space has new sensory landscaping and play equipment. \u00a0", + "We upgraded the senior toilets to improve amenity and hygiene and provide modern facilities for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In the 2020 Minor Capital Works Fund, the school was allocated $469,865." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rangeview Primary School." + ], + "field_latitude": ["-37.8295632", "-37.8295632"], + "field_latitude_longitude_value": ["-37.8295632,145.2062261"], + "field_latitude_value": ["-37.8295632"], + "field_longitude": ["145.2062261", "145.2062261"], + "field_longitude_value": ["145.2062261"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3132"], + "field_project_code": ["D1-01-5431", "01-5431"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2023", "Q4 2022"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["27 Churinga Av"], + "field_suburb": ["Mitcham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20614], + "status": [true], + "title": ["Rangeview Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4ca49498-1bac-4169-853c-bc996d085af5"] + }, + "sort": ["Rangeview Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28341:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rasmussen-rd-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-02T14:59:33+11:00"], + "field_about_project_processed": [ + "We are building a 2-room modular kindergarten at Horsham Primary School. The new kinder will create more places for local children and help meet future demand for 3-year-old kinder and Pre-Prep (4-year-old kinder)." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 3 of the 2022\u201323 Building Blocks Capacity Grant stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Rasmussen Rd Kindergarten." + ], + "field_latitude": ["-36.69704952"], + "field_latitude_longitude_value": ["-36.69704952,142.204722"], + "field_latitude_value": ["-36.69704952"], + "field_longitude": ["142.204722"], + "field_longitude_value": ["142.204722"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["15-EL-RRK"], + "field_project_title": [ + "Building Blocks Capacity Grant- Modular Kinder" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2B Rasmussen Rd"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28341], + "status": [true], + "title": ["Rasmussen Rd Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["88068624-5908-4810-a501-5de80fffb60f"] + }, + "sort": ["Rasmussen Rd Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20261:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/red-cliffs-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We repaired and upgraded the storm-damaged roof and guttering to prevent further leaks and deterioration." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $427,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Red Cliffs East Primary School" + ], + "field_latitude": ["-34.3055282235044"], + "field_latitude_longitude_value": [ + "-34.3055282235044,142.216462365104" + ], + "field_latitude_value": ["-34.3055282235044"], + "field_longitude": ["142.216462365104"], + "field_longitude_value": ["142.216462365104"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3496"], + "field_project_code": ["01-4123"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Block 67a Nerrum Av"], + "field_suburb": ["Red Cliffs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20261], + "status": [true], + "title": ["Red Cliffs East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1b15d370-3e27-4562-86ae-e390f7d6acff"] + }, + "sort": ["Red Cliffs East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24597:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/red-cliffs-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping Mildura Rural City Council plan the future of Red Cliffs Kindergarten and Red Cliffs Maternal & Child Health Centre. They\u2019ll explore their options such as the possible rebuild, expansion, or merging of the centres so that they can continue to support the community into the future. This planning gets the project ready for construction, which depends on future funding.", + "We are demolishing theold kindergarten to build a new early childhood centre. It will include 4 kindergarten rooms. It will also have spaces for maternal and child health services, community programs and a toy library. This will allow the centre to offer 132 kinder places to local 3 and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $131,820 was allocated to this project.", + "In Round 1 of the 2023 Building Blocks Capacity Building Grants, $6,000,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about the planning of Red Cliffs Kindergarten" + ], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-RCK", "D1-15-RCK"], + "field_project_title": [ + "Building Blocks Planning", + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24597], + "status": [true], + "title": ["Red Cliffs Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9089fd49-3c48-41de-a050-30d3a1a81256"] + }, + "sort": ["Red Cliffs Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20254:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/red-cliffs-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a new toilet block to improve amenity and safety for students.", + "\u200b\u200b\u200bWe built an accessible, natural play space full of stimulating sensory elements to provide opportunities for free play and exploration for all students.\u200b\u200b \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000.", + "In 2017 the school received $128,000 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Red Cliffs Primary School." + ], + "field_latitude": ["-34.312313000057", "-34.31246"], + "field_latitude_longitude_value": ["-34.312313000057,142.18630485"], + "field_latitude_value": ["-34.312313000057"], + "field_longitude": ["142.18630485", "142.18564"], + "field_longitude_value": ["142.18630485"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "A new playground for Red Cliffs Primary School" + ], + "field_postcode": ["3496"], + "field_project_code": ["D1-01-4057", "01-4057"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2022", "Q3 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Murray Av"], + "field_suburb": ["Red Cliffs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20254], + "status": [true], + "title": ["Red Cliffs Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a83c0cff-5ea1-4d47-8cd2-e8acaf6362f5"] + }, + "sort": ["Red Cliffs Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20848:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/red-cliffs-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade irrigation systems on the front garden and oval.", + "We upgraded and modernised the school. The upgrades included: a new senior centre staff administration spaces covered locker areas refurbishments to the maths hub, library, and performing arts building. The project focused on creating flexible learning spaces, improving connections between internal and external areas, and upgrading site infrastructure.\u00a0\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $179,120.", + "In the 2016\u201317 State Budget, $7.06 million was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Red Cliffs Secondary College." + ], + "field_latitude": ["-34.3010916", "-34.299110"], + "field_latitude_longitude_value": ["-34.3010916,142.194353"], + "field_latitude_value": ["-34.3010916"], + "field_longitude": ["142.194353", "142.195300"], + "field_longitude_value": ["142.194353"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3496"], + "field_project_code": ["D1-01-8260", "01-8260"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2022", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q4 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["55 Fitzroy Av"], + "field_suburb": ["Red Cliffs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20848], + "status": [true], + "title": ["Red Cliffs Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["32fc4ab4-3448-42dd-a91b-f77fb2ee5b73"] + }, + "sort": ["Red Cliffs Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20719:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/red-hill-consolidated-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the staff toilets in Block E to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We built an inclusive playground. It includes play equipment and rubber soft fall surfacing.", + "We refurbished the prep and\u00a0Year 2 wing (Block A). This included construction of four general purpose classrooms, a breakout space, toilets, and outdoor learning space.", + "\u200bWe delivered a new architect-designed modular building to Red Hill Consolidated School to replace part of Block B.\u00a0 The new building includes classrooms, external learning areas, withdrawal and staff\u00a0spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $112,627 from the Minor Capital Works Fund.", + "In Round 6 of the Inclusive Schools Fund, this project received $164,000", + "In the 2019\u201320 State Budget, the school received $3.2 million.", + "In Round 3 of the program, the school was allocated $1,670,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Red Hill Consolidated School" + ], + "field_latitude": [ + "-38.366681", + "-38.366405", + "-38.36699", + "-38.36699" + ], + "field_latitude_longitude_value": ["-38.366681,144.995269"], + "field_latitude_value": ["-38.366681"], + "field_longitude": [ + "144.995269", + "144.996449", + "144.99663", + "144.99663" + ], + "field_longitude_value": ["144.995269"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3937"], + "field_project_code": [ + "D3-01-6249", + "D2-01-6249", + "D1-01-6249", + "01-6249" + ], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q1 2024", "Q2 2023", "Q2 2022", "Q2 2019"], + "field_start_date": ["Q2 2022", "Q2 2021", "Q2 2019", "Q2 2018"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["341 Arthurs Seat Rd"], + "field_suburb": ["Red Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20719], + "status": [true], + "title": ["Red Hill Consolidated School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b0fd6731-9bff-45e0-9c15-09f702f65ef5"] + }, + "sort": ["Red Hill Consolidated School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21072:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/red-rock-christian-college"], + "changed": ["2023-07-26T11:37:25+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school demolish their Prep\u2013Year 2 classrooms and build a new building. It now has 3 general learning areas, staff workspaces, a small group space, storage, and toilets. We also upgraded the septic system, added landscaping, and new play areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1.5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Red Rock Christian College" + ], + "field_latitude": ["-37.519099"], + "field_latitude_longitude_value": ["-37.519099,144.706022"], + "field_latitude_value": ["-37.519099"], + "field_longitude": ["144.706022"], + "field_longitude_value": ["144.706022"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["02-1960"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["340 Settlement Rd"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21072], + "status": [true], + "title": ["Red Rock Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["916ab6eb-e29a-4b36-b344-1ca8dbadade1"] + }, + "sort": ["Red Rock Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20488:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/regency-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet block. It has improved amenity, cleanliness and hygiene.\u00a0", + "We delivered a new architect-designed modular building to the school. The new building features as a hall.\u00a0 \u200b Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs.\u00a0 They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.\u00a0 The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $499,127.", + "In Round 3 of the program, the school was allocated $1,093,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Regency Park Primary School" + ], + "field_latitude": ["-37.854873", "-37.85199"], + "field_latitude_longitude_value": ["-37.854873,145.236165"], + "field_latitude_value": ["-37.854873"], + "field_longitude": ["145.236165", "145.23982"], + "field_longitude_value": ["145.236165"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3152"], + "field_project_code": ["D1-01-5131", "01-5131"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2023", "Q2 2019"], + "field_start_date": ["Q4 2021", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Amesbury Av"], + "field_suburb": ["Wantirna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20488], + "status": [true], + "title": ["Regency Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["28af889a-0c22-46da-9d97-9c96c4538da9"] + }, + "sort": ["Regency Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28956:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/remus-way-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We upgraded the children\u2019s toilets and installed a nappy change unit.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $58,650 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Remus Way Kindergarten" + ], + "field_latitude": ["-37.70561481"], + "field_latitude_longitude_value": ["-37.70561481,144.7858558"], + "field_latitude_value": ["-37.70561481"], + "field_longitude": ["144.7858558"], + "field_longitude_value": ["144.7858558"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3038"], + "field_project_code": ["15-691"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Remus Way"], + "field_suburb": ["Taylors Lakes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28956], + "status": [true], + "title": ["Remus Way Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["5864c9eb-8494-49ff-a97d-53d989a995ca"] + }, + "sort": ["Remus Way Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22639:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/renown-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We improved the outdoor space to make it safer and more accessible. It is more inclusive for children of all needs to play, learn and explore.", + "We expanded this kindergarten to create space for 20 more children. We added a classroom, children\u2019s bathrooms and an accessible toilet. The project has helped the kindergarten cater to children with special needs, and helped meet local demand for funded kindergarten for 3 and 4-year-olds.", + "We replaced the laundry facilities and added a private outdoor shower. We also refurbished the kindergarten bathroom, staff toilets and kitchen. We\u00a0updated the hallway and locker area, and safely removed asbestos from the ceiling." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $199, 100 was allocated to this project", + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $545,440 was allocated to this project.", + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $147,024 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Building Blocks Capacity Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Renown Kindergarten" + ], + "field_latitude": ["-37.84353347", "-37.8435843"], + "field_latitude_longitude_value": ["-37.84353347,144.9930947"], + "field_latitude_value": ["-37.84353347"], + "field_longitude": ["144.9930947", "144.9931913"], + "field_longitude_value": ["144.9930947"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3141"], + "field_project_code": ["D2-15-1036", "D1-15-1036", "15-1036"], + "field_project_title": [ + "Building Blocks Inclusion Grant", + "Building Blocks Capacity Building Grant - Expansion", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023", "Q4 2022", "Q1 2022"], + "field_start_date": ["Q2 2023", "Q4 2021", "Q3 2021"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["20 Cliff St"], + "field_suburb": ["South Yarra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22639], + "status": [true], + "title": ["Renown Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["55574894-157f-4dcc-b6d7-67dc49c2f009"] + }, + "sort": ["Renown Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20151:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/research-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0transformed\u00a0the school's tired old classrooms and facilities into the modern learning environments students and staff need to achieve their best." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the State for planning. This includes funding for this school. In the 2019\u201320 State Budget, the school received $5.7 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Research Primary School" + ], + "field_latitude": ["-37.70247"], + "field_latitude_longitude_value": ["-37.70247,145.18418"], + "field_latitude_value": ["-37.70247"], + "field_longitude": ["145.18418"], + "field_longitude_value": ["145.18418"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["01-2959"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["1570 Main Rd"], + "field_suburb": ["Research"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20151], + "status": [true], + "title": ["Research Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1efc7d30-ee6f-4590-8467-19e38d4b230b"] + }, + "sort": ["Research Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21384:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/reservoir-east-family-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We partnered with Darebin City Council to build a new kindergarten at Reservoir East Primary School. This 3-room centre will initially provide 66 kindergarten places across 2 of these rooms. The third room will be used for community and family services and will switch to provide an additional 33 kindergarten places as the local community grows and demand builds for more early childhood education. This kindergarten was built using modular construction, which means the bulk of the building works will take place off-site. Having the kindergarten and school together may help local children make a smoother transition into primary school and can also make drop-off time simpler for some families. Registrations for the Reservoir East Primary School Kindergarten are being taken by the Darebin Registration Team. You can also contact the Registration Team on (03) 8470 8825 or at\u00a0registration.kindergartenchildcare@darebin.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten funding, delivered over four years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Reservoir East Family Centre." + ], + "field_latitude": ["-37.7208938"], + "field_latitude_longitude_value": ["-37.7208938,145.0214813"], + "field_latitude_value": ["-37.7208938"], + "field_longitude": ["145.0214813"], + "field_longitude_value": ["145.0214813"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3073"], + "field_project_code": ["15-REPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Gisborne Cr"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21384], + "status": [true], + "title": ["Reservoir East Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fa36d6d4-1a14-42bf-a765-695bf3e2d64b"] + }, + "sort": ["Reservoir East Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20318:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/reservoir-east-primary-school"], + "changed": ["2023-08-09T16:16:09+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0completed\u00a0a major upgrade to the school which included new general learning and administration areas and a multi-purpose hall.", + "We\u00a0remodelled 2 classrooms and external garden spaces to create a multidisciplinary hub that caters for students with varying social, emotional and sensory needs. The new hub features an outdoor sensory space and garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $6.3 million was allocated to the school.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Reservoir East Primary School." + ], + "field_latitude": ["-37.720219"], + "field_latitude_longitude_value": ["-37.720219,145.022537"], + "field_latitude_value": ["-37.720219"], + "field_longitude": ["145.022537"], + "field_longitude_value": ["145.022537"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Reservoir East Primary School." + ], + "field_postcode": ["3073"], + "field_project_code": ["01-4686", "D1-01-4686"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2019", "Q1 2020"], + "field_start_date": ["Q2 2018", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["58 Boldrewood Pde"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20318], + "status": [true], + "title": ["Reservoir East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6ed0537e-9f2b-47c9-9446-bf163db38052"] + }, + "sort": ["Reservoir East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20887:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/reservoir-high-school"], + "changed": ["2023-08-31T11:55:11+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade classrooms in the Science and Technology Building.", + "We refurbished the west end and partially demolished and rebuilt the east end of the Manual Arts Block. As part of this upgrade, we built dedicated spaces for home economics, food technology, and textiles education. Additionally, we refurbished the D Wing.", + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building.\u200b\u200b\u200bOur modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $9.021 million.", + "In the 2020\u201321 State Budget, the school received $4.35 million.", + "In the 2019\u201320 State Budget, the school received $3.129 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Reservoir High School" + ], + "field_latitude": ["-37.722259", "-37.712337493896484", "-37.722259"], + "field_latitude_longitude_value": ["-37.722259,145.029772"], + "field_latitude_value": ["-37.722259"], + "field_longitude": ["145.029772", "145.00556945800781", "145.029772"], + "field_longitude_value": ["145.029772"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3073"], + "field_project_code": ["D2-01-8708", "D1-01-8708", "01-8708"], + "field_project_title": [ + "Upgrade and Modernisation - Science and Technology building", + "Upgrade and Modernisation - Manual Arts Block", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q1 2025", "Q2 2023", "Q4 2020"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q2 2019"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["855 Plenty Rd"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20887], + "status": [true], + "title": ["Reservoir High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["21a0818f-b711-477d-9b3c-ca89abe070cd"] + }, + "sort": ["Reservoir High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20243:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/reservoir-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and expanding this school, allowing it to enrol an extra 150 local students. The additional places will be available from the start of the 2023 school year. We will build a 2-storey Science, Technology, Engineering, Arts and Maths (STEAM) building with a ground-floor music pavilion. We will also upgrade the school's main building.", + "We built a new gymnasium and refurbished Block A.\u00a0", + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $1.856 million in planning funding. In the 2020-21 State Budget, the school received at least $15.034 million from a pool of more than $85 million to expand 7 schools in high-growth areas.", + "In the 2019\u201320 State Budget, the school received $378,700. In 2020, the school received $3.41 million.", + "In the 2019-20 State Budget, the school received $713,037 through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Reservoir Primary School" + ], + "field_latitude": ["-37.712337493896484", "-37.71131"], + "field_latitude_longitude_value": [ + "-37.712337493896484,145.00556945800781" + ], + "field_latitude_value": ["-37.712337493896484"], + "field_longitude": ["145.00556945800781", "145.00621"], + "field_longitude_value": ["145.00556945800781"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3073"], + "field_project_code": ["D2-01-3960", "01-3960", "D1-01-3960"], + "field_project_title": [ + "Upgrade and Modernisation - 2020-21 Funding", + "Upgrade and Modernisation - Gymnasium and Block A Refurbishment", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2023", "Q1 2022", "Q2 2020"], + "field_start_date": ["Q4 2020", "Q2 2019", "Q2 2019"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Duffy Street"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20243], + "status": [true], + "title": ["Reservoir Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["13a2ff71-f275-4cd5-bdb4-4737a12aa497"] + }, + "sort": ["Reservoir Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20643:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/reservoir-views-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive space with both calming and active play areas. The calming area has water and sand elements, and the active area\u00a0encourages creative and explorative play. We have also provided a\u00a0gathering space that incorporates indigenous food and medicinal plants to complement the existing community kitchen garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Reservoir Views Primary School" + ], + "field_latitude": ["-37.705518"], + "field_latitude_longitude_value": ["-37.705518,145.022725"], + "field_latitude_value": ["-37.705518"], + "field_longitude": ["145.022725"], + "field_longitude_value": ["145.022725"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3073"], + "field_project_code": ["01-5523"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["73-91 Hickford St"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20643], + "status": [true], + "title": ["Reservoir Views Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eaedd06b-61a4-408c-822d-afea43e7f6bf"] + }, + "sort": ["Reservoir Views Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25466:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/richmond-creche-and-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment. It is more accessible and has increased space for staff and children.We replaced groundcover bark with soft fall surfaces. We modified pathways and stairs that will be better for steep sloping areas. We replaced fencing and gates and installed more accessible play equipment and tables." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $179,300 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Richmond Creche and Kindergarten" + ], + "field_latitude": ["-37.82018061"], + "field_latitude_longitude_value": ["-37.82018061,144.9996105"], + "field_latitude_value": ["-37.82018061"], + "field_longitude": ["144.9996105"], + "field_longitude_value": ["144.9996105"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3121"], + "field_project_code": ["15-1069"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["14 Abinger St"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25466], + "status": [true], + "title": ["Richmond Creche and Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["271aa06f-a68e-43a8-8cab-df10d3ce7f4e"] + }, + "sort": ["Richmond Creche and Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20850:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/richmond-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school\u00a0will cater for 650 Year 7-12 students, and make a significant contribution to the area's educational and community life. We have\u00a0built\u00a0the school over two sites. The Griffiths Street\u00a0Campus\u00a0is\u00a0the home of\u00a0a striking academic precinct that puts the student learning experience at its core. The adjacent Gleadell St\u00a0Campus\u00a0comprises general purpose teaching spaces, four competition-grade netball courts and community facilities. We opened\u00a0the school in two stages. Gleadell Street\u00a0Campus The first cohort of Year 7 students started at this campus\u00a0i\u200b\u200bn term 1, 2018. Griffiths\u200b Street\u00a0Campus \u200bThis campus\u00a0opened in term 1, 2019 for the second cohort of Year 7 students and students moving into Year 8. Being located in the heart of Richmond, the school has\u00a0great transport options and is close to existing community infrastructure and services. The VSBA has\u00a0worked\u00a0closely with other precinct stakeholders including the City of Yarra, Lynall Hall Community School, Richmond Multicultural Children's Centre, Leo Berry's Boxing Gym, Gleadell Street Market Traders and the Richmond Union Bowls Club to ensure that their needs are considered throughout construction. \u200b \u200b\u200b \u200b\u200b\u200b", + "The Gleadell Street Campus comprises of general purpose teaching spaces, four competition-grade netball courts and community facilities. The first cohort of Year 7 students began i\u200b\u200bn Term 1, 2018." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $42 million was allocated to this project. This funding was in addition to the $1 million previously committed. The total funding for this project is $43 million.", + "In the 2016\u201317 State Budget, $42 million was allocated to this project. This funding was in addition to the $1 million previously committed. The total funding for this project is $43 million." + ], + "field_funding_type_name": ["New School Campus", "New School Campus"], + "field_landing_page_summary": [ + "Learn more about the build of Richmond High School" + ], + "field_latitude": ["-37.81747", "-37.8180488"], + "field_latitude_longitude_value": ["-37.81747,145.00239"], + "field_latitude_value": ["-37.81747"], + "field_longitude": ["145.00239", "145.0014046"], + "field_longitude_value": ["145.00239"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Building Richmond High School - academic campus", + "Richmond High School Gleadell Street campus - construction" + ], + "field_postcode": ["3121"], + "field_project_code": ["01-8271", "D1-01-8271"], + "field_project_title": [ + "New School Campus - Griffiths Street", + "New School Campus - Gleadell Street" + ], + "field_q_complete": ["Q1 2019", "Q1 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["4 Griffiths St"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20850], + "status": [true], + "title": ["Richmond High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["87e88a15-fdad-4d58-9314-fc236dc7eddb"] + }, + "sort": ["Richmond High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21187:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/richmond-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Richmond Kindergarten\u00a0In partnership with City of Yarra.\u00a0\u00a0 The upgrade increased kindergarten\u00a0capacity for three and four-year-olds. It also made the facility more inclusive by creating\u00a0an accessible entrance for all integrated community services, including maternal child health." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019-20, this project was allocated $500,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Richmond Kindergarten" + ], + "field_latitude": ["-37.8236123148974"], + "field_latitude_longitude_value": [ + "-37.8236123148974,145.00373783985742" + ], + "field_latitude_value": ["-37.8236123148974"], + "field_longitude": ["145.00373783985742"], + "field_longitude_value": ["145.00373783985742"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3121"], + "field_project_code": ["15-1066"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Duke St"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21187], + "status": [true], + "title": ["Richmond Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b092a6af-cebd-4575-a901-554d37aeeee3"] + }, + "sort": ["Richmond Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20552:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/richmond-primary-school"], + "changed": ["2023-08-17T21:07:45+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are expanding this school. This will give students broader learning opportunities and create places for an extra 100 local children.", + "We completed general upgrades and refurbishment at\u00a0the school. We converted circulation and storage areas into a new classroom as well as\u00a0refurbishing staff facilities. We also upgraded\u00a0existing open plan classrooms and a corridor.\u00a0", + "We built an inclusive, open plan learning space\u00a0with panelling and speakers that help manage classroom noise. These works benefit the learning and concentration levels of 'at risk' students.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $15.384 million", + "In the 2018\u201319 State Budget $200,000 was allocated to the school. A further $100,000 in School Pride and Sports funding has been allocated.", + "In 2017, the school received $79,200 from Round 3 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Richmond Primary School" + ], + "field_latitude": ["-37.82975", "-37.82975"], + "field_latitude_longitude_value": ["-37.82975,144.99961"], + "field_latitude_value": ["-37.82975"], + "field_longitude": ["144.99961", "144.99961"], + "field_longitude_value": ["144.99961"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3121"], + "field_project_code": ["D2-01-5269", "D1-01-5269", "01-5269"], + "field_project_title": [ + "Upgrade and Modernisation - Building Space for More Students", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2026", "Q2 2019", "Q3 2018"], + "field_start_date": ["Q2 2023", "Q2 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["85 Brighton St"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20552], + "status": [true], + "title": ["Richmond Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f0f26c14-a548-44ef-a04c-a28391c73cd7"] + }, + "sort": ["Richmond Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20458:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/richmond-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We've completed\u00a0landscaping\u00a0to complement the competition-grade outdoor netball courts that are\u00a0being delivered through the Victorian Government's Inner City Netball Program\u200b." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $1.08 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Richmond West Primary School" + ], + "field_latitude": ["-37.81386"], + "field_latitude_longitude_value": ["-37.81386,144.99613"], + "field_latitude_value": ["-37.81386"], + "field_longitude": ["144.99613"], + "field_longitude_value": ["144.99613"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3121"], + "field_project_code": ["01-5044"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Lennox St"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20458], + "status": [true], + "title": ["Richmond West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["983bcfa1-68f8-4db3-a45f-1a873eb4e2e1"] + }, + "sort": ["Richmond West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21189:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/riddells-creek-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bMacedon Ranges Shire Council has\u00a0upgraded the kindergarten, allowing it to\u00a0offer\u00a0more modern facilities\u00a0to more children.\u00a0\u200b Reorientating the entrance has improved accessibility, as well as how families\u00a0integrate with\u00a0services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u20132018 Children's Facilities Capital Program $211,500 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Riddells Creek Kindergarten" + ], + "field_latitude": ["-37.46213"], + "field_latitude_longitude_value": ["-37.46213,144.67554"], + "field_latitude_value": ["-37.46213"], + "field_longitude": ["144.67554"], + "field_longitude_value": ["144.67554"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3431"], + "field_project_code": ["15-1097"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["23 Mahoneys Rd"], + "field_suburb": ["Riddells Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21189], + "status": [true], + "title": ["Riddells Creek Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b4686384-2b4e-44ee-b081-6913b312691e"] + }, + "sort": ["Riddells Creek Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20557:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/riddells-creek-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWith the\u00a0Round 1\u00a0funding, we created\u00a0an outdoor learning space.\u00a0 \u00a0 With funding received in Round 2, we developed this further with facilities for quiet time and re-engagement. This space incorporates a kitchen garden with accessible raised beds, shading and purpose-built learning spaces in a\u00a0new shed.\u00a0 \u00a0 \u200b", + "We\u00a0constructed a new senior learning building which\u00a0includes learning and withdrawal spaces, a maker space and staff work areas.\u00a0 We\u00a0also completed\u00a0associated landscaping, including a senior courtyard,\u00a0and undertook\u00a0maintenance on the administration block.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015, the school received $100,000 from Round 1 of the Inclusive Schools Fund. A year later, they were allocated a further $140,740 from Round 2.", + "In the 2018\u201319 State Budget $2.2 million was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Riddells Creek Primary School" + ], + "field_latitude": ["-37.460999", "-37.460999"], + "field_latitude_longitude_value": ["-37.460999,144.679535"], + "field_latitude_value": ["-37.460999"], + "field_longitude": ["144.679535", "144.679535"], + "field_longitude_value": ["144.679535"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3431"], + "field_project_code": ["01-528", "D1-01-528"], + "field_project_title": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2017", "Q2 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["69-77 Main Rd"], + "field_suburb": ["Riddells Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20557], + "status": [true], + "title": ["Riddells Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["75c3e163-2679-48d3-bb5c-b85c8c7b09a9"] + }, + "sort": ["Riddells Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21336:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ride-avenue-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The preschool redeveloped its\u00a0maternal and child health clinic and created a new inclusive learning space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $198,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ride Avenue Preschool" + ], + "field_latitude": ["-36.55531218010055"], + "field_latitude_longitude_value": [ + "-36.55531218010055,145.97148965451487" + ], + "field_latitude_value": ["-36.55531218010055"], + "field_longitude": ["145.97148965451487"], + "field_longitude_value": ["145.97148965451487"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3672"], + "field_project_code": ["15-86"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Ride Av"], + "field_suburb": ["Benalla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21336], + "status": [true], + "title": ["Ride Avenue Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["23feee99-9d4f-4104-bb46-c94563fbcabe"] + }, + "sort": ["Ride Avenue Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20400:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ringwood-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0delivered a new architect-designed modular building to the school to replace Block A with new classrooms, an art and craft room, library and student toilets.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2,744,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ringwood Heights Primary School" + ], + "field_latitude": ["-37.80393"], + "field_latitude_longitude_value": ["-37.80393,145.21687"], + "field_latitude_value": ["-37.80393"], + "field_longitude": ["145.21687"], + "field_longitude_value": ["145.21687"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["01-4911"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Summit Cr"], + "field_suburb": ["Ringwood North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20400], + "status": [true], + "title": ["Ringwood Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c63affc4-b7c3-4a94-8fcf-63e5e0864baa"] + }, + "sort": ["Ringwood Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20260:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ringwood-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0replaced an\u00a0older building containing asbestos with a new architecturally-designed permanent modular building. The new building features\u00a0general purpose classrooms, staff toilets and withdrawal spaces.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $3.013 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ringwood North Primary School" + ], + "field_latitude": ["-37.79313"], + "field_latitude_longitude_value": ["-37.79313,145.230739"], + "field_latitude_value": ["-37.79313"], + "field_longitude": ["145.230739"], + "field_longitude_value": ["145.230739"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["01-4120"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["172 Oban Rd"], + "field_suburb": ["Ringwood North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20260], + "status": [true], + "title": ["Ringwood North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ab2a01d6-e1f5-45dd-b650-b62f5e234810"] + }, + "sort": ["Ringwood North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20849:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ringwood-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building on the major upgrades delivered to Ringwood Secondary students since 2017, by constructing a new STEAM (science, technology, engineering, arts and mathematics) building and canteen.", + "We completed Stage 2 of the school's\u00a0upgrade, building\u00a0a\u00a0two-storey senior learning centre. This features classrooms, a collaborative central space,\u00a0break-out areas\u00a0and a VCE centre. The first floor also connects to the upper level of the\u00a0Workshop and Trades Building.", + "\u200b\u200b\u200b\u200bWe completely redeveloped the school, including constructing a new Junior School building, replacing 11 relocatables with permanent classrooms, refurbishing the library, and reconfiguring the car park.\u200b The Maroondah Education Plan includes Ringwood Secondary College's redevelopment, a stadium for Norwood Secondary College, a performing arts centre for Mullum Primary School, and the consolidation of Melba College's two campuses onto one site.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $14.735 million.", + "In the 2018\u201319 State Budget $5.5 million was allocated to the school.", + "In the 2014\u201315 State Budget, $2.2 million was allocated to the school. The school also received $357,727 in planned maintenance funding. In the 2015\u201316 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ringwood Secondary College" + ], + "field_latitude": ["-37.811397552490234", "-37.816250", "-37.816353"], + "field_latitude_longitude_value": [ + "-37.811397552490234,145.23062133789063" + ], + "field_latitude_value": ["-37.811397552490234"], + "field_longitude": ["145.23062133789063", "145.239400", "145.239777"], + "field_longitude_value": ["145.23062133789063"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["D2-01-8270", "D1-01-8270", "01-8270"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q2 2024", "Q4 2020", "Q3 2017"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Bedford Rd"], + "field_suburb": ["Ringwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20849], + "status": [true], + "title": ["Ringwood Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2ff4731c-fc34-4ecd-9c75-45e87a61560b"] + }, + "sort": ["Ringwood Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20078:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ripplebrook-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the\u00a0school build a new playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $78,772." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ripplebrook Primary School" + ], + "field_latitude": ["-38.2035116"], + "field_latitude_longitude_value": ["-38.2035116,145.7575234"], + "field_latitude_value": ["-38.2035116"], + "field_longitude": ["145.7575234"], + "field_longitude_value": ["145.7575234"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["01-2129"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2260 Westernport Rd"], + "field_suburb": ["Ripplebrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20078], + "status": [true], + "title": ["Ripplebrook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["651b4822-f8bc-4c49-8ef9-82d9fa75b5d9"] + }, + "sort": ["Ripplebrook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22614:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ripponlea-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play space with new landscaping and shaded areas. The improved space will feature sustainable design and Indigenous themes.", + "We built an accessible bathroom for use by families and staff of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-21 Building Blocks Improvement Grant, $102,485 was allocated to this project.", + "In the 2020-21 Building Blocks Inclusion Grant round, $56,750 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ripponlea Kindergarten." + ], + "field_latitude": ["-37.87459639", "-37.87459639"], + "field_latitude_longitude_value": ["-37.87459639,145.0053171"], + "field_latitude_value": ["-37.87459639"], + "field_longitude": ["145.0053171", "145.0053171"], + "field_longitude_value": ["145.0053171"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3183"], + "field_project_code": ["15-281", "D1-15-281"], + "field_project_title": [ + "Building Blocks Improvement Grant", + "Building Blocks Inclusion Grant" + ], + "field_q_complete": ["Q3 2022", "Q3 2023"], + "field_start_date": ["Q4 2021", "Q4 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["25 Carrington Grv"], + "field_suburb": ["St Kilda East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22614], + "status": [true], + "title": ["Ripponlea Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["bc7f7f58-3d80-4296-840c-182ec3f72bd4"] + }, + "sort": ["Ripponlea Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20257:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ripponlea-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished staff and student toilets in the main building to provide accessible, hygienic, and safe facilities.", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $243,665.", + "In Round 8 of the Inclusive Schools Fund, the project received $177,834." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Ripponlea Primary School." + ], + "field_latitude": ["-37.8744169", "-37.874608"], + "field_latitude_longitude_value": ["-37.8744169,145.003688"], + "field_latitude_value": ["-37.8744169"], + "field_longitude": ["145.003688", "145.005054"], + "field_longitude_value": ["145.003688"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3183"], + "field_project_code": ["01-4087", "d1-4087"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q1 2023", "Q2 2024"], + "field_start_date": ["Q4 2020", "Q4 2022"], + "field_status_name": ["Complete", "Design"], + "field_street_address": ["25 Carrington Gr"], + "field_suburb": ["St Kilda East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20257], + "status": [true], + "title": ["Ripponlea Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c221ae9f-40ef-40b2-96e4-1fb3500578d0"] + }, + "sort": ["Ripponlea Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20685:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/riverbend-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school\u00a0in Wyndham Vale. It opened in 2021 and helps the growing local population get great education close to home. Lisa Conibeer has been appointed as the first principal. Enrolments are now open\u00a0for Prep to\u00a0Year 6.\u00a0 Your new school includes\u00a0the following facilities: 3 learning neighbourhoods administration building outdoor play courts performing arts and physical education building sports field. Wunggurrwil Dhurrung Centre\u00a0is located next to the\u00a0school.\u00a0This may\u00a0help local\u00a0children make\u00a0a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 For more enrolment information, please\u00a0contact the school on\u00a09742 8800. Further information on the school, including enrolment,\u00a0can be found on its\u00a0official Facebook page. Supported Inclusion This\u00a0is\u00a0a\u00a0supported inclusion school.\u00a0This means the school has been designed to support a higher number of students with a disability than a typical mainstream school. Included in the school design are facilities that provide additional support, so that all students have access to the same learning and play spaces. These additional facilities include: wider corridors an additional first aid room in the administration building (where a hoist could be installed if needed) additional spaces throughout the school that could be used as consultation rooms an enhanced accessible toilet (where a hoist could be installed if needed) a project/kitchen space where kids with special eating requirements can be accommodated an additional fitness room for therapeutic use. School Name Riverbend\u00a0Primary\u00a0School was originally known by the interim\u00a0name of Wollahra Primary\u00a0School while it was being planned and built. Riverbend Primary School\u00a0was chosen as the school name following community consultation and discussions with Geographic Names Victoria, with consideration given to factors including\u00a0public interest, relevance to the local area, and the consideration of local Indigenous languages. The school is named\u00a0after the nearby Riverbend Historical Park. We consulted\u00a0with local communities for 3 weeks from Wednesday 24 June to Wednesday 15 July 2020. Thank you for your input." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition.This includes funding for Riverbend Primary School. In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Riverbend Primary School." + ], + "field_latitude": ["-37.875881"], + "field_latitude_longitude_value": ["-37.875881,144.625947"], + "field_latitude_value": ["-37.875881"], + "field_longitude": ["144.625947"], + "field_longitude_value": ["144.625947"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3024"], + "field_project_code": ["01-5580"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Wollahra Rise"], + "field_suburb": ["Wyndham Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20685], + "status": [true], + "title": ["Riverbend Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["79d0e6bd-289c-46c2-9a0c-54a6b4309dd6"] + }, + "sort": ["Riverbend Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33009:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/riverdale-north-primary-school-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are building a new primary school in Tarneit. It will open in 2025 with places for up to 650 students.We're building Riverdale North Primary School Kindergarten (interim name) at the school. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Riverdale North Primary School (interim name)" + ], + "field_latitude": ["-37.834373150220266"], + "field_latitude_longitude_value": [ + "-37.834373150220266,144.64123166158356" + ], + "field_latitude_value": ["-37.834373150220266"], + "field_longitude": ["144.64123166158356"], + "field_longitude_value": ["144.64123166158356"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-5614"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["290 Hummingbird Boulevard"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33009], + "status": [true], + "title": ["Riverdale North Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["cc4d38f3-673b-43f9-aa03-10278dd4e802"] + }, + "sort": ["Riverdale North Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33838:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/riverdale-north-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a 4-room kindergarten at the new Riverdale North Primary School (interim name).\u00a0It will open in 2025 and provide 132 kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Riverdale North Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-37.832854"], + "field_latitude_longitude_value": ["-37.832854,144.640218"], + "field_latitude_value": ["-37.832854"], + "field_longitude": ["144.640218"], + "field_longitude_value": ["144.640218"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3029"], + "field_project_code": ["15-RNPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_status_name": ["Design"], + "field_street_address": ["1 Caladenia Avenue"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33838], + "status": [true], + "title": [ + "Riverdale North Primary School Kindergarten (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5a692e23-4acb-4a1a-8d9e-ba3b93fcf092"] + }, + "sort": ["Riverdale North Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20586:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/riverwalk-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a\u00a0new primary school in Werribee. The school will help ease\u00a0enrolment pressures for surrounding schools, and\u00a0meet demand from\u00a0a growing population.\u200b The school\u00a0will include a\u00a0performing arts and physical education building, and administration areas. We are building a kinder on site that is\u00a0scheduled to open in 2021.\u00a0It will\u00a0help local\u00a0children make\u00a0a smooth transition from pre-school and reduce the number of drop-offs for some parents with kinder and school-aged children.\u00a0 Further information on the school can be found on its official Facebook page. Supported inclusion school Riverwalk Primary School is a\u00a0supported inclusion school. This means the school has been designed to support a higher number of students with a disability than a typical mainstream school. Included across the school are facilities that provide additional support, so that all students have access to the same learning and play. School name The school was originally known by the interim name of Wyndham South (Riverwalk) Primary School while it was being planned and built. The school is located in the 'Riverwalk Estate'. Its new name reflects this location and pays tribute to the nearby Werribee River. The Department of Education chose this name after consulting with local communities on the names for all schools opening in 2020. To reach a final decision, the Department considered this community feedback along with the guiding principles for naming a new school. Possible names for all the new schools were initially shortlisted by school advisory groups, who considered factors such as public interest, relevance to the local area, and local First Nations languages. The names were also chosen to help reflect each school's unique identity, inspire local pride and make them easily locatable." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2017\u201318 State Budget allocated funding to buy land in Wyndham for a new school.The school received an additional $23.7 million in the 2018\u201319 State Budget for construction. In the 2018\u201319 State Budget $3 million was allocated to the early learning facility.In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Riverwalk Primary School." + ], + "field_latitude": ["-37.921754"], + "field_latitude_longitude_value": ["-37.921754,144.638817"], + "field_latitude_value": ["-37.921754"], + "field_longitude": ["144.638817"], + "field_longitude_value": ["144.638817"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-5361"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["56 Timbarra Dr"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20586], + "status": [true], + "title": ["Riverwalk Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["165ee0be-1cfe-4f45-a8db-ef5996c0b754"] + }, + "sort": ["Riverwalk Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21474:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/riverwalk-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bA new kindergarten has been built at the school. Having the kindergarten and school together may help local children make a smooth transition from preschool and reduce the number of drop-offs for some parents with kinder and school-aged children. This kindergarten will be operational in 2021.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $3 million was allocated for the early learning facility at Riverwalk Primary School." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Riverwalk Primary School Kindergarten" + ], + "field_latitude": ["-37.92187"], + "field_latitude_longitude_value": ["-37.92187,144.63849"], + "field_latitude_value": ["-37.92187"], + "field_longitude": ["144.63849"], + "field_longitude_value": ["144.63849"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["K-01-5361"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["56 Timbarra Dr"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21474], + "status": [true], + "title": ["Riverwalk Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["adaf9d45-e02c-43e3-8d57-526ee81fd26d"] + }, + "sort": ["Riverwalk Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28340:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/riviera-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-02T14:59:33+11:00"], + "field_about_project_processed": [ + "We are building a 3-room modular kindergarten at Riviera Preschool. We will demolish the old kinder and maternal and child health building to make way for the new preschool. We are also extending the carpark, adding new fencing and some landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 3 of the 2022\u201323 Building Blocks Capacity Grant stream." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Riviera Preschool." + ], + "field_latitude": ["-38.09091223"], + "field_latitude_longitude_value": ["-38.09091223,145.1322148"], + "field_latitude_value": ["-38.09091223"], + "field_longitude": ["145.1322148"], + "field_longitude_value": ["145.1322148"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198\u00a0"], + "field_project_code": ["15-EL-575"], + "field_project_title": [ + "Building Blocks Capacity Grant- Modular Kinder" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["31A Newton St"], + "field_suburb": ["Seaford\u00a0"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28340], + "status": [true], + "title": ["Riviera Preschool"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["aaf36920-e9a9-442e-8b03-9fb6183b655e"] + }, + "sort": ["Riviera Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21319:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/robert-cochrane-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Robert Cochrane Kindergarten to improve the quality of the learning environment. We replaced the roof and gutters to ensure the facilities remain fit for purpose.", + "We are upgrading the playground and equipment to make the space accessible to children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $149,320 was allocated to the project.", + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $348,593 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Robert Cochrane Kindergarten" + ], + "field_latitude": ["-37.8240179", "-37.82389076"], + "field_latitude_longitude_value": ["-37.8240179,145.0412798"], + "field_latitude_value": ["-37.8240179"], + "field_longitude": ["145.0412798", "145.0415696"], + "field_longitude_value": ["145.0412798"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3122"], + "field_project_code": ["15-615", "D1-15-615"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2022", "Q2 2022"], + "field_start_date": ["Q4 2020", "Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2A Minona St"], + "field_suburb": ["Hawthorn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21319], + "status": [true], + "title": ["Robert Cochrane Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6d027607-f494-4d62-b99f-eb24bce516c6"] + }, + "sort": ["Robert Cochrane Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22356:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/roberts-mccubbin-primary-school"], + "changed": ["2023-09-11T14:46:57+10:00"], + "created": ["2022-01-14T14:24:09+11:00"], + "field_about_project_processed": [ + "We replaced the decked area with new landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $433,994" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Roberts McCubbin Primary School" + ], + "field_latitude": ["-37.834767"], + "field_latitude_longitude_value": ["-37.834767,145.125206"], + "field_latitude_value": ["-37.834767"], + "field_longitude": ["145.125206"], + "field_longitude_value": ["145.125206"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3128"], + "field_project_code": ["01-5419"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["57 Birdwood Street"], + "field_suburb": ["Box Hill South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22356], + "status": [true], + "title": ["Roberts McCubbin Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["7e4a2398-3179-491b-8972-393a875892a0"] + }, + "sort": ["Roberts McCubbin Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25454:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/robina-scott-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We've created more flexible learning spaces by replacing an internal wall with a sliding door. This increased indoor space allows the centre to offer 10 extra kindergarten places to local children. We also upgraded the playground to make it more inclusive for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $180,862 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Robina Scott Kindergarten" + ], + "field_latitude": ["-37.86528327"], + "field_latitude_longitude_value": ["-37.86528327,144.9037818"], + "field_latitude_value": ["-37.86528327"], + "field_longitude": ["144.9037818"], + "field_longitude_value": ["144.9037818"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3016"], + "field_project_code": ["15-1414"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["83 Cecil St"], + "field_suburb": ["Williamstown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25454], + "status": [true], + "title": ["Robina Scott Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["baf5ab66-56d1-441b-b9b7-0e7b3c717185"] + }, + "sort": ["Robina Scott Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20851:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/robinvale-college"], + "changed": ["2023-07-06T14:33:06+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground. It includes play equipment and soft fall.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Robinvale College" + ], + "field_latitude": ["-34.5894285003651"], + "field_latitude_longitude_value": [ + "-34.5894285003651,142.778887698877" + ], + "field_latitude_value": ["-34.5894285003651"], + "field_longitude": ["142.778887698877"], + "field_longitude_value": ["142.778887698877"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3549"], + "field_project_code": ["01-8276"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["88 George Street"], + "field_suburb": ["Robinvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20851], + "status": [true], + "title": ["Robinvale College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e4b92c34-f0ae-4b49-868c-64811f79f02a"] + }, + "sort": ["Robinvale College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20805:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rochester-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the toilets. Students now have access to modern and accessible bathrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rochester Primary School." + ], + "field_latitude": ["-36.3554023611131"], + "field_latitude_longitude_value": [ + "-36.3554023611131,144.699644144354" + ], + "field_latitude_value": ["-36.3554023611131"], + "field_longitude": ["144.699644144354"], + "field_longitude_value": ["144.699644144354"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3561"], + "field_project_code": ["01-795"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2 George St"], + "field_suburb": ["Rochester"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20805], + "status": [true], + "title": ["Rochester Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["66864817-7d3f-454a-8fa3-6a6e9430dff4"] + }, + "sort": ["Rochester Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20852:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rochester-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0and modernised the school. This included constructing an interdisciplinary centre and updating arts, science and toilet areas. We also refurbished a flood-damaged\u00a0learning space.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $5.3 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rochester Secondary College" + ], + "field_latitude": ["-36.35683"], + "field_latitude_longitude_value": ["-36.35683,144.69814"], + "field_latitude_value": ["-36.35683"], + "field_longitude": ["144.69814"], + "field_longitude_value": ["144.69814"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Rochester Secondary College - Upgrade"], + "field_postcode": ["3561"], + "field_project_code": ["01-8280"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Edward St"], + "field_suburb": ["Rochester"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20852], + "status": [true], + "title": ["Rochester Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5a1793c5-ee2d-4a0f-ab4a-0ed7871dcced"] + }, + "sort": ["Rochester Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20538:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rolling-hills-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We linked the habitat and outdoor learning area to the veggie gardens so that they are accessible for all students.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Inclusive Schools Fund, $177,400 was allocated to the school." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rolling Hills Primary School" + ], + "field_latitude": ["-37.76658"], + "field_latitude_longitude_value": ["-37.76658,145.32672"], + "field_latitude_value": ["-37.76658"], + "field_longitude": ["145.32672"], + "field_longitude_value": ["145.32672"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3138"], + "field_project_code": ["01-5241"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["52 Landscape Dr"], + "field_suburb": ["Mooroolbark"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20538], + "status": [true], + "title": ["Rolling Hills Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["62af0b6b-5f32-437d-9c06-42ad82861c53"] + }, + "sort": ["Rolling Hills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20382:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rollins-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helped\u00a0upgrade the school's oval.", + "We delivered\u00a0a new architect-designed modular building to the school. The new building features general purpose classrooms, art room, administration offices and toilets. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The school received $307,000 through the School Pride and Sports Funding program.", + "In the 2019\u201320 State Budget, the school received $3.46 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rollins Primary School" + ], + "field_latitude": ["-38.10232"], + "field_latitude_longitude_value": ["-38.10232,144.3325"], + "field_latitude_value": ["-38.10232"], + "field_longitude": ["144.3325"], + "field_longitude_value": ["144.3325"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["01-4867", "D1-01-4867"], + "field_project_title": [ + "School Pride and Sports Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q1 2020", "Q3 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Wolseley Gr"], + "field_suburb": ["Bell Post Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20382], + "status": [true], + "title": ["Rollins Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["50c47cfd-6bcd-4b41-a254-318d42613a18"] + }, + "sort": ["Rollins Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21190:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/romsey-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Macedon Ranges City Council upgraded Romsey Kindergarten's playground to create new areas for creative play and shaded zones. Fencing between the kindergarten's play areas were removed to bring children together and overall improvements were made to accessibility. The Maternal and Child Health room and toy library room were also upgraded to improve accessibility and integration.\u200b", + "\u200bMacedon Ranges Shire Council used\u00a0this funding to upgrade Romsey Kindergarten to provide a contemporary and inclusive early education centre that meets the needs of a growing community. The new layout\u00a0re-orientates the entrance to\u00a0create a dual entry, with\u00a0access to both the kindergarten and primary school and\u00a0forms an education precinct to\u00a0improve opportunities for partnership and integration.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316 $120,000 was allocated to the kindergarten.", + "In 2017\u201318, $330,000 was provided to the kindergarten." + ], + "field_funding_type_name": [ + "Early Learning Facility Upgrade", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Romsey Kindergarten" + ], + "field_latitude": ["-37.36353", "-37.36353"], + "field_latitude_longitude_value": ["-37.36353,144.7436899"], + "field_latitude_value": ["-37.36353"], + "field_longitude": ["144.7436899", "144.7436899"], + "field_longitude_value": ["144.7436899"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3434"], + "field_project_code": ["15-1099", "D1-15-1099"], + "field_project_title": [ + "Early Learning Facility Upgrade - Maternal & Child Health Room, Toy Library, Creative Play Areas", + "Early Learning Facility Upgrade - New Layout" + ], + "field_q_complete": ["Q1 2019", "Q1 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["32 Main St"], + "field_suburb": ["Romsey"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21190], + "status": [true], + "title": ["Romsey Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9d1b1b73-5bdf-413e-a4ea-da43a771f44d"] + }, + "sort": ["Romsey Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20213:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/romsey-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Romsey Primary School with modern teaching and learning environments.\u00a0 We transformed buildings\u00a0into\u00a0multifunction spaces and a STEAM (science, technology, engineering, arts and maths)\u00a0centre. The works also addressed the school's maintenance issues, provided landscaping, and added extra\u00a0lighting to the carpark. School provision In our planning, we investigated\u00a0the possibility of expanding the primary school to a P\u20139 school. This included consulting the community to explore the potential benefits and concerns raised by the P\u20139 option, as well as factors that influence secondary school choice and access for local students. The research found there are not enough students in the Romsey area to offer a broad, quality Year 7\u20139 curriculum at the primary school or a local standalone Years 7\u201312 secondary school, in the short or medium term. The Victorian Government will continue to closely monitor population changes\u00a0to ensure Romsey families have sufficient quality primary and secondary education options.\u00a0 You can contact us for a copy of the key findings.\u00a0 Community engagement In October 2018, we consulted with the community from Romsey and the surrounding Macedon Ranges to gain feedback about factors influencing secondary school access and choice for local students. The consultation also explored the potential benefits and concerns raised by a possible P\u20139 option. Overall, the consultation findings did not establish clear support for expanding Romsey Primary School to P\u20139. While some were in favour of expanding Romsey Primary School to P\u20139, significant numbers responded \u2018no\u2019 or \u2018not sure\u2019. You can contact us for a copy of the community engagement report.\u00a0", + "\u200bWe built an inclusive space with a sandpit and seating, a synthetic turf surface and outdoor musical instruments.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2018\u201319 State Budget allocated $3.2 million to enhance education in the Romsey area.", + "In 2018, $180,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Romsey Primary School" + ], + "field_latitude": ["-37.35417523"], + "field_latitude_longitude_value": ["-37.35417523,144.7453792"], + "field_latitude_value": ["-37.35417523"], + "field_longitude": ["144.7453792"], + "field_longitude_value": ["144.7453792"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3434"], + "field_project_code": ["01-366", "D1-01-366"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2022", "Q1 2020"], + "field_start_date": ["Q2 2018", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2-56 Station St"], + "field_suburb": ["Romsey"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20213], + "status": [true], + "title": ["Romsey Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["488764f6-1b3d-4375-9628-0555adcb5bc7"] + }, + "sort": ["Romsey Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20354:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosamond-special-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised this school. It ensures students have learning environments they need to achieve their full potential.", + "We built an outdoor area to promote long-term physical awareness. The space accommodates a wide range of activities that promote connection with natural environments, enhancement of social skills and increased physical activity." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In 2018, $212,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosamond Special School" + ], + "field_latitude": ["-37.784652709960938", "-37.77963666"], + "field_latitude_longitude_value": [ + "-37.784652709960938,144.85385131835937" + ], + "field_latitude_value": ["-37.784652709960938"], + "field_longitude": ["144.85385131835937", "144.8554086"], + "field_longitude_value": ["144.85385131835937"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3019"], + "field_project_code": ["D1-01-4792", "01-4792"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q2 2020"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["276 Ballarat Rd"], + "field_suburb": ["Braybrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20354], + "status": [true], + "title": ["Rosamond Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3d7ca57a-e429-4024-9642-c1a5a7210d98"] + }, + "sort": ["Rosamond Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20342:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosanna-golf-links-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive outdoor learning space. This area now has play equipment and synthetic turf.", + "\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200bModernisation of Rosanna Golf Links Primary was completed in 2018. This included\u00a0the\u00a0construction of two new classroom blocks and an administration area, and improvements to the school\u2019s library and deaf facilities.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000", + "In the 2016\u201317 State Budget, $680,000 has been allocated to the school. In the 2014\u201315 State Budget, $5.6 million was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosanna Golf Links Primary School" + ], + "field_latitude": ["-37.7360030501184", "-37.73529"], + "field_latitude_longitude_value": [ + "-37.7360030501184,145.075618399565" + ], + "field_latitude_value": ["-37.7360030501184"], + "field_longitude": ["145.075618399565", "145.07497"], + "field_longitude_value": ["145.075618399565"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["D1-01-4753", "01-4753"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2023", "Q3 2018"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Interlaken Parade"], + "field_suburb": ["Rosanna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20342], + "status": [true], + "title": ["Rosanna Golf Links Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5515cb9e-08be-42fa-80f0-bd64eb7242f9"] + }, + "sort": ["Rosanna Golf Links Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20302:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosanna-primary-school"], + "changed": ["2023-07-18T10:52:57+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped improve safety at the school by\u00a0repairing\u00a0damaged asphalt surfaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $64,920." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosanna Primary School" + ], + "field_latitude": ["-37.739845275878906"], + "field_latitude_longitude_value": [ + "-37.739845275878906,145.07081604003906" + ], + "field_latitude_value": ["-37.739845275878906"], + "field_longitude": ["145.07081604003906"], + "field_longitude_value": ["145.07081604003906"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["01-4568"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Grandview Gr"], + "field_suburb": ["Rosanna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20302], + "status": [true], + "title": ["Rosanna Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f7a18a46-3d4d-4aef-9674-26e2f059c945"] + }, + "sort": ["Rosanna Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20117:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosebud-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe are upgrading and modernising Rosebud Primary School, adding new facilities that will allow it to offer places to an extra 200 local students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $13.77 million, which is a share in $130.1 million from the Established Areas Program." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosebud Primary School" + ], + "field_latitude": ["-38.355408"], + "field_latitude_longitude_value": ["-38.355408,144.908508"], + "field_latitude_value": ["-38.355408"], + "field_longitude": ["144.908508"], + "field_longitude_value": ["144.908508"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3939"], + "field_project_code": ["01-2627"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Point Nepean Rd"], + "field_suburb": ["Rosebud"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20117], + "status": [true], + "title": ["Rosebud Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ed5290e2-2c13-4a7e-91b2-f00d69f0ea27"] + }, + "sort": ["Rosebud Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20853:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosebud-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most.", + "We are refurbishing the toilets in the school hall to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We supported the school to create a wellness centre.", + "We built an inclusive outdoor space with a collaborative learning area and a sensory garden. The learning area, encircled by the garden, is\u00a0fitted with an outdoor whiteboard and ICT connectivity. There are\u00a0break-out zones for independent work and reflection." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.018 million.", + "In the 2022\u201323 State Budget the project received $288,127 from the Minor Capital Works Fund.", + "From the 2019\u201320 School Pride and Sports Fund the school received $300,000 for wellness centre.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosebud Secondary College" + ], + "field_latitude": [ + "-38.3675712", + "-38.367615", + "-38.3675712", + "-38.367615" + ], + "field_latitude_longitude_value": ["-38.3675712,144.8869163"], + "field_latitude_value": ["-38.3675712"], + "field_longitude": [ + "144.8869163", + "144.887447", + "144.8869163", + "144.887447" + ], + "field_longitude_value": ["144.8869163"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3939"], + "field_project_code": [ + "D1-01-8290", + "D3-01-8290", + "D2-01-8290", + "01-8290" + ], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q2 2024", "Q4 2021", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q2 2022", "Q1 2020", "Q4 2018"], + "field_status_name": [ + "Construction", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["245 Eastbourne Rd"], + "field_suburb": ["Rosebud"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20853], + "status": [true], + "title": ["Rosebud Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6f4a0ef8-382d-406f-aafa-12202d3ae455"] + }, + "sort": ["Rosebud Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20775:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosedale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to repaint and improve the amenity of the school buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $112,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosedale Primary School" + ], + "field_latitude": ["-38.1543497"], + "field_latitude_longitude_value": ["-38.1543497,146.7737831"], + "field_latitude_value": ["-38.1543497"], + "field_longitude": ["146.7737831"], + "field_longitude_value": ["146.7737831"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3847"], + "field_project_code": ["01-770"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1-23 Cricket St"], + "field_suburb": ["Rosedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20775], + "status": [true], + "title": ["Rosedale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d942e716-8aea-4ae6-bc95-e6c81810caec"] + }, + "sort": ["Rosedale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20749:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosehill-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are undertaking a major upgrade of this school, including modernising Block A, Block C and the Music Block.", + "We are refurbishing the toilet and changerooms in the school's gymnasium to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We demolished Block D, which contained\u00a0asbestos, and replaced\u00a0it with a new permanent modular building. The building\u00a0incorporates a technology hub that includes theory, practical and VR rooms, makers space, storage and offices.\u00a0 We also upgraded the school oval and complete other improvements across the school, including the upgrade and modernisation of Block A, Block C and the Music Block.\u00a0 Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. Rosehill Secondary College\u00a0is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.\u200b\u200b", + "We built an outdoor inclusive reading and learning space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.204 million.\u00a0In 2022 the school was allocated a further $2.05 million.", + "In the 2022\u201323 State Budget the project received $467,127 from the Minor Capital Works Fund.", + "In the 2019\u201320 State Budget, the school received $4.513 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $192,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosehill Secondary College" + ], + "field_latitude": [ + "-37.739700317382813", + "-37.746679", + "-37.746679", + "-37.750179" + ], + "field_latitude_longitude_value": [ + "-37.739700317382813,144.88592529296875" + ], + "field_latitude_value": ["-37.739700317382813"], + "field_longitude": [ + "144.88592529296875", + "144.886183", + "144.886183", + "144.885443" + ], + "field_longitude_value": ["144.88592529296875"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3042"], + "field_project_code": [ + "D1-01-7275", + "D3-01-7275", + "01-7275", + "D2-01-7275" + ], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q1 2024", "Q4 2023", "Q4 2020", "Q1 2023"], + "field_start_date": ["Q4 2020", "Q2 2022", "Q2 2019", "Q2 2021"], + "field_status_name": [ + "Construction", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["Sapphire St"], + "field_suburb": ["Niddrie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20749], + "status": [true], + "title": ["Rosehill Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c3fd543d-ef10-4b44-9e74-93b6fd146e33"] + }, + "sort": ["Rosehill Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20474:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosewood-downs-primary-school"], + "changed": ["2023-08-09T16:17:13+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the senior playground and install new equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $56,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rosewood Downs Primary School." + ], + "field_latitude": ["-37.9442092"], + "field_latitude_longitude_value": ["-37.9442092,145.2142608"], + "field_latitude_value": ["-37.9442092"], + "field_longitude": ["145.2142608"], + "field_longitude_value": ["145.2142608"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Rosewood Downs Primary School." + ], + "field_postcode": ["3175"], + "field_project_code": ["01-5087"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Murray Rd"], + "field_suburb": ["Dandenong North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20474], + "status": [true], + "title": ["Rosewood Downs Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e6939d96-6035-4532-b856-ae0df6015a8e"] + }, + "sort": ["Rosewood Downs Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21383:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rosewood-downs-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Rosewood Downs Primary School in partnership with the City of Greater Dandenong. The 2-room centre provides 66 kindergarten places. The kindergarten opens into an outdoor learning and play space. It includes an administration area, maternal and child health services, and community space. Having the kindergarten and school together may help local children make a smoother transition into primary school and can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten funding, delivered over four years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Rosewood Downs Primary School Kindergarten." + ], + "field_latitude": ["-37.9442092"], + "field_latitude_longitude_value": ["-37.9442092,145.2142608"], + "field_latitude_value": ["-37.9442092"], + "field_longitude": ["145.2142608"], + "field_longitude_value": ["145.2142608"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["15-RDPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Murray Rd"], + "field_suburb": ["Dandenong North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21383], + "status": [true], + "title": ["Rosewood Downs Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9703994c-9e10-40df-9236-fef6e49a81b2"] + }, + "sort": ["Rosewood Downs Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21309:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rothschild-road-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new two-room kindergarten at Willowbank Primary School. It has an outdoor play space and administrative facilities. Having the kindergarten and school together may help local children make a smoother transition into school. It can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Rothschild Road Kindergarten" + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3437"], + "field_project_code": ["15-5587"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["73 Rothschild Road"], + "field_suburb": ["Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21309], + "status": [true], + "title": ["Rothschild Road Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f97e5ed-81cb-406a-8ab7-db0d250e77a0"] + }, + "sort": ["Rothschild Road Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20576:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rowellyn-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised\u00a0the\u00a0school, including: building a\u00a0gym upgrading the school\u00a0hall completing\u00a0roof upgrades repurposing the physical education hall as\u00a0flexible learning spaces\u00a0 replacing\u00a0relocatable classrooms with\u00a0permanent flexible learning spaces.\u00a0 These works ensure\u00a0that students learn in\u00a0facilities better designed for\u00a0delivering\u00a0modern education.", + "We've built an outdoor covered learning area. As part of the Education State vision, the Victorian Government has set a goal to increase pride and confidence in government schools. The School Pride and Sports Fund is one way of achieving that goal. Funding is provided for projects costing\u00a0under $1 million, which will help students, teachers and the community to feel proud of their school. The\u00a0fund allows schools to\u00a0upgrade and modernise. It\u00a0also helps ensure more new gymnasiums are competition grade and can be used by community sporting clubs.\u200b\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $5.7 million was allocated to the school.", + "In the 2017\u201318 State Budget, $275,000 was allocated to the school as part of the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rowellyn Park Primary School" + ], + "field_latitude": ["-38.104305"], + "field_latitude_longitude_value": ["-38.104305,145.192169"], + "field_latitude_value": ["-38.104305"], + "field_longitude": ["145.192169"], + "field_longitude_value": ["145.192169"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3201"], + "field_project_code": ["01-5313", "D1-01-5313"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2020", "Q4 2018"], + "field_start_date": ["Q2 2018", "Q2 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Rowellyn Av"], + "field_suburb": ["Carrum Downs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20576], + "status": [true], + "title": ["Rowellyn Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["91c163df-381c-4d7e-9873-c54962a3ad7f"] + }, + "sort": ["Rowellyn Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25458:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rowen-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We upgraded and expanded the kindergarten to create more places for local children. This will help meet future demand for 3-year-old kinder and Pre-Prep (4-year-old kinder).\u00a0", + "We upgraded the outdoor environment. The space is now more inclusive for children of all abilities. The landscaping better reflects the surrounding natural area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In round 3 of the 2022\u201323 Building Blocks Capacity Grants $300,000 was allocated to the project.", + "In the 2021\u201322 Building Blocks Inclusion Grants, $187,680 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Rowen Street Kindergarten." + ], + "field_latitude": ["-37.85776112", "-37.85773202"], + "field_latitude_longitude_value": ["-37.85776112,145.0883016"], + "field_latitude_value": ["-37.85776112"], + "field_longitude": ["145.0883016", "145.0884591"], + "field_longitude_value": ["145.0883016"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3146"], + "field_project_code": ["D1-15-252", "15-252"], + "field_project_title": [ + "Building Blocks Capacity Grant - Expansion", + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q3 2023", "Q3 2023"], + "field_start_date": ["Q4 2022", "Q3 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["27 Rowen St"], + "field_suburb": ["Glen Iris"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25458], + "status": [true], + "title": ["Rowen Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["e1f2eb93-e60d-4332-b5e7-e66fd07261f9"] + }, + "sort": ["Rowen Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20436:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rowville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish the library learning centre to improve overall condition and use.", + "We are building an inclusive outdoor learning space, including seating and sensory equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $62,670.", + "In Round 7 of the Inclusive Schools Fund, the project received $198,090." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rowville Primary School" + ], + "field_latitude": ["-37.9234484836088", "-37.922924"], + "field_latitude_longitude_value": [ + "-37.9234484836088,145.235450170142" + ], + "field_latitude_value": ["-37.9234484836088"], + "field_longitude": ["145.235450170142", "145.237108"], + "field_longitude_value": ["145.235450170142"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3178"], + "field_project_code": ["01-5000", "D1-01-5000"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 7" + ], + "field_q_complete": ["Q3 2021", "Q4 2023"], + "field_start_date": ["Q4 2020", "Q4 2021"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["Paratea Dr"], + "field_suburb": ["Rowville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20436], + "status": [true], + "title": ["Rowville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f125b88-2802-4e41-a9aa-2ee3daf101db"] + }, + "sort": ["Rowville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25383:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rowville-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing student toilets in the Library and Science buildings at the Eastern Campus to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $499,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rowville Secondary College" + ], + "field_latitude": ["-37.92388682"], + "field_latitude_longitude_value": ["-37.92388682,145.2370885"], + "field_latitude_value": ["-37.92388682"], + "field_longitude": ["145.2370885"], + "field_longitude_value": ["145.2370885"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3178"], + "field_project_code": ["01-8734"], + "field_project_title": ["Minor Capital Works Fund - Eastern Campus"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["9 Humphreys Way"], + "field_suburb": ["Rowville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25383], + "status": [true], + "title": ["Rowville Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["13d28d99-24e5-4f89-b3b6-c7f65f9dff32"] + }, + "sort": ["Rowville Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20864:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/roxburgh-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0and modernised\u00a0Roxburgh College. We carried out works\u00a0to the middle school building first, with our\u00a0focus then turning to the west wing, and finally east wing, of the junior school building. Students\u00a0now have access to modern and up-to-date\u00a0facilities that can deliver the best possible education. We\u00a0also undertook\u00a0maintenance works across the campus. \u00a0 \u00a0 \u00a0", + "We are refurbishing the gymnasium toilet and change rooms to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $3 million was allocated to the school.", + "In the 2022\u201323 State Budget the project received $487,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Roxburgh College" + ], + "field_latitude": ["-37.630756", "-37.63041"], + "field_latitude_longitude_value": ["-37.630756,144.9299596"], + "field_latitude_value": ["-37.630756"], + "field_longitude": ["144.9299596", "144.930331"], + "field_longitude_value": ["144.9299596"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-8407", "D1-01-8407"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2020", "Q4 2023"], + "field_start_date": ["Q2 2018", "Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["60-70 Donald Cameron Dr"], + "field_suburb": ["Roxburgh Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20864], + "status": [true], + "title": ["Roxburgh College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["eb0a1d5a-2202-4de1-ac3f-db8b7238e076"] + }, + "sort": ["Roxburgh College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20629:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/roxburgh-park-primary-school"], + "changed": ["2023-07-20T14:50:26+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish a toilet block for student convenience." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $131,120" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Roxburgh Park Primary School" + ], + "field_latitude": ["-37.6349718"], + "field_latitude_longitude_value": ["-37.6349718,144.930986"], + "field_latitude_value": ["-37.6349718"], + "field_longitude": ["144.930986"], + "field_longitude_value": ["144.930986"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the\u00a0 kindergarten we're building at Roxburgh Park Primary School." + ], + "field_postcode": ["3064"], + "field_project_code": ["01-5485"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["7-21 Almands Avenue"], + "field_suburb": ["Roxburgh Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20629], + "status": [true], + "title": ["Roxburgh Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3a5d717d-997e-4168-9551-970fab54c0fc"] + }, + "sort": ["Roxburgh Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31134:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/roxburgh-park-primary-school-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-10T16:46:53+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new kindergarten at Roxburgh Park Primary School.It will have 4 classrooms as well as outdoor learning and play spaces. The centre will provide an extra 132 licensed kindergarten places in the local area.Having the kindergarten and school together may help local children make a smoother transition into primary school. It can also make drop-off time simpler for some families.EnrolmentNorthern Schools Early Years Cluster has been announced as the provider for Roxburgh Park Primary School Kindergarten. For enrolments, please contact Hume City Council through their Kindergarten Registration webpage." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $371 million committed in the 2019-20 State Budget to support the rollout of Three-Year-Old-Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Roxburgh Park Primary School Kindergarten" + ], + "field_latitude": ["-37.6350199"], + "field_latitude_longitude_value": ["-37.6350199,144.9309681"], + "field_latitude_value": ["-37.6350199"], + "field_longitude": ["144.9309681"], + "field_longitude_value": ["144.9309681"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Modular kinder installation - Roxburgh Park Primary School Kindergarten (interim name) \u00a0" + ], + "field_postcode": ["3064"], + "field_project_code": ["01-5485-ELC"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["7-21 Almands Avenue"], + "field_suburb": ["Roxburgh Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31134], + "status": [true], + "title": ["Roxburgh Park Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d2bfce65-4fe4-4e22-8cac-ed0366fc5fec"] + }, + "sort": ["Roxburgh Park Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20633:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/roxburgh-rise-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0installed\u00a0sheltered grandstand tiered seating for 200 spectators, and other seating, around the school\u2019s oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2019-20 School Pride and Sports Fund the school received $241,300 and a further $116,330." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Roxburgh Rise Primary School" + ], + "field_latitude": ["-37.625736236572266"], + "field_latitude_longitude_value": [ + "-37.625736236572266,144.92544555664062" + ], + "field_latitude_value": ["-37.625736236572266"], + "field_longitude": ["144.92544555664062"], + "field_longitude_value": ["144.92544555664062"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-5493"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Lockwood Dr & Bluebird Way"], + "field_suburb": ["Roxburgh Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20633], + "status": [true], + "title": ["Roxburgh Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c4e6f901-62f8-44dc-8dc2-8f42659dbc64"] + }, + "sort": ["Roxburgh Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28646:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rupanyup-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are building a new accessible playground. The play area will include a sensory garden, sandpit and a variety of other play spaces that can be enjoyed by children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $102,509.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rupanyup Kindergarten." + ], + "field_latitude": ["-36.63223899"], + "field_latitude_longitude_value": ["-36.63223899,142.6316774"], + "field_latitude_value": ["-36.63223899"], + "field_longitude": ["142.6316774"], + "field_longitude_value": ["142.6316774"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3388"], + "field_project_code": ["15-478"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["55 Cromie St"], + "field_suburb": ["Rupanyup"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28646], + "status": [true], + "title": ["Rupanyup Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["3f339dfd-9391-42d9-83e2-e138192acea3"] + }, + "sort": ["Rupanyup Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34957:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rupert-street-uniting-early-learning"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-14T09:26:05+10:00"], + "field_about_project_processed": [ + "We built a nature discovery play space. It is multi-sensory and inclusive for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 Building Blocks Inclusion Grant round, $136,361 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Rupert Street Uniting Early Learning" + ], + "field_latitude": ["-37.8041929"], + "field_latitude_longitude_value": ["-37.8041929,144.9893439"], + "field_latitude_value": ["-37.8041929"], + "field_longitude": ["144.9893439"], + "field_longitude_value": ["144.9893439"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3066"], + "field_project_code": ["15-325"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["115-117 Rupert St"], + "field_suburb": ["Collingwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34957], + "status": [true], + "title": ["Rupert Street Uniting Early Learning"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["84ea04c3-cde1-4bf6-bb94-6d579d3c2cf6"] + }, + "sort": ["Rupert Street Uniting Early Learning"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20716:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rushworth-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading Rushworth P\u201312 College. A new tech hub will feature spaces for: science food technology design technology. We will also refurbish part of the existing heritage building for the arts and remove relocatable buildings no longer needed by the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.57 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Rushworth P-12 College" + ], + "field_latitude": ["-36.5838577"], + "field_latitude_longitude_value": ["-36.5838577,145.0140547"], + "field_latitude_value": ["-36.5838577"], + "field_longitude": ["145.0140547"], + "field_longitude_value": ["145.0140547"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3612"], + "field_project_code": ["01-6238"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["45 Heily St"], + "field_suburb": ["Rushworth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20716], + "status": [true], + "title": ["Rushworth P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7db600d5-c3f6-472b-aa76-a39030450445"] + }, + "sort": ["Rushworth P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20401:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ruskin-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and expanded this school, allowing it to enrol an extra 200 local students.\u00a0 We worked closely with the school and project architects to make sure plans aligned with the school's vision and needs. School upgrade design The design has three learning hubs separated into groups of four classrooms. The hubs include sharing spaces \u2212 such as staff pods, quiet study rooms and presentation areas \u2212 arranged around a central space. Large sliding doors separate the classrooms from the central space and can be opened or closed to create an area that suits small or large groups. This gives staff more flexibility in how they teach, and gives students more variety in how they learn. We designed the interiors to create a calm but engaging environment. We completed paving, re-surfacing and landscaping to tie it in with the surrounding school facilities. Who was consulted? While developing the design, our architects worked closely with the school to ensure the new building would meet the school\u2019s curriculum needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $1.18 million in planning funding. In the 2020-21 State Budget, the school received at least $9.556 million from a pool of more than $85 million to expand seven schools in high-growth areas." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Ruskin Park Primary School." + ], + "field_latitude": ["-37.791332244873047"], + "field_latitude_longitude_value": [ + "-37.791332244873047,145.281494140625" + ], + "field_latitude_value": ["-37.791332244873047"], + "field_longitude": ["145.281494140625"], + "field_longitude_value": ["145.281494140625"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["01-4916"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["18 - 20 Ruskin Ave"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20401], + "status": [true], + "title": ["Ruskin Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["265f22df-3317-4cf7-9b0b-e7c1c4d70d79"] + }, + "sort": ["Ruskin Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20854:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rutherglen-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed\u00a0building\u00a0a\u00a0STEM Centre at Rutherglen High School\u00a0in 2018.\u00a0", + "We are refurbishing the toilets in the main wing of the school to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $1.6 million has been allocated to the school.", + "In the 2022-23 State Budget the project received $496,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rutherglen High School" + ], + "field_latitude": ["-36.06244", "-36.062564"], + "field_latitude_longitude_value": ["-36.06244,146.45258"], + "field_latitude_value": ["-36.06244"], + "field_longitude": ["146.45258", "146.452103"], + "field_longitude_value": ["146.45258"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3685"], + "field_project_code": ["01-8300", "D1-01-8300"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2018", "Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["40 Sheridans Bridge Road"], + "field_suburb": ["Rutherglen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20854], + "status": [true], + "title": ["Rutherglen High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7012c9e1-4145-4e87-a3cd-36c463e425a0"] + }, + "sort": ["Rutherglen High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20026:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/rye-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will build a new playground.", + "We resurfaced the playground with soft fall rubber that\u00a0allows students with mobility aids to access the equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $200,000", + "In 2018, $135,300 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Rye Primary School" + ], + "field_latitude": ["-38.373116"], + "field_latitude_longitude_value": ["-38.373116,144.823824"], + "field_latitude_value": ["-38.373116"], + "field_longitude": ["144.823824"], + "field_longitude_value": ["144.823824"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3941"], + "field_project_code": ["D1-01-1667", "01-1667"], + "field_project_title": [ + "Upgrade and Modernisation - Playground", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2025", "Q3 2019"], + "field_start_date": ["Q2 2023", "Q4 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Lyons St"], + "field_suburb": ["Rye"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20026], + "status": [true], + "title": ["Rye Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a1773b4f-d240-4192-92a8-90c91d7a0a5b"] + }, + "sort": ["Rye Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21123:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-college-yarrawonga"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the college with a major upgrade of its senior school centre. Students will gain more modern facilities, including three general learning areas, a dedicated VCE area and associated spaces, and toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1.5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart College (Yarrawonga)" + ], + "field_latitude": ["-36.019363403320313"], + "field_latitude_longitude_value": [ + "-36.019363403320313,145.99919128417969" + ], + "field_latitude_value": ["-36.019363403320313"], + "field_longitude": ["145.99919128417969"], + "field_longitude_value": ["145.99919128417969"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3730"], + "field_project_code": ["02-518"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Piper St"], + "field_suburb": ["Yarrawonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21123], + "status": [true], + "title": ["Sacred Heart College (Yarrawonga)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a759781d-465b-441e-8874-6fe5abf82e54"] + }, + "sort": ["Sacred Heart College (Yarrawonga)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21016:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-girls-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported the school to build\u00a0two flexible learning spaces\u00a0and expanded storage facilities for the school hall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart Girls' College" + ], + "field_latitude": ["-37.9017"], + "field_latitude_longitude_value": ["-37.9017,145.0859199"], + "field_latitude_value": ["-37.9017"], + "field_longitude": ["145.0859199"], + "field_longitude_value": ["145.0859199"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["02-1571"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["113 Warrigal Rd"], + "field_suburb": ["Hughesdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21016], + "status": [true], + "title": ["Sacred Heart Girls' College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["82598941-749d-40e5-8092-219c4f693201"] + }, + "sort": ["Sacred Heart Girls' College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21009:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bWe supported\u00a0the school to build 12\u00a0general learning areas and associated spaces,\u00a0and\u00a0retire old\u00a0relocatable buildings.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,200,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School" + ], + "field_latitude": ["-37.7916450500488"], + "field_latitude_longitude_value": [ + "-37.7916450500488,145.281768798828" + ], + "field_latitude_value": ["-37.7916450500488"], + "field_longitude": ["145.281768798828"], + "field_longitude_value": ["145.281768798828"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["02-1509"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["35 Wicklow Av"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21009], + "status": [true], + "title": ["Sacred Heart School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fbc121b6-b6e6-4ea5-b0a5-8aa01a8c50c7"] + }, + "sort": ["Sacred Heart School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21031:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school-corryong"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish and modernise art spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020-21 capital funding program for non-government schools, the school received $162,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School (Corryong)" + ], + "field_latitude": ["-36.1982264023915"], + "field_latitude_longitude_value": [ + "-36.1982264023915,147.89863711838248" + ], + "field_latitude_value": ["-36.1982264023915"], + "field_longitude": ["147.89863711838248"], + "field_longitude_value": ["147.89863711838248"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3707"], + "field_project_code": ["02-1642"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["111-115 Hansen Street"], + "field_suburb": ["CORRYONG"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21031], + "status": [true], + "title": ["Sacred Heart School (Corryong)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["96eb66fc-dd16-447a-ae75-84fcc2afa840"] + }, + "sort": ["Sacred Heart School (Corryong)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21027:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school-diamond-creek"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish the administration area, offices and student toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1.6 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School (Diamond Creek)" + ], + "field_latitude": ["-37.6723314"], + "field_latitude_longitude_value": ["-37.6723314,145.1580843"], + "field_latitude_value": ["-37.6723314"], + "field_longitude": ["145.1580843"], + "field_longitude_value": ["145.1580843"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3089"], + "field_project_code": ["02-1623"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Gipson St"], + "field_suburb": ["Diamond Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21027], + "status": [true], + "title": ["Sacred Heart School (Diamond Creek)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c5fb88b3-48d7-49ff-82e7-02f32e2d3eca"] + }, + "sort": ["Sacred Heart School (Diamond Creek)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34781:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school-mildura"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school refurbish general learning areas and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $3 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School in Mildura" + ], + "field_latitude": ["-34.18765628"], + "field_latitude_longitude_value": ["-34.18765628,142.151873"], + "field_latitude_value": ["-34.18765628"], + "field_longitude": ["142.151873"], + "field_longitude_value": ["142.151873"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["02-1560"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["168 Twelfth Street"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34781], + "status": [true], + "title": ["Sacred Heart School (Mildura)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e6a916a5-af8d-4f27-9a2a-a3910c492e06"] + }, + "sort": ["Sacred Heart School (Mildura)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21002:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school-oakleigh"], + "changed": ["2023-07-25T10:59:19+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped refurbish and extend the administration wing at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School (Oakleigh)" + ], + "field_latitude": ["-37.902154"], + "field_latitude_longitude_value": ["-37.902154,145.088207"], + "field_latitude_value": ["-37.902154"], + "field_longitude": ["145.088207"], + "field_longitude_value": ["145.088207"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3166"], + "field_project_code": ["02-1393"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Mora Av"], + "field_suburb": ["Oakleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21002], + "status": [true], + "title": ["Sacred Heart School (Oakleigh)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c532e831-ed72-4d1a-bd27-c373c4d808a9"] + }, + "sort": ["Sacred Heart School (Oakleigh)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34783:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school-sandringham"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school refurbish general learning areas and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $3 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School in Sandringham" + ], + "field_latitude": ["-37.95145057"], + "field_latitude_longitude_value": ["-37.95145057,145.0080365"], + "field_latitude_value": ["-37.95145057"], + "field_longitude": ["145.0080365"], + "field_longitude_value": ["145.0080365"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3191"], + "field_project_code": ["02-937"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["11 Fernhill Road North"], + "field_suburb": ["Sandringham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34783], + "status": [true], + "title": ["Sacred Heart School (Sandringham)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["02da1469-7734-4553-9739-0dc8cd29ab4e"] + }, + "sort": ["Sacred Heart School (Sandringham)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34785:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school-st-albans"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school build a flexible learning centre and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $2 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School in St Albans" + ], + "field_latitude": ["-37.73765803"], + "field_latitude_longitude_value": ["-37.73765803,144.7996618"], + "field_latitude_value": ["-37.73765803"], + "field_longitude": ["144.7996618"], + "field_longitude_value": ["144.7996618"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["02-1521"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["2-4 Winifred Sreet"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34785], + "status": [true], + "title": ["Sacred Heart School (St Albans)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4ba6234c-189d-4252-8506-27811a3b53f9"] + }, + "sort": ["Sacred Heart School (St Albans)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21109:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sacred-heart-school-tatura"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school construct specialist primary school learning areas, student toilets and meeting rooms to support students with special needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $920,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sacred Heart School (Tatura)" + ], + "field_latitude": ["-36.4399624"], + "field_latitude_longitude_value": ["-36.4399624,145.2247076"], + "field_latitude_value": ["-36.4399624"], + "field_longitude": ["145.2247076"], + "field_longitude_value": ["145.2247076"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3616"], + "field_project_code": ["02-324"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["69-75 Hogan St"], + "field_suburb": ["Tatura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21109], + "status": [true], + "title": ["Sacred Heart School (Tatura)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a8880aa8-ace3-49a6-9316-f8008a9e6a2a"] + }, + "sort": ["Sacred Heart School (Tatura)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21124:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/saint-ignatius-college-geelong"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe supported the build of a\u00a0multi-purpose building\u00a0at\u00a0the school. This now\u00a0offers\u00a0a double-court gymnasium, an exercise room, classrooms and staff offices.\u00a0 \u200b", + "We are helping the school build a new teaching and learning centre, consisting of 16 general learning areas, a dedicated maker space, and a 400-seat lecture theatre with associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2,000,000 has been allocated to the school.\u00a0", + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Saint Ignatius College Geelong." + ], + "field_latitude": ["-38.188720", "-38.1885435"], + "field_latitude_longitude_value": ["-38.188720,144.557600"], + "field_latitude_value": ["-38.188720"], + "field_longitude": ["144.557600", "144.5558728"], + "field_longitude_value": ["144.557600"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3222"], + "field_project_code": ["02-548", "D1-02-548"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2019", "Q1 2024"], + "field_start_date": ["Q4 2015", "Q3 2021"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["27 Peninsula Dr"], + "field_suburb": ["Drysdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21124], + "status": [true], + "title": ["Saint Ignatius College Geelong"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b8640cd6-878b-47f7-8710-6873a8113460"] + }, + "sort": ["Saint Ignatius College Geelong"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20934:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sale-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are planning, and completing early works, to improve facilities for Years 7\u201312 students at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $3 million." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Sale College" + ], + "field_latitude": ["-38.1091726"], + "field_latitude_longitude_value": ["-38.1091726,147.0672583"], + "field_latitude_value": ["-38.1091726"], + "field_longitude": ["147.0672583"], + "field_longitude_value": ["147.0672583"], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["01-8834"], + "field_project_title": ["Planning"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Design"], + "field_street_address": ["73-81 Macalister St"], + "field_suburb": ["Sale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20934], + "status": [true], + "title": ["Sale College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ed4f1458-cb63-4727-b90c-c19cd8f07897"] + }, + "sort": ["Sale College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20621:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced\u00a0an older building containing asbestos with a new architecturally-designed permanent modular building. The new building features a library.", + "We\u00a0refurbished and repurposed the music room into two additional classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.274 million through the Permanent Modular School Buildings Program.", + "In the 2020 Minor Capital Works Fund the school was allocated $73,120." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sale Primary School" + ], + "field_latitude": ["-38.108303", "-38.10916070051"], + "field_latitude_longitude_value": ["-38.108303,147.073643"], + "field_latitude_value": ["-38.108303"], + "field_longitude": ["147.073643", "147.074291200031"], + "field_longitude_value": ["147.073643"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["01-545", "D1-01-545"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2021", "Q4 2021"], + "field_start_date": ["Q2 2019", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Macalister St"], + "field_suburb": ["Sale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20621], + "status": [true], + "title": ["Sale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0cd54e2d-1271-4338-aec8-2f6715701235"] + }, + "sort": ["Sale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20506:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sale-and-district-specialist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bSale and District\u00a0Specialist School\u00a0has been\u00a0entirely rebuilt on a new single campus, catering for students with diverse learning needs from the age of five to eighteen years. The new campus includes five new buildings and site works accommodate a long-term enrolment of 144 students. The new Sale and District Specialist School gives students and teachers the space and high-quality facilities to learn and grow. \u200b\u200b \u200b\u200b\u200bThe project included a new integrated campus comprising three learning homesteads for junior, middle and senior years, a dedicated administration building, a central plaza and a multi-purpose building.\u00a0 It has been designed as a single-level campus to provide equal access for all. The project also included outdoor areas with bike paths, sand play spaces, asphalt courts, wheelchair accessible cubby and swing and sensory play areas.\u00a0 Site access, car parking and fencing has been further developed to create safe and secure environment, particularly considering the proximity of the school to Princes Highway. The principal for\u00a0\u200b\u200b\u200bSale and District\u00a0Specia\u200blist School\u200b\u200b is\u00a0Shelagh Donegan\u200b.\u00a0 Please contact the school directly for information regarding enrolments.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1.7 million was allocated to the school. In the 2015\u201316 State Budget, $7.6 million was allocated to this project. In the 2014-15 State Budget, $4 million was allocated to this project." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sale and District Specialist School" + ], + "field_latitude": ["-38.0816299"], + "field_latitude_longitude_value": ["-38.0816299,147.07072"], + "field_latitude_value": ["-38.0816299"], + "field_longitude": ["147.07072"], + "field_longitude_value": ["147.07072"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["01-5175"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["333 Princes Hwy"], + "field_suburb": ["Sale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20506], + "status": [true], + "title": ["Sale and District Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["de74ca14-f133-4579-a871-e375f23b1e81"] + }, + "sort": ["Sale and District Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21006:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/salesian-college-chadstone"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported Salesian College Chadstone to refurbish\u00a0and extend the administration area and associated spaces.\u00a0\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Salesian College Chadstone" + ], + "field_latitude": ["-37.88368"], + "field_latitude_longitude_value": ["-37.88368,145.10053"], + "field_latitude_value": ["-37.88368"], + "field_longitude": ["145.10053"], + "field_longitude_value": ["145.10053"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3148"], + "field_project_code": ["02-1485"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Bosco Street"], + "field_suburb": ["CHADSTONE"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21006], + "status": [true], + "title": ["Salesian College Chadstone"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b71c0010-06f7-4fd7-ba8c-310639028512"] + }, + "sort": ["Salesian College Chadstone"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20997:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/salesian-college-sunbury"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe supported the school\u00a0to\u00a0upgrade the\u00a0library and 11 general learning areas, as well\u00a0as\u00a0associated areas.", + "We are supporting the college to construct a Food Technology Centre and the refurbish the STEM Battery Building and Design Manufacturing Learning Centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $500,000 has been allocated to the school.\u00a0", + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Salesian College Sunbury" + ], + "field_latitude": ["-37.57623", "-37.5763618"], + "field_latitude_longitude_value": ["-37.57623,144.73123"], + "field_latitude_value": ["-37.57623"], + "field_longitude": ["144.73123", "144.7311539"], + "field_longitude_value": ["144.73123"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["02-1299", "D1-02-1299"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2018", "Q4 2023"], + "field_start_date": ["Q3 2017", "Q4 2020"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["1 Macedon St"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20997], + "status": [true], + "title": ["Salesian College Sunbury"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["44310155-6bc2-4a23-87a2-2cef69ff4d48"] + }, + "sort": ["Salesian College Sunbury"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20855:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/saltwater-p-9-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are expanding this school. This will give students broader learning opportunities and create places for an extra 400 local children.", + "Saltwater P\u20139 College is a new school that will cater for Prep to Year 9 students.\u00a0This school, designed by Architectus and K2LD as part of the Growth Areas Schools Project, was a winner of the 'Minister's Award for Excellence' in the\u00a02019 Victorian School Design Awards.Stage 1 facilities include a:\u200blibrarylearning communitygym and performing arts centre.Stage 1 is complete and\u00a0opened\u00a0for its first cohort of Prep\u2013Year 6\u00a0students in\u00a0Term 1, 2019. Years 7\u20139 students will be enrolled at the school when the planned future stages are complete.\u00a0Saltwater Community Centre is located next to Saltwater P\u20139 College, helping local\u00a0children make\u00a0a smooth transition from pre-school and reducing the number of drop-offs for some parents with kinder and school-aged children.\u00a0Saltwater P\u20139 College has an official Facebook page.\u200b Follow it for all\u00a0the latest updates.", + "After opening its doors for Prep-Year 6 students in 2019, the latest funding allowed us to build the extra facilities needed for secondary education. We built a learning community and a specialist building, a sports oval and multi-courts.These new facilities will be ready for Year\u00a07\u00a0students in 2022, Years 7 and 8 in 2023 and Years 7, 8 and 9 in 2024." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $37.321 million", + "The 2017-18 State Budget allocated $13.806 million towards the school. The school received an additional $3.1 million in the 2018-19 State Budget.", + "In 2020, the second stage of this school project shared in $438.6 million of funding for new schools." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "New School", + "New School" + ], + "field_landing_page_summary": [ + "Learn more about the build of Saltwater P-9 College" + ], + "field_latitude": [ + "-37.91069353963744", + "-37.91069353963744", + "-37.91069353963744" + ], + "field_latitude_longitude_value": [ + "-37.91069353963744,144.76996556197966" + ], + "field_latitude_value": ["-37.91069353963744"], + "field_longitude": [ + "144.76996556197966", + "144.76996556197966", + "144.76996556197966" + ], + "field_longitude_value": ["144.76996556197966"], + "field_mappintype_name": ["New school", "New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Saltwater P-9 College Opens! \u00a0"], + "field_postcode": ["3030"], + "field_project_code": ["D2-01-8303", "01-8303", "D1-01-8303"], + "field_project_title": [ + "Upgrade and Modernisation - Building Space for More Students", + "New School", + "New School - Stage 2" + ], + "field_q_complete": ["Q4 2026", "Q1 2019", "Q4 2021"], + "field_start_date": ["Q2 2023", "Q2 2017"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["Saltwater Promenade"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20855], + "status": [true], + "title": ["Saltwater P-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["39071a0f-df35-43c3-ad14-33ab386dceb3"] + }, + "sort": ["Saltwater P-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34240:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/san-remo-pre-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Bass Coast Shire Council plan to expand Sam Remo Pre-School. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for San Remo Pre-School" + ], + "field_latitude": ["-38.524454"], + "field_latitude_longitude_value": ["-38.524454,145.371755"], + "field_latitude_value": ["-38.524454"], + "field_longitude": ["145.371755"], + "field_longitude_value": ["145.371755"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3925"], + "field_project_code": ["15-SRPS"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_suburb": ["San Remo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34240], + "status": [true], + "title": ["San Remo Pre-School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["ef90854b-d32b-482e-8515-b951a7161a18"] + }, + "sort": ["San Remo Pre-School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27774:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/san-remo-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 8 of the Inclusive Schools Fund, the project received $76,484." + ], + "field_funding_type_name": ["Planning", "Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at San Remo Primary School" + ], + "field_latitude": ["-38.523852"], + "field_latitude_longitude_value": ["-38.523852,145.369453"], + "field_latitude_value": ["-38.523852"], + "field_longitude": ["145.369453"], + "field_longitude_value": ["145.369453"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3925"], + "field_project_code": ["D1-01-1369", "01-1369"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Subject to future funding", "Q1 2024"], + "field_start_date": ["Q2 2023", "Q4 2022"], + "field_status_name": ["Planning", "Construction"], + "field_street_address": ["22 Bergin Gr"], + "field_suburb": ["San Remo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27774], + "status": [true], + "title": ["San Remo Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0320d516-9334-48f4-be44-0e00c50cd067"] + }, + "sort": ["San Remo Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20897:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sandringham-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the Holloway Road Senior Campus. We built a gymnasium, music facilities, canteen and amenities.We completed this upgrade in partnership with the school and Bayside City Council. Students and the wider community now have access to state-of-the-art sports facilities. The facilities include 2 indoor courts, 9 outdoor courts, and an oval.For more information on the council-led project, please see Bayside City Council's Bayside Netball centre webpage.", + "We have upgraded classrooms and facilities at Sandringham College. This multi-stage project has revitalised the college's Holloway Road Senior Campus and the Bluff Road Junior Campus.\u00a0 \u200b We\u2019ve completed a new Discovery Centre at the junior campus on Bluff Road. This new freestanding building integrates Years 7 and 8 learning spaces with specialist science labs, student amenities, and staff work areas. The Discovery Centre won the 2016 Victorian School Design Award for Best School Project. Its modern design includes outdoor learning spaces and a think tank.\u00a0 We have also finished building new buildings for both campuses. Senior students at the Holloway Road campus will gain a modern learning environment with a standalone science, technology, engineering, arts and mathematics (STEAM) building. The junior campus will have a new freestanding administration building.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $500,000 for planning.In 2020, the school received an additional $10 million for this project.", + "In the 2015\u201316 State Budget, $2 million was allocated to this project." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sandringham College." + ], + "field_latitude": ["-37.95699", "-37.95706"], + "field_latitude_longitude_value": ["-37.95699,145.02468"], + "field_latitude_value": ["-37.95699"], + "field_longitude": ["145.02468", "145.02524"], + "field_longitude_value": ["145.02468"], + "field_mappintype_name": ["Planning", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Sandringham college construction progress"], + "field_postcode": ["3191"], + "field_project_code": ["D1-01-8739", "01-8739"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q1 2018"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["11 Holloway Road"], + "field_suburb": ["Sandringham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20897], + "status": [true], + "title": ["Sandringham College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f5e06eed-4802-4a87-a1c7-84d812f1db73"] + }, + "sort": ["Sandringham College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20296:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sandringham-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade the administration building and classrooms in the prep learning area.", + "We replaced older facilities and cellular classrooms at the school with a new multi-purpose hall and double-storey learning building.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $3.848 million.", + "In the 2016\u201317 State Budget, $12 million was been allocated to schools across the State for planning, including for this school. The Government has subsequently announced $7.84 million in additional funding." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sandringham East Primary School" + ], + "field_latitude": ["-37.9566186", "-37.955719"], + "field_latitude_longitude_value": ["-37.9566186,145.0224931"], + "field_latitude_value": ["-37.9566186"], + "field_longitude": ["145.0224931", "145.022476"], + "field_longitude_value": ["145.0224931"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3191"], + "field_project_code": ["D1-01-4429", "01-4429"], + "field_project_title": [ + "Upgrade and Modernisation \u2013 Final Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2025", "Q3 2019"], + "field_start_date": ["Q2 2022", "Q3 2017"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["9 Holloway Rd"], + "field_suburb": ["Sandringham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20296], + "status": [true], + "title": ["Sandringham East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e9b8afed-ce04-482c-a9c5-15e25a144717"] + }, + "sort": ["Sandringham East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20122:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sandringham-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Fire caused significant damage to Sandringham Primary School at the beginning of 2020. We rebuilt parts of the school that were destroyed or damaged in the fire. New facilities include: modern indoor and outdoor learning areas a library an art workshop staff facilities outdoor play and sports\u00a0spaces. \u200b\u200b\u200bWe consulted the community on the rebuild from 3\u201325 March 2020. The consultation included an online survey and a face-to-face event.\u00a0 Support services, including counselling, have been made available to staff and students. Interim location From the beginning of Term 2, 2020, Sandringham Primary School was located at a 'temporary village' located on the junior campus of Sandringham College (Bluff Road). We worked with both school communities to ensure all students and staff continue to be a part of a great learning environment with minimal disruption. Sandringham Primary School remained at the Bluff Road village for the 2020 and 2021 school years until the rebuild was complete.\u00a0 Has the school community been involved in plans for the rebuild? Yes. We consulted the community on the rebuild from 3-25 March 2020. The consultation included an online survey and a face-to-face event. We have used the community feedback to create a \u2018What We Heard\u2019 report, which helped shape the design of the rebuilt school.\u00a0 Were existing relocatable classrooms included in the rebuild? What is the plan for these? The relocatables were not impacted by the fire, and will continue to be available for the school to use. Did the rebuild provide specific design features to protect students from sun and rain? Yes. The rebuild provides a variety of retreat spaces where children can gather during hot, wet and windy weather. The walkover for the new second storey level also provides an undercover area for students. The school will continue to run standard procedures, such as wet-day timetabling, to ensure children are safe during extreme weather events. Were play spaces included in the rebuild? Thankfully, most of the school\u2019s play equipment was untouched by the fire and remains in good condition for students to use. Landscape works were part of the rebuild. This included re-landscaping the lost deck area and creating a new hardcourt play space for students. The design also included outdoor learning areas across the site and creates spaces that enable students to engage with the school\u2019s landscaping. How much of the original school building has been retained? The school, and our design team, prioritised keeping elements from the original building where possible. We have retained half the original school building, and salvaged remnants of the brick walls around the south-boundary and the original staff common room. These areas will be an important part of integrating Sandringham Primary School\u2019s history with its new facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sandringham Primary School." + ], + "field_latitude": ["-37.947160"], + "field_latitude_longitude_value": ["-37.947160,145.008980"], + "field_latitude_value": ["-37.947160"], + "field_longitude": ["145.008980"], + "field_longitude_value": ["145.008980"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/SandringhamPS-221021-feature-tile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "We engaged with students, parents and community members from Sandringham Primary School from 3 to 23 March 2020, via an online survey, a student workshop and a community drop-in session. A workshop with staff was also planned but had to be cancelled due to COVID-19, so staff provided their input via the online survey. The engagement process was designed to help acknowledge the community\u2019s trauma and grief, as well as provide them an opportunity to move forward. In particular, we wanted to know what the school community\u2019s favourite spaces are at the school and what they would like to see in the rebuilt school. This report summarises what we heard from your community during this engagement.", + "We heard from: 20% of online survey respondents are current teachers 66% of online survey respondents are parents/carers of a current student 50+ attended community drop-in session 127 online survey responses 500 students involved in workshops.", + "We heard very strong and consistent feedback focused around three key themes A design that includes lots of outdoor spaces Making the most of available space Appropriately reflecting the school\u2019s heritage. Appropriately reflecting the school\u2019s heritage It is clear that the community want the rebuild design to reflect the heritage of the original school, and expect a design that integrates these heritage elements sensitively and respectfully. Participants Specifically mentioned how much they love the old building, heritage windows and the red bricks. \u201cOf course paying homage to the heritage of the school is super important\u201d - Online survey respondent \u201cThe front office and prep rooms right in front of the new playground as they have a solid heritage feel with big windows and lets in a lot of light\u201d - Online survey respondent \u201cThe school sits within the heritage Gypsy Village precinct and fits with the character of the neighbourhood. The rebuild should have contemporary facilities inside but its street facing elements should remain in line with the heritage character of the area\u201d - Online survey respondent \u201cBuildings bricks to match to keep character of the school\u201d - Community drop-in session participant \u201cPlease keep as much as original blueprint and red brick as possible\u201d - Community drop-in session participant A design that includes lots of outdoor spaces The community highlighted how much they value having a good amount of outdoor space that provides multiple playgrounds and play spaces for children to run around. They also value the oval and multiple sports courts, with appropriate sporting equipment for the students to have a variety of active opportunities. The community also feel it is important that these spaces can be shared with the local community. We also heard about the importance of green shaded garden areas and having a variety of spaces that can be used for a range of purposes, including quiet relaxed spaces as well as areas that can also be used as outdoor learning spaces. The courtyard and kitchen garden at the school were highlighted many times throughout the engagement and clearly are much loved by the community. \u201cThe outdoor spaces, the garden areas, the space for children to move around\u201d - Online survey respondent \u201cOutdoor spaces, playgrounds for individual play and wider area for class sports and outdoor school events\u201d - Online survey respondent \u201cWonderful existing play spaces, particularly junior playground away from the bigger kids\u201d - Community drop-in session participant \u201cPlayground age-appropriate spaces\u201d - Community drop-in session participant Making the most of available space Related to how much they value outdoor spaces, the community was very keen that we design indoor learning spaces to maximise capacity as much as possible. The community has a strong preference to increase outdoor space so there are more play and sports spaces available. To help facilitate this, some community members wished to see the portable buildings removed. Other suggestions were to use double-storey buildings to ensure there is sufficient capacity for students now and in the future without encroaching on outdoor spaces. \u201cConsider use of doublestorey buildings to maximise floor plan/space within playground/school yard!\u201d - Online survey respondent \u201cGet rid of the portable classrooms. Ensure the new building has the capacity to house the students currently situated in the portables that take up valuable land that historically was open space for the school and the community\u201d - Online survey respondent \u201cTwo-storey on west side to protect from sun & weather\u201d - Community drop-in session participant \u201cRetain/improve open layout\u201d - Community drop-in session participant", + "We wish to thank the Sandringham Primary School community for their thoughtful feedback and suggestions during this difficult time. We have provided your community\u2019s ideas and feedback to the architects to consider while designing the rebuilt school.", + "You can access a designed version of this report." + ], + "field_paragraph_accordion_name": [ + "About the engagement", + "Engagement snapshots", + "What we heard", + "Next steps", + "Designed report" + ], + "field_paragraph_body": ["Community engagement"], + "field_postcode": ["3191"], + "field_project_code": ["01-267"], + "field_project_title": ["School Rebuild"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["31 Bamfield S"], + "field_suburb": ["Sandringham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20122], + "status": [true], + "title": ["Sandringham Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["20d48779-52fb-4375-b611-ff4639fd7ad8"] + }, + "sort": ["Sandringham Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21001:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/santa-maria-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe supported the school to\u00a0construct\u00a04 general learning areas with associated spaces and staff support offices\u200b. As part of the project, 10\u00a0general learning areas were also refurbished.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Santa Maria College" + ], + "field_latitude": ["-37.77044"], + "field_latitude_longitude_value": ["-37.77044,145.00259"], + "field_latitude_value": ["-37.77044"], + "field_longitude": ["145.00259"], + "field_longitude_value": ["145.00259"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3070"], + "field_project_code": ["02-1386"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["50 Separation St"], + "field_suburb": ["Northcote"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21001], + "status": [true], + "title": ["Santa Maria College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3b4c99e4-eca4-447b-b04c-1f6a890aa6db"] + }, + "sort": ["Santa Maria College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20175:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sassafras-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the playground and surrounding play space to provide a compliant, safe and natural play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $298,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sassafras Primary School" + ], + "field_latitude": ["-37.836254119873047"], + "field_latitude_longitude_value": [ + "-37.836254119873047,145.35105895996094" + ], + "field_latitude_value": ["-37.836254119873047"], + "field_longitude": ["145.35105895996094"], + "field_longitude_value": ["145.35105895996094"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3787"], + "field_project_code": ["01-3222"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["399 Mt Dandenong Tourist Rd"], + "field_suburb": ["Sassafras"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20175], + "status": [true], + "title": ["Sassafras Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["91178ce2-9c99-4e99-9bab-5808245d9bd6"] + }, + "sort": ["Sassafras Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24576:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/oakleigh-south-child-and-family-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are building an integrated children\u2019s centre for the Scammell Child & Family Hub. As well as providing a new kindergarten, the centre will offer maternal and children\u2019s health services for local families and a multi-purpose room for the local community.", + "We helped the City of Monash plan and design the move of Germain Street Kindergarten to Scammell Reserve in South Oakleigh. The relocated kindergarten will offer 66 funded kindergarten places for 3 and 4-year-olds, a Maternal and Child Health space and a multi-purpose room. This planning work helped get the project ready for construction." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream, $3,700,000 was allocated to the project.", + "In the 2021\u201322 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Planning Grant" + ], + "field_landing_page_summary": [ + "Learn more about the planning of Scammell Child & Family Hub." + ], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3167"], + "field_project_code": ["d1-15-SCAM", "15-SCAM"], + "field_project_title": [ + "Building Blocks Capacity Grant - Expansion", + "Building Blocks Planning" + ], + "field_q_complete": ["Q4 2023", "Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning", "Construction"], + "field_street_address": ["1216 North Rd"], + "field_suburb": ["Oakleigh South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24576], + "status": [true], + "title": ["Scammell Child & Family Hub"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7a3fd563-8633-4522-ba8d-0c7bf5ae455b"] + }, + "sort": ["Scammell Child & Family Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20856:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/scoresby-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space, including synthetic turf and landscaping.", + "We installed new fencing around the school perimeter to improve the character and safety of the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $174,000.", + "In the 2020 Minor Capital Works Fund, the school was allocated $242,625." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Scoresby Secondary College" + ], + "field_latitude": ["-37.8880687345375", "-37.8880687345375"], + "field_latitude_longitude_value": [ + "-37.8880687345375,145.236011167677" + ], + "field_latitude_value": ["-37.8880687345375"], + "field_longitude": ["145.236011167677", "145.236011167677"], + "field_longitude_value": ["145.236011167677"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3179"], + "field_project_code": ["D1-01-8307", "01-8307"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2023", "Q2 2022"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cavell St"], + "field_suburb": ["Scoresby"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20856], + "status": [true], + "title": ["Scoresby Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["181565a7-6b10-4b4d-85b3-62aa5902a37a"] + }, + "sort": ["Scoresby Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21216:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sea-lake-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with Buloke Shire Council, we relocated and upgraded Sea Lake Kindergarten. The upgrade included: increasing kindergarten\u00a0capacity\u00a0for three and four-year-olds redeveloping\u00a0two\u00a0classrooms at Tyrrell College\u00a0 new maternal and child health service facilities. This kindergarten will be co-located with Tyrrell College." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was allocated $1,152,461 through the Children's Facilities Capital Program. In 2021, this project received $86,643 from the Inclusive Kindergartens Fund." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sea Lake Kindergarten" + ], + "field_latitude": ["-35.50881"], + "field_latitude_longitude_value": ["-35.50881,142.85422"], + "field_latitude_value": ["-35.50881"], + "field_longitude": ["142.85422"], + "field_longitude_value": ["142.85422"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3533"], + "field_project_code": ["15-1436"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Complex Dr"], + "field_suburb": ["Sea Lake"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21216], + "status": [true], + "title": ["Sea Lake Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4e29977f-3e76-472a-9eee-7d14f3b7085c"] + }, + "sort": ["Sea Lake Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20580:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seabrook-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet blocks to provide clean and modern amenities for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $317,665." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Seabrook Primary School" + ], + "field_latitude": ["-37.8803787"], + "field_latitude_longitude_value": ["-37.8803787,144.7574112"], + "field_latitude_value": ["-37.8803787"], + "field_longitude": ["144.7574112"], + "field_longitude_value": ["144.7574112"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3028"], + "field_project_code": ["01-5337"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["83\u2013105 Point Cook Rd"], + "field_suburb": ["Seabrook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20580], + "status": [true], + "title": ["Seabrook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["04823a3e-79b1-4a35-9a8f-27aba36fa4f4"] + }, + "sort": ["Seabrook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20424:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seaford-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "\u200b\u200b\u200bWe constructed a competition-grade gymnasium and performing arts centre at Seaford North Primary School.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2017\u201318 State Budget, $5 million was allocated to the school. In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This included funding for Seaford North Primary School." + ], + "field_funding_type_name": ["Planning", "Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Seaford North Primary School" + ], + "field_latitude": ["-38.090431"], + "field_latitude_longitude_value": ["-38.090431,145.133026"], + "field_latitude_value": ["-38.090431"], + "field_longitude": ["145.133026"], + "field_longitude_value": ["145.133026"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["D1-01-4974", "01-4974"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Subject to future funding", "Q2 2019"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["81 Hallifax St"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20424], + "status": [true], + "title": ["Seaford North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0e7728ab-9fcb-4ea4-be94-9e33d7d0a059"] + }, + "sort": ["Seaford North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20514:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seaford-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe upgraded this school,\u00a0\u00a0providing new facilities. Work included replacing relocatable structures with a permanent building housing classrooms, administrative and shared learning spaces, as well as external landscaping. \u200b", + "We\u00a0helped\u00a0create flexible outdoor learning spaces at the school.", + "We built\u00a0an Indigenous outdoor sensory flexible learning space that acknowledges the school's strong links to its Koorie heritage." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $3 million was allocated to the school.", + "The school received $200,000 through the School Pride and Sports Funding program.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Seaford Park Primary School" + ], + "field_latitude": ["-38.10424", "-38.10424", "-38.10424"], + "field_latitude_longitude_value": ["-38.10424,145.1547"], + "field_latitude_value": ["-38.10424"], + "field_longitude": ["145.1547", "145.1547", "145.1547"], + "field_longitude_value": ["145.1547"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["01-5191", "D1-01-5191", "D2-01-5191"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q1 2018", "Q4 2019", "Q3 2021"], + "field_start_date": ["Q4 2018", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["141 East Rd"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20514], + "status": [true], + "title": ["Seaford Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["999882d3-feef-4138-a018-4940e994ea60"] + }, + "sort": ["Seaford Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20227:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seaford-primary-school"], + "changed": ["2023-12-18T09:36:39+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a new multi-purpose and art facility, and also refurbished\u00a0the\u00a0administration building. The finished works\u00a0also involved extensive landscaping to the school, including to the external learning areas.", + "We upgraded the playground and outdoor areas with new play equipment, landscaping and plantings.", + "We built an inclusive outdoor learning space. The space has sensory equipment and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $7 million was allocated to schools across the state for planning, including Seaford Primary School. Further funding of $5.3 million has been allocated in the 2018\u201319 State Budget.", + "In the 2020 Minor Capital Works Fund, the school was allocated $490,665.", + "In Round 7 of the Inclusive Schools Fund, the project received $192,702." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Seaford Primary School." + ], + "field_latitude": ["-38.104408", "-38.1044209303632", "-38.104436"], + "field_latitude_longitude_value": ["-38.104408,145.130829"], + "field_latitude_value": ["-38.104408"], + "field_longitude": ["145.130829", "145.12940838023", "145.130496"], + "field_longitude_value": ["145.130829"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["01-3835", "D1-01-3835", "D2-01-3835"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 7" + ], + "field_q_complete": ["Q2 2021", "Q4 2022", "Q4 2023"], + "field_start_date": ["Q4 2020", "Q4 2021"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Mcrae St"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20227], + "status": [true], + "title": ["Seaford Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8d17e953-1133-4e68-b6c5-4c8176f2119c"] + }, + "sort": ["Seaford Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33255:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seaholme-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-06-07T16:07:09+10:00"], + "field_about_project_processed": [ + "We are replacing the current building of this kindergarten with a new, 2-room modular building. This will give children better spaces to learn and provide 66 approved kindergarten places for local families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the State Government and Hobsons Bay City Council. The Victorian Government has provided $9.95 million in funding to support 5 projects that will deliver more than 370 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Seaholme Kindergarten" + ], + "field_latitude": ["-37.864744"], + "field_latitude_longitude_value": ["-37.864744,144.839887"], + "field_latitude_value": ["-37.864744"], + "field_longitude": ["144.839887"], + "field_longitude_value": ["144.839887"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["15-SK"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Parkside Crescent"], + "field_suburb": ["Seaholme"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33255], + "status": [true], + "title": ["Seaholme Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["84a9f470-56a6-4064-84ca-f558c66b4c1f"] + }, + "sort": ["Seaholme Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36784:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seaholme-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,410" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Seaholme Primary School" + ], + "field_latitude": ["-37.864212"], + "field_latitude_longitude_value": ["-37.864212,144.839906"], + "field_latitude_value": ["-37.864212"], + "field_longitude": ["144.839906"], + "field_longitude_value": ["144.839906"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3018"], + "field_project_code": ["01-4440"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Cnr Millers Rd & Civic Parade"], + "field_suburb": ["Seaholme"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36784], + "status": [true], + "title": ["Seaholme Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b03e483e-aef1-42b3-a9d0-c357cd84c656"] + }, + "sort": ["Seaholme Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22305:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seaspray-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:48+11:00"], + "field_about_project_processed": [ + "We helped build an inclusive playground. It has new play and sensory equipment and synthetic turf.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $170,270" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Seaspray Primary School" + ], + "field_latitude": ["-38.356489"], + "field_latitude_longitude_value": ["-38.356489,147.170623"], + "field_latitude_value": ["-38.356489"], + "field_longitude": ["147.170623"], + "field_longitude_value": ["147.170623"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3851"], + "field_project_code": ["01-4324"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Prospect Road"], + "field_suburb": ["Seaspray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22305], + "status": [true], + "title": ["Seaspray Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["5ece61ec-14c0-447c-95f4-ba6d7c53215a"] + }, + "sort": ["Seaspray Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25461:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seawinds-community-hub"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-06-10T12:00:29+10:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor environment and landscaping to make it more inclusive for children of all abilities and to better reflect the surrounding natural environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Gran, $197,828 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Rosebud West Community Hub" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3940"], + "field_project_code": ["15-SCH"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["11A Allambi Ave"], + "field_suburb": ["Capel Sound"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25461], + "status": [true], + "title": ["Seawinds Community Hub"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["ab5a4108-3e1b-4e37-98ae-8c7fcbc6bba4"] + }, + "sort": ["Seawinds Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36996:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sebastopol-community-hub-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-20T12:29:34+11:00"], + "field_about_project_processed": [ + "We are building a community hub. It will provide kindergarten, as well as care and health services to local children and families. The new community hub will provide up to 66 new spaces for local children each day. The hub will include 4 multipurpose activity rooms and 2 consulting rooms for maternal and child health. The hub will help expand free kindergarten, as part of the Best Start, Best Life reforms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 4 of the 2023 Building Blocks Capacity Grant, $4,500,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build of Sebastopol Community Hub (interim name)" + ], + "field_latitude": ["-37.59261851"], + "field_latitude_longitude_value": ["-37.59261851,143.8385611"], + "field_latitude_value": ["-37.59261851"], + "field_longitude": ["143.8385611"], + "field_longitude_value": ["143.8385611"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3356"], + "field_project_code": ["15-SebCH"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q2 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["250\u2013266 Vickers St"], + "field_suburb": ["Sebastopol"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36996], + "status": [true], + "title": ["Sebastopol Community Hub (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e166b56f-edd3-49a8-a4e1-0eb5a14dbcc7"] + }, + "sort": ["Sebastopol Community Hub (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19958:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sebastopol-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0the school upgrade their oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $89,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sebastopol Primary School" + ], + "field_latitude": ["-37.5957051"], + "field_latitude_longitude_value": ["-37.5957051,143.8449255"], + "field_latitude_value": ["-37.5957051"], + "field_longitude": ["143.8449255"], + "field_longitude_value": ["143.8449255"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3356"], + "field_project_code": ["01-1167"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["9 Warreen St"], + "field_suburb": ["Sebastopol"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19958], + "status": [true], + "title": ["Sebastopol Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8d076d31-fafa-4175-b696-fc296a245b06"] + }, + "sort": ["Sebastopol Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23321:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sebastopol-south-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We are upgrading Sebastopol South Kindergarten. This includes new windows as well as storage and bathroom upgrades. Outside, we're replacing the pergola in the kinder yard. The project will also provide 14 extra funded kindergarten places for local 3 and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childood Refurbishment and Minor Works grant, $500,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sebastopol South Kindergarten" + ], + "field_latitude": ["-37.60232388"], + "field_latitude_longitude_value": ["-37.60232388,143.8384139"], + "field_latitude_value": ["-37.60232388"], + "field_longitude": ["143.8384139"], + "field_longitude_value": ["143.8384139"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3356"], + "field_project_code": ["15-1136"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Design"], + "field_street_address": ["179-181 Spencer Street"], + "field_suburb": ["Sebastopol"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23321], + "status": [true], + "title": ["Sebastopol South Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2717f726-5bb0-48b8-9869-ba1f59c7073f"] + }, + "sort": ["Sebastopol South Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25384:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/selby-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We modernised the fittings and re-tiled the student toilets to improve amenities, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $138,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Selby Primary School." + ], + "field_latitude": ["-37.911431"], + "field_latitude_longitude_value": ["-37.911431,145.367517"], + "field_latitude_value": ["-37.911431"], + "field_longitude": ["145.367517"], + "field_longitude_value": ["145.367517"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3159"], + "field_project_code": ["01-4685"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Morley St"], + "field_suburb": ["Selby"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25384], + "status": [true], + "title": ["Selby Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b209a4ed-f47a-4d3b-9a20-65be62f0bfe1"] + }, + "sort": ["Selby Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21463:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/select-entry-schools-additional-provision-girls"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bFunding\u00a0has been announced to review long-term select entry provision for girls across Victoria. This review will include options for creating more capacity at Mac Robertson Girl's High School. The Government is\u00a0reviewing select entry schooling to ensure girls and boys have equal access to\u00a0select entry schools. The\u00a0funding will review long-term select entry provision for girls across Victoria as well as look at options for creating more capacity at Mac Robertson Girls\u2019 High School to address the disparity. Options to expand Mac\u00a0Robertson Girls\u2019 High School include increasing capacity on the current site and leasing or buying a new site. The review will not look at expanding the current site adjacent to Albert Park to ensure the surrounding parkland is not affected.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $500,000 was allocated to planning funding for additional provision for girls in select entry schools." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Select entry schools: additional provision for girls" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["EP_SEP"], + "field_project_title": ["Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21463], + "status": [true], + "title": ["Select entry schools: additional provision for girls"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["28810216-5669-4481-a60c-4ab270319062"] + }, + "sort": ["Select entry schools: additional provision for girls"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20135:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive outdoor learning space. This landscaped area includes a\u00a0shade structure and paving." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $187,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Seville Primary School" + ], + "field_latitude": ["-37.7730412"], + "field_latitude_longitude_value": ["-37.7730412,145.4642782"], + "field_latitude_value": ["-37.7730412"], + "field_longitude": ["145.4642782"], + "field_longitude_value": ["145.4642782"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3139"], + "field_project_code": ["01-2820"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["639 Warburton Highway"], + "field_suburb": ["Seville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20135], + "status": [true], + "title": ["Seville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bc596446-20e6-4333-ac56-87f486d0729e"] + }, + "sort": ["Seville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20957:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/seymour-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed a master plan at the start of 2017 for two stages of works. Stage one involved\u00a0constructing the Middle Years and Senior Years Learning Building, food technology area\u00a0and canteen.", + "\u200b\u200bThe City of Mitchell built\u00a0an integrated\u00a0community/learning hub at Seymour College. The hub\u00a0hosts a range of activities that support community strengthening and development. The Seymour Community Hub\u00a0consists of two early learning rooms with associated outdoor spaces, two maternal and child health rooms with a shared waiting area, and two consulting rooms. Allied health professionals\u00a0use the consulting rooms to deliver specialist health services such as early childhood intervention services, family services, counselling, occupational therapy and speech therapy.\u00a0 The hub\u00a0also includes a multi-purpose room that opens out to the outdoor play space that can be used for extended day care or as a meeting space for community meetings, school holiday programs, homework groups and group activities such as yoga, social groups and youth groups.\u200b\u00a0 In the 2016\u201317 State Budget, the Victorian Government invested $50 million into the Shared Facilities Fund. The program funds schools, councils and other institutions to develop shared facilities such as early learning centres, sports facilities and community hubs. These co-located and shared facilities improve connections between school and community, build a sense of collective purpose and transform neighbourhoods.\u200b\u200b", + "We completed refurbishing\u00a0toilets and some\u00a0building maintenance." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "\u200bIn the 2018-19 State Budget, $6.88 million of funding was allocated to the school.", + "Through the Shared Facilities Fund, $3.75 million has been allocated to the school.", + "In the 2016\u201317 State Budget, $630,000 was allocated for planned maintenance." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Planned Maintenance Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Seymour College" + ], + "field_latitude": ["-37.031830", "-37.031833", "-37.0312"], + "field_latitude_longitude_value": ["-37.031830,145.142654"], + "field_latitude_value": ["-37.031830"], + "field_longitude": ["145.142654", "145.142660", "145.14317"], + "field_longitude_value": ["145.142654"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3660"], + "field_project_code": ["01-8884", "D1-01-8884", "D2-01-8884"], + "field_project_title": [ + "Upgrade and Modernisation", + "Shared Facilities Fund", + "Planned Maintenance Program" + ], + "field_q_complete": ["Q4 2019", "Q4 2019", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["29-47 Stewart St"], + "field_suburb": ["Seymour"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20957], + "status": [true], + "title": ["Seymour College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4e5e240b-9fda-4592-afc4-42bc9dac1484"] + }, + "sort": ["Seymour College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21178:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shepparton-adult-community-education-inc"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported Shepparton Adult and Community Education Inc to build a two-storey classroom block, and refurbish an existing building, on a new site.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $1,892,447 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shepparton Adult & Community Education Inc" + ], + "field_latitude": ["-36.38269"], + "field_latitude_longitude_value": ["-36.38269,145.40304"], + "field_latitude_value": ["-36.38269"], + "field_longitude": ["145.40304"], + "field_longitude_value": ["145.40304"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["03-2065"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["130 Rowe St"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21178], + "status": [true], + "title": ["Shepparton Adult & Community Education Inc"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3c3e1091-2bed-4984-b65a-d8b3f4cd1cbb"] + }, + "sort": ["Shepparton Adult & Community Education Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21074:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shepparton-christian-college-ltd"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped upgrade and modernise this school. They built: 3 general purpose classrooms and a wood technology room for secondary students a toilet block\u00a0 a large connecting corridor a covered outdoor break-out space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shepparton Christian College Ltd" + ], + "field_latitude": ["-36.3538661"], + "field_latitude_longitude_value": ["-36.3538661,145.4159786"], + "field_latitude_value": ["-36.3538661"], + "field_longitude": ["145.4159786"], + "field_longitude_value": ["145.4159786"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["02-1964"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["155 Verney Rd"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21074], + "status": [true], + "title": ["Shepparton Christian College Ltd"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b47f94d9-e443-49eb-9a01-e2715b1bc2c6"] + }, + "sort": ["Shepparton Christian College Ltd"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20032:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shepparton-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We extended the main building to create more indoor learning space.", + "We added portable partition walls to an open learning area in the main building to create four classrooms and four withdrawal spaces. This offers\u00a0the school greater flexibility to accommodate a diverse range of modern teaching methods that support students and maximise their learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $258,665.", + "In 2018, $22,800 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Shepparton East Primary School" + ], + "field_latitude": ["-36.4004883", "-36.40049"], + "field_latitude_longitude_value": ["-36.4004883,145.4797511"], + "field_latitude_value": ["-36.4004883"], + "field_longitude": ["145.4797511", "145.47975"], + "field_longitude_value": ["145.4797511"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3631"], + "field_project_code": ["D1-01-1713", "01-1713"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2022", "Q1 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["15 School Rd"], + "field_suburb": ["Shepparton East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20032], + "status": [true], + "title": ["Shepparton East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["40177e6a-4c06-42c8-ae1c-9756fa71d8dc"] + }, + "sort": ["Shepparton East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21464:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shepparton-education-plan"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Government is transforming local education through the Shepparton Education Plan. Development of the plan began in 2017, with a vision of transforming student outcomes by empowering all students to learn and achieve, experience high quality teaching and the best conditions for lifelong learning. We consulted the community on a broad range of complex educational and social issues. You can contact us for a copy of the engagement report.\u00a0 As part of this plan, we have supported the merger of four secondary schools to create Greater Shepparton Secondary College. These schools will come together on a new purpose-built campus. The college will offer the Shepparton community new facilities and provide students more subject choices than ever before. We have\u00a0also delivered\u00a0a new integrated early learning centre in Mooroopna. This new centre is\u00a0connected to Mooroopna Primary School through the Our Place model \u2013 making it easier for families and the wider community to access education, and health and wellbeing services.\u00a0 Stage two of the Plan (Early Years),\u00a0focusses on the educational journey of children from birth to school. It proposes a range of outcomes and supporting actions to ensure local children have access to integrated, effective, and inclusive early childhood education and care services. Together with its Secondary, Primary and Tertiary stages, The Shepparton Education Plan is a long-term plan to transform education in Shepparton to help young people get the best possible start in life. It looks at learning from birth to post-secondary school.\u00a0 For more information on learning programs and partnerships this plan is delivering, and to view the plan in full, please visit the Department of Education. This plan is one of several education plans we are involved in. To learn more about the new buildings, upgraded facilities or community consultations connected to other education plans across the state, please visit the VSBA education plans page. For all other information queries contact education.plans@edumail.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $20.5 million has been allocated to the Shepparton Education Plan. This follows $1 million in planning funding in 2017\u201318. In 2020, $119 million was allocated to the Greater Shepparton Secondary College." + ], + "field_funding_type_name": ["Education Plan"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Shepparton Education Plan" + ], + "field_mappintype_name": ["Planning"], + "field_mappintype_value": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["EP_Shep"], + "field_project_title": ["Education Plan"], + "field_q_complete": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21464], + "status": [true], + "title": ["Shepparton Education Plan"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["934c28f8-4736-43be-b330-bb68ad060877"] + }, + "sort": ["Shepparton Education Plan"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20444:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sherbourne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the student toilet blocks to provide modern, hygienic and functional facilities.", + "We helped\u00a0upgrade the school's oval and surrounding areas, including paths, spectator seating and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $458,125.", + "The school received $559,000 through the School Pride and Sports Funding program." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sherbourne Primary School." + ], + "field_latitude": ["-37.710418", "-37.710418"], + "field_latitude_longitude_value": ["-37.710418,145.128909"], + "field_latitude_value": ["-37.710418"], + "field_longitude": ["145.128909", "145.128909"], + "field_longitude_value": ["145.128909"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["D1-01-5013", "01-5013"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2022", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Outlook Cr"], + "field_suburb": ["Briar Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20444], + "status": [true], + "title": ["Sherbourne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["00bce1b4-eaf7-4361-9b74-f16139876fbe"] + }, + "sort": ["Sherbourne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20720:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sherbrooke-community-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0installed\u00a0new signage and fencing, in line with the\u00a0school's new identity.\u00a0 \u200b", + "\u200bWe removed trees, upgraded the playground, repaired the bridge and refurbished toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $50,000 was allocated to the school.", + "In the 2018\u201319 State Budget, the school received $400,000." + ], + "field_funding_type_name": [ + "School Improvement Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sherbrooke Community School" + ], + "field_latitude": ["-37.86809"], + "field_latitude_longitude_value": ["-37.86809,145.34923"], + "field_latitude_value": ["-37.86809"], + "field_longitude": ["145.34923"], + "field_longitude_value": ["145.34923"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3787"], + "field_project_code": ["01-6252", "D1-01-6252"], + "field_project_title": [ + "School Improvement Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2016", "Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["311 Mt Dandenong Tourist Rd"], + "field_suburb": ["Sassafras"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20720], + "status": [true], + "title": ["Sherbrooke Community School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["44d6a771-1cf9-4704-8ee1-1859d5e84239"] + }, + "sort": ["Sherbrooke Community School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22645:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shine-bright-echuca-east-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are renovating the children\u2019s bathroom and adding new storage to make the space more functional. We\u2019ll replace deteriorating floor covering, patch and repaint damaged walls, and replace pin boards with new wall carpet." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $54,740 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Echuca East Kindergarten" + ], + "field_latitude": ["-36.13452216"], + "field_latitude_longitude_value": ["-36.13452216,144.7633808"], + "field_latitude_value": ["-36.13452216"], + "field_longitude": ["144.7633808"], + "field_longitude_value": ["144.7633808"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3564"], + "field_project_code": ["15-483"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["115 Stawell St"], + "field_suburb": ["Echuca"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22645], + "status": [true], + "title": ["Shine Bright Echuca East Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d6f30b5d-3c48-4ac0-a3ca-45620201f3b5"] + }, + "sort": ["Shine Bright Echuca East Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22646:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shine-bright-echuca-south-community-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We helped refurbish Shine Bright Echuca South Kindergarten.\u00a0We replaced the flooring and carpet, and installed air conditioning. We painted inside and outside of the building and replaced the front gate." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $54,880 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Echuca South Community Kindergarten" + ], + "field_latitude": ["-36.14627866"], + "field_latitude_longitude_value": ["-36.14627866,144.7529831"], + "field_latitude_value": ["-36.14627866"], + "field_longitude": ["144.7529831"], + "field_longitude_value": ["144.7529831"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3564"], + "field_project_code": ["15-484"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["232 High Street"], + "field_suburb": ["Echuca South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22646], + "status": [true], + "title": ["Shine Bright Echuca South Community Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d329ac06-26f2-4228-aa7b-d978b23139b6"] + }, + "sort": ["Shine Bright Echuca South Community Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21442:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/shine-bright-kunawaa-kindergarten-kunawaa-preschool" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Kunawaa Preschool relocated to Swan Hill Primary School, enabling parents to access early childhood and primary education all in one learning precinct." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $367,837 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Kunawaa Kindergarten (Kunawaa Preschool)" + ], + "field_latitude": ["-35.346294460879058"], + "field_latitude_longitude_value": [ + "-35.346294460879058,143.54330690713815" + ], + "field_latitude_value": ["-35.346294460879058"], + "field_longitude": ["143.54330690713815"], + "field_longitude_value": ["143.54330690713815"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3585"], + "field_project_code": ["ELC-KW"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["143 Gray St"], + "field_suburb": ["Swan Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21442], + "status": [true], + "title": ["Shine Bright Kunawaa Kindergarten (Kunawaa Preschool)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6be6efb7-9df1-495d-b7de-47973ae9b893"] + }, + "sort": ["Shine Bright Kunawaa Kindergarten (Kunawaa Preschool)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22647:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shine-bright-neale-street-north-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are upgrading the deteriorating flooring coverings, and painting the inside and outside of the building. We\u2019ll also renovate the bathroom and add an extra toilet. This will allow the kindergarten to offer more increase places for local three and four-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $74,195 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Neale Street North Kindergarten" + ], + "field_latitude": ["-36.75857696"], + "field_latitude_longitude_value": ["-36.75857696,144.2943176"], + "field_latitude_value": ["-36.75857696"], + "field_longitude": ["144.2943176"], + "field_longitude_value": ["144.2943176"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["15-89"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["7 Neale St"], + "field_suburb": ["Kennington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22647], + "status": [true], + "title": ["Shine Bright Neale Street North Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8a9786ef-9a22-4b68-bf2f-dbd09a3c0932"] + }, + "sort": ["Shine Bright Neale Street North Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22643:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shine-bright-rochester-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are upgrading the appearance and functionality of Shine Bright Rochester Kindergarten. We are installing a new sink for the children and connecting hot water to the main room. We\u2019ll replace deteriorating floor coverings, and repaint the inside and outside of the centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $54,677 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Rochester Kindergarten" + ], + "field_latitude": ["-36.36299288"], + "field_latitude_longitude_value": ["-36.36299288,144.700063"], + "field_latitude_value": ["-36.36299288"], + "field_longitude": ["144.700063"], + "field_longitude_value": ["144.700063"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3561"], + "field_project_code": ["15-1084"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["8\u201310 Fraser Street"], + "field_suburb": ["Rochester"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22643], + "status": [true], + "title": ["Shine Bright Rochester Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3bc01847-c74d-4bd9-9f0c-07d41e5ed83c"] + }, + "sort": ["Shine Bright Rochester Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21385:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shine-bright-shamrock-park-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished a multipurpose room and play area located at St Mary's Catholic Primary School to commence Shine Bright Shamrock Park Kindergarten. Works included painting and new floor coverings, as well as upgrading the play area and outside play equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $179,767 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Shamrock Park Kindergarten" + ], + "field_latitude": ["-35.3284683"], + "field_latitude_longitude_value": ["-35.3284683,143.5457328"], + "field_latitude_value": ["-35.3284683"], + "field_longitude": ["143.5457328"], + "field_longitude_value": ["143.5457328"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3585"], + "field_project_code": ["15-SHB"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Murlong St"], + "field_suburb": ["Swan Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21385], + "status": [true], + "title": ["Shine Bright Shamrock Park Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9ebc3119-f894-4df0-89f7-1f13e3413458"] + }, + "sort": ["Shine Bright Shamrock Park Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22644:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shine-bright-stanhope-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We renovated the children\u2019s bathroom and installed 2 split system air conditioners. We also repainted the inside and outside of the centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $61,380 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Stanhope Kindergarten" + ], + "field_latitude": ["-36.44659013"], + "field_latitude_longitude_value": ["-36.44659013,144.984535"], + "field_latitude_value": ["-36.44659013"], + "field_longitude": ["144.984535"], + "field_longitude_value": ["144.984535"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3623"], + "field_project_code": ["15-1304"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Godley Pl"], + "field_suburb": ["Stanhope"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22644], + "status": [true], + "title": ["Shine Bright Stanhope Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["dea5c999-5773-40a3-9124-dffabf0917ab"] + }, + "sort": ["Shine Bright Stanhope Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22636:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shine-bright-swan-hill-south-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We enclosed the veranda area and renovated the bathroom so that Shine Bright Swan Hill South Kindergarten can offer an additional 15 kindergarten places for three-year-olds. We also painted exterior windows and timber trims and installed carpet." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $166,740 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shine Bright Swan Hill South Kindergarten" + ], + "field_latitude": ["-35.34623725"], + "field_latitude_longitude_value": ["-35.34623725,143.5492193"], + "field_latitude_value": ["-35.34623725"], + "field_longitude": ["143.5492193"], + "field_longitude_value": ["143.5492193"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3585"], + "field_project_code": ["15-1252"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["5 Willick St"], + "field_suburb": ["Swan Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22636], + "status": [true], + "title": ["Shine Bright Swan Hill South Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["05cc8595-4844-4559-9bdc-f9c502e26ec5"] + }, + "sort": ["Shine Bright Swan Hill South Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21244:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/shirley-robertson-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are replacing verandas on both kindergarten rooms. This will improve natural light inside and keep children shaded when they are learning and playing outside.", + "We replaced shading infrastructure to maximise natural light into the service. This helps to improve health and safety for children, and provide year-round learning and play spaces.", + "Shirley Robertson Children's Centre have converted their outdoor area into an all-weather play area, improving its safety for children and encouraging inclusive play. The upgrade also included\u00a0adding indigenous flora." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants, $154,960 was allocated to this project.", + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project.", + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $89,593 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facilities Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Shirley Robertson Children's Centre" + ], + "field_latitude": ["-37.75295151", "-37.75274"], + "field_latitude_longitude_value": ["-37.75295151,144.9624723"], + "field_latitude_value": ["-37.75295151"], + "field_longitude": ["144.9624723", "144.96249"], + "field_longitude_value": ["144.9624723"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["D2-15-311", "D1-15-311", "15-311"], + "field_project_title": [ + "Building Blocks Inclusion Grant", + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q2 2024", "Q4 2022", "Q4 2019"], + "field_start_date": ["Q2 2023", "Q3 2021"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["1A Cameron St"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21244], + "status": [true], + "title": ["Shirley Robertson Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["70113093-55b1-4bf8-abc1-3a2b7f607df6"] + }, + "sort": ["Shirley Robertson Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21232:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sholem-aleichem-preschool-education-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe helped to deliver a range of refurbishments of the senior preschool building. These\u00a0included a larger space that will enable more enrolments, small rooms for individual learning, moving the children\u2019s toilets, and upgrading storage, food prep and staff work areas.", + "We upgraded\u00a0the playground at kindergarten\u00a0to better support children in their outdoor learning and play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $500,000 was allocated to the project.", + "In the 2020\u201321 Building Blocks Improvement Grant $300,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Early Learning Facility Upgrade", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sholem Aleichem Preschool Education Centre" + ], + "field_latitude": ["-37.882438", "-37.886802673339844"], + "field_latitude_longitude_value": ["-37.882438,145.000972"], + "field_latitude_value": ["-37.882438"], + "field_longitude": ["145.000972", "145.00653076171875"], + "field_longitude_value": ["145.000972"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3185"], + "field_project_code": ["15-276", "D1-15-276"], + "field_project_title": [ + "Early Learning Facility Upgrade", + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q1 2021", "Q4 2021"], + "field_start_date": ["Q3 2020", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["51 Elizabeth St"], + "field_suburb": ["ELSTERNWICK"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21232], + "status": [true], + "title": ["Sholem Aleichem Preschool Education Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6d653427-287c-45fc-a5d9-2ad4314da187"] + }, + "sort": ["Sholem Aleichem Preschool Education Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28140:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sidrah-gardens-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school build a double classroom pod with new staff and student amenities and outdoor learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1.75 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sidrah Gardens School." + ], + "field_latitude": ["-37.972369454660814"], + "field_latitude_longitude_value": [ + "-37.972369454660814,145.31592053960063" + ], + "field_latitude_value": ["-37.972369454660814"], + "field_longitude": ["145.31592053960063"], + "field_longitude_value": ["145.31592053960063"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3804"], + "field_project_code": ["01-2246"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["434\u2013442 Belgrave-Hallam Rd"], + "field_suburb": ["Narre Warren North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28140], + "status": [true], + "title": ["Sidrah Gardens School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["b6410d29-d787-4435-a4fd-b81fc1ddd3d9"] + }, + "sort": ["Sidrah Gardens School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21094:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/siena-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build a\u00a0new Catholic primary school in the Lucas area. Construction included 2 buildings with general learning areas, 2 additional permanent modular buildings, site works involving synthetic turf, and other infrastructure. \u200b The first of the\u00a0permanent modular buildings\u00a0provided\u00a0the core facilities for the school to open for term one, 2017. The\u00a0second modular\u00a0provided 6 further\u00a0classrooms, a dedicated art area and extra toilets. This building was ready for use on the first day of Term 1,\u00a02018. The learning spaces\u00a0promote communication and collaboration between staff and students, and cater for individual differences, respecting the variety of learning needs.\u200b The principal of the school is Jo Brewer. \u200b\u200b\u200bPlease visit the\u00a0school's website\u200b\u00a0for information around enrolments.\u200b", + "We helped the school build a gymnasium and upgrade landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1.5 million was allocated to the school.", + "Under the 2019\u201320 capital funding program for non-government schools, $1.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Siena Catholic Primary School" + ], + "field_latitude": ["-37.55078", "-37.55078"], + "field_latitude_longitude_value": ["-37.55078,143.77667"], + "field_latitude_value": ["-37.55078"], + "field_longitude": ["143.77667", "143.77667"], + "field_longitude_value": ["143.77667"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["02-2115", "D1-02-2115"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund - 2019-20" + ], + "field_q_complete": ["Q4 2017", "Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Eleanor Dr"], + "field_suburb": ["Lucas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21094], + "status": [true], + "title": ["Siena Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9ff9232a-0ecd-498d-b572-fb89e5b94be4"] + }, + "sort": ["Siena Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20040:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/silvan-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to refurbish outdoor paths and resurface sports courts." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $65,760." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Silvan Primary School" + ], + "field_latitude": ["-37.8243532"], + "field_latitude_longitude_value": ["-37.8243532,145.4209916"], + "field_latitude_value": ["-37.8243532"], + "field_longitude": ["145.4209916"], + "field_longitude_value": ["145.4209916"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3795"], + "field_project_code": ["01-1801"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["269 Monbulk Rd"], + "field_suburb": ["Silvan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20040], + "status": [true], + "title": ["Silvan Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b0533974-4211-4494-b254-5353a1a19469"] + }, + "sort": ["Silvan Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20485:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/silverton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are providing roof sheeting, gutter and downpipe replacement on three buildings.", + "We upgraded the school to allow it to better cater for higher student enrolments. This work\u00a0included building a permanent library, a new accessible\u00a0entrance and community interface and refurbishing the administration building,\u00a0toilets and outdoor areas.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $470,899.", + "In the 2016\u201317 State Budget, $2,166,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Silverton Primary School" + ], + "field_latitude": ["-37.949229", "-37.94864"], + "field_latitude_longitude_value": ["-37.949229,145.192882"], + "field_latitude_value": ["-37.949229"], + "field_longitude": ["145.192882", "145.19287"], + "field_longitude_value": ["145.192882"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["D1-01-5120", "01-5120"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q4 2018"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["77-123 Jacksons Rd"], + "field_suburb": ["Noble Park North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20485], + "status": [true], + "title": ["Silverton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d7c71658-7977-47c2-9432-dc9fb630a84a"] + }, + "sort": ["Silverton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21104:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/simonds-catholic-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the college to refurbish St Mary's Campus, as it prepares to consolidate its St Brigid's Campus back into the St Mary's site." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Simonds Catholic College" + ], + "field_latitude": ["-37.8057948"], + "field_latitude_longitude_value": ["-37.8057948,144.9524151"], + "field_latitude_value": ["-37.8057948"], + "field_longitude": ["144.9524151"], + "field_longitude_value": ["144.9524151"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3003"], + "field_project_code": ["02-25"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["273 Victoria St"], + "field_suburb": ["West Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21104], + "status": [true], + "title": ["Simonds Catholic College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0b144cc6-8c74-4974-8a2b-fc5c3284073e"] + }, + "sort": ["Simonds Catholic College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25385:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/simpson-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We replaced roof sheeting and fixed the ceilings in both the main building and art building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $333,305 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Simpson Primary School" + ], + "field_latitude": ["-38.498615"], + "field_latitude_longitude_value": ["-38.498615,143.20788"], + "field_latitude_value": ["-38.498615"], + "field_longitude": ["143.20788"], + "field_longitude_value": ["143.20788"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3266"], + "field_project_code": ["01-4895"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Cockayne Street"], + "field_suburb": ["Simpson"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25385], + "status": [true], + "title": ["Simpson Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6d01e230-60d3-4818-b9b1-a2f743d1280c"] + }, + "sort": ["Simpson Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24990:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/skene-street-school-stawell"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. We will also upgrade the administration building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $2.106 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Skene Street School Stawell" + ], + "field_latitude": ["-37.057672"], + "field_latitude_longitude_value": ["-37.057672,142.78383"], + "field_latitude_value": ["-37.057672"], + "field_longitude": ["142.78383"], + "field_longitude_value": ["142.78383"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3380"], + "field_project_code": ["01-5272"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["7-13 Skene Street"], + "field_suburb": ["Stawell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24990], + "status": [true], + "title": ["Skene Street School Stawell"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1a278aef-4ecb-4926-90ec-75e1a7ce5e73"] + }, + "sort": ["Skene Street School Stawell"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21451:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/skipton-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and expanding the kindergarten. This will create more kinder places for local children, including those needed for the roll-out of subsidised kindergarten for three-year-olds beginning in 2021." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $400,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Skipton Kindergarten" + ], + "field_latitude": ["-37.6859898"], + "field_latitude_longitude_value": ["-37.6859898,143.3680242"], + "field_latitude_value": ["-37.6859898"], + "field_longitude": ["143.3680242"], + "field_longitude_value": ["143.3680242"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3361"], + "field_project_code": ["ELC-SK"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["8 Montgomery St"], + "field_suburb": ["Skipton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21451], + "status": [true], + "title": ["Skipton Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["274f1dd1-162e-4df4-84da-ac9b505c7f0c"] + }, + "sort": ["Skipton Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20701:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/skipton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $4.197 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Skipton Primary School" + ], + "field_latitude": ["-37.6867013"], + "field_latitude_longitude_value": ["-37.6867013,143.3681211"], + "field_latitude_value": ["-37.6867013"], + "field_longitude": ["143.3681211"], + "field_longitude_value": ["143.3681211"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3361"], + "field_project_code": ["01-582"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["7 Montgomery St"], + "field_suburb": ["Skipton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20701], + "status": [true], + "title": ["Skipton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["192690fc-9fe2-4734-be99-f5208cee44a6"] + }, + "sort": ["Skipton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19967:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/skye-primary-school"], + "changed": ["2023-10-23T10:11:28+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We buillt a new gym with a competition-grade basketball and netball court. We also undertook a major refurbishment of the school\u2019s learning and administration areas.", + "We are refurbishing the senior toilet blocks, and partially refurbishing the junior toilet blocks, to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "\u200b\u200b\u200b\u200bWe installed new\u00a0fencing at the front of the school.\u200b", + "\u200b\u200b\u200bWe resurfaced the school's soccer pitch.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $7.8 million.", + "In the 2022\u201323 State Budget the project received $497,627 from the Minor Capital Works Fund.", + "In the 2017\u201318 State Budget, $70,000 was allocated to the school.", + "In the 2016\u201317 State Budget, $60,000 was allocated to the school. $9,000 was also allocated to the school through the Planned Maintenance Program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "School Pride and Sports Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Skye Primary School" + ], + "field_latitude": [ + "-38.11699", + "-38.117707", + "-38.11699", + "-38.11699" + ], + "field_latitude_longitude_value": ["-38.11699,145.20114"], + "field_latitude_value": ["-38.11699"], + "field_longitude": [ + "145.20114", + "145.201245", + "145.20114", + "145.20114" + ], + "field_longitude_value": ["145.20114"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": [ + "D2-01-1222", + "D3-01-1222", + "D1-01-1222", + "01-1222" + ], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "School Pride and Sports Fund - Project 2", + "School Pride and Sports Fund - Project 1" + ], + "field_q_complete": ["Q4 2022", "Q1 2024", "Q4 2018", "Q2 2018"], + "field_start_date": ["Q2 2019", "Q2 2022"], + "field_status_name": [ + "Complete", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["395 Ballarto Rd"], + "field_suburb": ["Skye"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19967], + "status": [true], + "title": ["Skye Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b0f8e798-dd3d-4a50-8a5f-cb0a61d5df9f"] + }, + "sort": ["Skye Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28662:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/somers-parade-parent-committee-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play and learning areas. Children can now learn while exploring natural landscapes or playing with others in a mud kitchen or bush hut. They can experience Indigenous culture and relax alongside running water." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $199,947.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Somers Parade Parent Committee Inc." + ], + "field_latitude": ["-37.87068928"], + "field_latitude_longitude_value": ["-37.87068928,144.8104156"], + "field_latitude_value": ["-37.87068928"], + "field_longitude": ["144.8104156"], + "field_longitude_value": ["144.8104156"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3018"], + "field_project_code": ["15-13"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Somers Pde"], + "field_suburb": ["Altona"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28662], + "status": [true], + "title": ["Somers Parade Parent Committee Inc"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d2a842d2-c116-418b-a088-4bda2fae4aef"] + }, + "sort": ["Somers Parade Parent Committee Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33040:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/somers-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:42:05+10:00"], + "field_about_project_processed": [ + "We will build a cover over the basketball court so students can use it in all weather conditions." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $1 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Somers Primary School" + ], + "field_latitude": ["-38.39237795"], + "field_latitude_longitude_value": ["-38.39237795,145.1652416"], + "field_latitude_value": ["-38.39237795"], + "field_longitude": ["145.1652416"], + "field_longitude_value": ["145.1652416"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3927"], + "field_project_code": ["01-4458"], + "field_project_title": [ + "Upgrade and Modernisation - Basketball Court Cover" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["87 Camp Hill Road"], + "field_suburb": ["Somers"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33040], + "status": [true], + "title": ["Somers Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["62634d62-28b8-454d-acf5-09340e513ae3"] + }, + "sort": ["Somers Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20121:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/somerville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will build a cover over the basketball court so students can use it in all weather conditions.", + "We helped build\u00a0a flexible outdoor learning space inspired by indigenous themes. There is\u00a0a garden area with a range of colours, textures, smells and tastes for calming, reflective play and self-regulation, and an undercover area for use in all weathers.", + "We helped\u00a0the school upgrade the asphalt of their basketball courts and install new basketball and netball goals." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $1 million", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund the school was allocated $117,165." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Somerville Primary School" + ], + "field_latitude": ["-38.224016", "-38.2239871"], + "field_latitude_longitude_value": ["-38.224016,145.179139"], + "field_latitude_value": ["-38.224016"], + "field_longitude": ["145.179139", "145.1792195"], + "field_longitude_value": ["145.179139"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3912"], + "field_project_code": ["D2-01-2656", "01-2656", "D1-01-2656"], + "field_project_title": [ + "Upgrade and Modernisation - Basketball Court Cover", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2024", "Q4 2019", "Q4 2021"], + "field_start_date": ["Q2 2023", "Q4 2018", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["37 Eramosa Rd East"], + "field_suburb": ["Somerville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20121], + "status": [true], + "title": ["Somerville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3badae20-309b-44f0-8654-26bff06199dc"] + }, + "sort": ["Somerville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20590:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/somerville-rise-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground. It includes new play and sensory equipment.\u00a0", + "We refurbished the toilets to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $126,500.", + "In the 2020 Minor Capital Works Fund the school was allocated $66,120." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Somerville Rise Primary School" + ], + "field_latitude": ["-38.2313010500913", "-38.2304336500089"], + "field_latitude_longitude_value": [ + "-38.2313010500913,145.173258899955" + ], + "field_latitude_value": ["-38.2313010500913"], + "field_longitude": ["145.173258899955", "145.167571999989"], + "field_longitude_value": ["145.173258899955"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3912"], + "field_project_code": ["D1-01-5372", "01-5372"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2023", "Q3 2021"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Blacks Camp Rd"], + "field_suburb": ["Somerville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20590], + "status": [true], + "title": ["Somerville Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["193c3f5f-2e35-4f8a-91bb-237174be27df"] + }, + "sort": ["Somerville Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22361:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/somerville-secondary-college"], + "changed": ["2023-08-23T14:00:13+10:00"], + "created": ["2022-01-14T14:24:16+11:00"], + "field_about_project_processed": [ + "We refurbished the staff bathroom. It has improved amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $360,627" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Somerville Secondary College" + ], + "field_latitude": ["-38.227257"], + "field_latitude_longitude_value": ["-38.227257,145.168595"], + "field_latitude_value": ["-38.227257"], + "field_longitude": ["145.168595"], + "field_longitude_value": ["145.168595"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3912"], + "field_project_code": ["01-8875"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["37 Graf Road"], + "field_suburb": ["Somerville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22361], + "status": [true], + "title": ["Somerville Secondary College"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["2de99ef0-0877-45ed-83d6-ec4138323231"] + }, + "sort": ["Somerville Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19941:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sorrento-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school\u00a0refurbish the staff toilets to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $62,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sorrento Primary School" + ], + "field_latitude": ["-38.3417647"], + "field_latitude_longitude_value": ["-38.3417647,144.7408941"], + "field_latitude_value": ["-38.3417647"], + "field_longitude": ["144.7408941"], + "field_longitude_value": ["144.7408941"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3943"], + "field_project_code": ["01-1090"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["32 Kerferd Av"], + "field_suburb": ["Sorrento"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19941], + "status": [true], + "title": ["Sorrento Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aa459493-b9d3-4ae1-81c6-b6a2e37f3c94"] + }, + "sort": ["Sorrento Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20635:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/south-gippsland-specialist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an accessible playground.", + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In the 2022\u201323 State Budget, this school received at least $3.682 million." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at South Gippsland Specialist School" + ], + "field_latitude": ["-38.47808", "-38.47819065"], + "field_latitude_longitude_value": ["-38.47808,145.95694"], + "field_latitude_value": ["-38.47808"], + "field_longitude": ["145.95694", "145.9572894"], + "field_longitude_value": ["145.95694"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3953"], + "field_project_code": ["01-5495", "D1-01-5495"], + "field_project_title": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2021", "Q4 2025"], + "field_start_date": ["Q4 2019", "Q2 2022"], + "field_status_name": ["Complete", "Design"], + "field_street_address": ["13 Horn St"], + "field_suburb": ["Leongatha"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20635], + "status": [true], + "title": ["South Gippsland Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["703cb5f0-71ad-41e2-bfe5-6937ff478b3f"] + }, + "sort": ["South Gippsland Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22615:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/south-kingsville-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a multi-sensory, inclusive play and learning space inspired by Indigenous themes. The space is designed to encourage children to engage calmly with nature and each other.", + "We expanded the occasional care room and bathroom. This has made space to offer local children an extra year of funded kindergarten, starting when they are three years old. The new space is shared by the co-located community centre, and has add seven extra occasional care places." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $176,896 was allocated to this project.", + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $282,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at South Kingsville Preschool" + ], + "field_latitude": ["-37.82853882", "-37.82853882"], + "field_latitude_longitude_value": ["-37.82853882,144.8705839"], + "field_latitude_value": ["-37.82853882"], + "field_longitude": ["144.8705839", "144.8705839"], + "field_longitude_value": ["144.8705839"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3015"], + "field_project_code": ["15-556", "D1-15-556"], + "field_project_title": [ + "Building Blocks Improvement Grant \u2013\u00a0Play Space", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q2 2023", "Q2 2023"], + "field_start_date": ["Q4 2021", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["43 Paxton St"], + "field_suburb": ["South Kingsville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22615], + "status": [true], + "title": ["South Kingsville Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9456c8a9-f444-4bc4-96b9-3847e36c4363"] + }, + "sort": ["South Kingsville Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20668:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/south-melbourne-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "South Melbourne Park Primary School is\u00a0a\u00a0co-educational Prep \u2013 6 school. We built\u00a0it for 550 students, and\u00a0it\u00a0opened\u00a0for Term 1, 2019.\u00a0This school, designed by Gray Puksand,\u00a0was a finalist in the\u00a02019 Victorian School Design Awards. Located in Albert Park Reserve, the school is\u00a0surrounded by unique flora and fauna and close to sporting facilities such as the Victorian Institute of Sport, Athletics Victoria and the Melbourne Sports and Aquatic Centre.\u00a0 Check out South Melbourne Park Primary School website for more information.\u00a0 Facilities \u200b\u200b\u200bThis exciting development incorporates the old Albert Park Signal Depot and Drill Hall heritage buildings, alongside modern new facilities including a double-storey learning communities\u00a0building and a competition-grade\u00a0gym.\u00a0 Design and development of the school\u00a0was overseen by a New School Planning Group made up of parents,\u00a0educational experts, project planners and representatives from the community.\u200b The repurposed Drill Hall houses four learning communities, a library, a dedicated art/science/technology space, specialist music areas, a flexible exhibition\u00a0space and a student canteen.\u200b The Mess Hall contains the reception, leadership and administration areas. Existing West and East Houses have\u00a0also be opened up for learning facilities. \u200bSustainable design All facilities were\u00a0designed with an environmentally sustainable approach. New insulation was\u00a0used in the ceilings of the older building whenever possible.\u00a0 We've installed\u00a02500L rainwater tanks to each of the residences and to the Drill Hall. These will be used by the school for toilet flushing and irrigation.\u00a0 New buildings are\u00a0naturally ventilated with openable windows, or use\u00a0outside air fans or mechanical services where this is not possible.\u200b", + "We installed\u00a0acoustic treatments to existing learning spaces to improve sound performance.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This school received $21.6 million from the 2017\u201318 State Budget. This is in addition to the $8.4 million allocated from the 2016\u201317 Budget, and the $1 million given to begin project planning in 2015\u201316.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["New School", "Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the build of South Melbourne Park Primary School" + ], + "field_latitude": ["-37.840877", "-37.85148"], + "field_latitude_longitude_value": ["-37.840877,144.962583"], + "field_latitude_value": ["-37.840877"], + "field_longitude": ["144.962583", "144.97848"], + "field_longitude_value": ["144.962583"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Take a tour with Peter: South Melbourne Park Primary School" + ], + "field_postcode": ["3206"], + "field_project_code": ["01-5562", "D1-01-5562"], + "field_project_title": ["New School", "Inclusive Schools Fund"], + "field_q_complete": ["Q1 2019", "Q4 2021"], + "field_start_date": ["Q2 2017", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Albert Drive Road South"], + "field_suburb": ["Albert Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20668], + "status": [true], + "title": ["South Melbourne Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6e52eef1-27e3-4abe-be37-16c4dacef23c"] + }, + "sort": ["South Melbourne Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20665:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/south-melbourne-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bSouth Melbourne Primary School\u00a0is a new state-of-the-art Prep to Year 6 primary school located on Ferrars Street. The school opened in 2018. It is the first vertical government school in Victoria, and will accommodate more than 525 students. Architects have created space and facilities that the community can share so that the school is fully embedded in neighbourhood life. Having previously\u00a0won \u2018Future Project of the Year\u2019 at the 2016 World Architecture Festival Awards held in Berlin, the school went on to pick\u00a0up the Ministerial Commendation for the Best Example of Inclusive Design at the\u00a02018 Victorian School Design Awards\u200b.\u00a0 \u00a0 \u200b \u200b \u200b Facilities We\u2019ve designed the school to support modern teaching and learning practice for a wide range of group sizes. Key features include indoor and outdoor learning spaces; a vertical piazza; \u2018learning neighbourhood areas\u2019 such as shared kitchens, studios and reading lounges; an external play area on level 5; video and conference rooms; a food hub; indoor and outdoor sports courts; a library/interactive learning centre and gym. The Victorian Government is working with the City of Port Phillip to ensure the school delivers new community facilities. These include a long day care kindergarten, maternal and child health consulting rooms, and sharing multi-purpose rooms and the indoor and outdoor sports courts.", + "We are improving acoustics." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $44 million has been allocated to this project.", + "In 2021, the school was allocated $615,000 for this project. An additional $500,000 was allocated in 2023." + ], + "field_funding_type_name": [ + "New School", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the build of South Melbourne Primary School" + ], + "field_latitude": ["-37.8328599"], + "field_latitude_longitude_value": ["-37.8328599,144.96541"], + "field_latitude_value": ["-37.8328599"], + "field_longitude": ["144.96541"], + "field_longitude_value": ["144.96541"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Inside the new South Melbourne Primary School" + ], + "field_postcode": ["3006"], + "field_project_code": ["01-5559", "D1-01-5559"], + "field_project_title": ["New School", "Upgrade and Modernisation"], + "field_q_complete": ["Q1 2018", "Q1 2024"], + "field_status_name": ["Complete", "Design"], + "field_street_address": ["129 - 161 Ferrars Street"], + "field_suburb": ["Southbank"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20665], + "status": [true], + "title": ["South Melbourne Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7bb2fc3f-fa07-4922-b7b6-3ef1533517bd"] + }, + "sort": ["South Melbourne Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21346:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/south-mornington-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The kindergarten built\u00a0a fully-accessible playground shelter, providing a flexible learning space for three and four year old kindergarten students that includes\u00a0those with sensory difficulties." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $82,005 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at South Mornington Preschool" + ], + "field_latitude": ["-38.23102"], + "field_latitude_longitude_value": ["-38.23102,145.03416"], + "field_latitude_value": ["-38.23102"], + "field_longitude": ["145.03416"], + "field_longitude_value": ["145.03416"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["15-909"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Downward St"], + "field_suburb": ["Mornington South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21346], + "status": [true], + "title": ["South Mornington Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d3d21d81-0e06-45cd-9e97-d0d6f3902323"] + }, + "sort": ["South Mornington Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20917:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/south-oakleigh-secondary-college"], + "changed": ["2023-11-29T12:52:04+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are undertaking a major upgrade and modernisation of South Oakleigh Secondary College, including extending the gymnasium and refurbishing the science block. By upgrading and expanding the college we are providing modern and functional learning environments that are equipped for 21st century learning.\u00a0 This project is part of the Oakleigh Education Plan, which is rejuvenating and reforming education across Oakleigh.\u00a0The plan is raising student engagement and community perceptions, and creating academic drive for all students.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $992,000 in planning funding. In the 2020-21 State Budget, the school received $8.93 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at South Oakleigh Secondary College" + ], + "field_latitude": ["-37.918643951416016"], + "field_latitude_longitude_value": [ + "-37.918643951416016,145.09620666503906" + ], + "field_latitude_value": ["-37.918643951416016"], + "field_longitude": ["145.09620666503906"], + "field_longitude_value": ["145.09620666503906"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "An expanded and improved gymnasium will enable South Oakleigh Secondary students to train and compete, in a competition-grade sporting facility for netball, basketball and a range of other sports. The design will blend the gymnasium\u2019s familiar presence with new wrap-around glass windows and doors to increase natural light and connection to adjacent outdoor areas. The college\u2019s active zone is also extended, located directly outside of the gym for ball games. This extension will enable students to also gather for outdoor group learning and socialising with seating under shade trees.", + "The new learning hub will become the home for South Oakleigh Secondary students to thrive in all areas of science \u2013 equipping them with the facility and resources they need to develop life-long skills. Overlooking the greenery of the college oval, the hub facilities include: laboratory classrooms for students specialising in chemistry and biology flexible general science classrooms that cater for students specialising in physics a preparation laboratory and storage rooms a contemporary laboratory for science theory a tiered amphitheatre for students to present their discoveries science staff work area dedicated science courtyard for outdoor learning. These learning spaces were designed in consultation with the college\u2019s science teachers and students. Our experts heard the college\u2019s aspirations and designed spaces adaptable for all learning methods and allow for innovative teaching and learning to flourish. This technology-rich building will support teachers and industry experts to combine their skills and knowledge to deliver an exciting and contemporary curriculum.", + "Demolition of the previous science building brings new life to South Oakleigh Secondary College in the form of a community courtyard \u2013 the \u2018Agora\u2019. The Agora redefines the open space between campus buildings, creating a place for the community to gather in a diverse outdoor learning environment with seating. With a platform at the centre of the Agora, the college will gather for school events, assemblies, gatherings and performances. Principal Helen Koziaris says \u201cWith STEM being a key focus of our Oakleigh Education Plan, our new facilities will provide our students with the best possible opportunities for success. This is in addition to our improved gym and that community space \u2013 the Agora.\u201d", + "Environmental sustainability is at the forefront of the design. In both buildings, locations have been considered for high and low-level natural ventilation and cooling. This is complemented with all windows receiving direct sunlight being shaded. All materials used in the work have been considered for their sustainable and environmental factors. This includes methods of manufacture, carbon footprint, the inclusion of recycled and reused materials, future recyclability, lifespan, upkeep and maintenance. Landscaping includes planting to be drought-tolerant and to include Australian natives. Integration of landscaping design on the science building\u2019s western frontage will further reduce the summer heat gain in what will be an important passive recreation space." + ], + "field_paragraph_accordion_name": [ + "Extended competition-grade gymnasium", + "Science learning hub", + "The new heart of the campus \u2013 the Agora", + "Environmentally sustainable design" + ], + "field_paragraph_body": ["Downloads"], + "field_paragraph_title": ["Design features"], + "field_postcode": ["3167"], + "field_project_code": ["01-8801"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Bakers Road"], + "field_suburb": ["Oakleigh South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20917], + "status": [true], + "title": ["South Oakleigh Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["afbdfc63-5330-4197-8274-cdd0ac149700"] + }, + "sort": ["South Oakleigh Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20702:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/south-yarra-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported\u00a0various minor works projects at the school through the School Improvement Fund.\u00a0\u200bThe school also\u00a0received a relocatable classroom.\u200b", + "The school's new architecturally-designed modular building is now complete.\u00a0The three-storey building has 12 general purpose classrooms with support spaces and amenities. The rooms' sliding walls allow for flexible learning spaces and an elevator ensures accessibility for all students. The new building has thermal glazing, low energy lights and water efficient appliances, embracing the school's strong focus on sustainability. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget $1.25 million was allocated for a relocatable classroom. In the 2015\u201316 State Budget, $75,000 was allocated to the school through the School Improvement Fund for minor works at the school.", + "In the 2019\u201320 State Budget, the school received $6 million." + ], + "field_funding_type_name": [ + "School Improvement Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at South Yarra Primary School" + ], + "field_latitude": ["-37.8411199"], + "field_latitude_longitude_value": ["-37.8411199,144.9853599"], + "field_latitude_value": ["-37.8411199"], + "field_longitude": ["144.9853599"], + "field_longitude_value": ["144.9853599"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3141"], + "field_project_code": ["01-583", "D1-01-583"], + "field_project_title": [ + "School Improvement Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2016", "Q1 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["601 Punt Rd"], + "field_suburb": ["South Yarra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20702], + "status": [true], + "title": ["South Yarra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9b7edb4d-8d00-4f5c-8694-caf604e042e8"] + }, + "sort": ["South Yarra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20545:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/southern-autistic-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This school has\u00a0benefitted from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million.With this funding we delivered the next stage of the school's master plan. We built a library and canteen. We also upgraded areas for the early education program.", + "We completed\u00a0the first stage of the school\u2019s redevelopment by delivering a two-storey specialist learning and administration building.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6.6 million.", + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the State for planning. This includes funding for Southern Autistic School.In the 2019\u201320 State Budget, the school received $740,000.In 2020, the school received $6.66 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Southern Autistic School." + ], + "field_latitude": ["-37.922245025634766", "-37.92774"], + "field_latitude_longitude_value": [ + "-37.922245025634766,145.06695556640625" + ], + "field_latitude_value": ["-37.922245025634766"], + "field_longitude": ["145.06695556640625", "145.0612"], + "field_longitude_value": ["145.06695556640625"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["D1-01-5253", "01-5253"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q3 2021"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["12 Margaretta Street"], + "field_suburb": ["East Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20545], + "status": [true], + "title": ["Southern Autistic School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6b8b94a8-cd02-4dab-97a8-415fcb8289ee"] + }, + "sort": ["Southern Autistic School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21294:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/southern-cross-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built a new kindergarten at Southern Cross Primary School.\u00a0 Having the kindergarten and school together may help local children make a smooth transition from pre-school and can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Southern Cross Kindergarten" + ], + "field_latitude": ["-37.988902"], + "field_latitude_longitude_value": ["-37.988902,145.264418"], + "field_latitude_value": ["-37.988902"], + "field_longitude": ["145.264418"], + "field_longitude_value": ["145.264418"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3802"], + "field_project_code": ["15-5235"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1-21 David Collins Dr"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21294], + "status": [true], + "title": ["Southern Cross Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a73cad47-2afb-4fba-bdc7-f02bc0817edd"] + }, + "sort": ["Southern Cross Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27781:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/southern-cross-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Southern Cross Primary School" + ], + "field_latitude": ["-37.988234"], + "field_latitude_longitude_value": ["-37.988234,145.264412"], + "field_latitude_value": ["-37.988234"], + "field_longitude": ["145.264412"], + "field_longitude_value": ["145.264412"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten at Southern Cross Primary School." + ], + "field_postcode": ["3802"], + "field_project_code": ["01-5235"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["1-21 David Collins Dr"], + "field_suburb": ["Endeavour Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27781], + "status": [true], + "title": ["Southern Cross Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0c430aa6-2a14-4d00-864c-59deb3890721"] + }, + "sort": ["Southern Cross Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20399:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/southmoor-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe\u00a0delivered a new architect-designed modular building to the school\u00a0to replace Blocks B and C with new classrooms and an art room. The resulting building\u00a0was a\u00a0finalist in\u00a0Best School Project -\u00a0Between $1 million and $5 million\u00a0at the\u00a02018 Victorian School Design Awards.\u00a0", + "We installed a new playground to provide more opportunities for play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2,488,000 was allocated to the school.", + "In the 2020 Minor Capital Works Fund, the school was allocated $311,165." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Southmoor Primary School." + ], + "field_latitude": ["-37.94213", "-37.9423246500071"], + "field_latitude_longitude_value": ["-37.94213,145.05555"], + "field_latitude_value": ["-37.94213"], + "field_longitude": ["145.05555", "145.055718250125"], + "field_longitude_value": ["145.05555"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3189"], + "field_project_code": ["01-4910", "D1-01-4910"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2018", "Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Rica St"], + "field_suburb": ["Moorabbin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20399], + "status": [true], + "title": ["Southmoor Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["459bf184-f128-4090-b8da-4552c3b3f078"] + }, + "sort": ["Southmoor Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22642:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/southwold-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded\u00a0Southwold Street Kindergarten. This included:\u00a0 painting\u00a0the interior and exterior of the building adding\u00a0LED lighting to reduce the kindergarten's\u00a0carbon footprint. replacing\u00a0the fence adding\u00a0an entrance ramp to improve access for children and families of all abilities.", + "We're updating the outdoor spaces. This will make them accessible for children of all abilities. We're adding new play equipment and an accessible bike track. We're also adding a sensory garden and yarning circles." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $82,500 was allocated to this project.", + "In the 2020-21 Building Blocks Inclusion Grant round, $198,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Southwold Street Kindergarten" + ], + "field_latitude": ["-37.74662166", "-37.74662166"], + "field_latitude_longitude_value": ["-37.74662166,144.8104809"], + "field_latitude_value": ["-37.74662166"], + "field_longitude": ["144.8104809", "144.8104809"], + "field_longitude_value": ["144.8104809"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["15-1233", "D1-15-1233"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant" + ], + "field_q_complete": ["Q2 2023", "Q1 2024"], + "field_start_date": ["Q3 2021", "Q3 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["14A Southwold St"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22642], + "status": [true], + "title": ["Southwold Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["12130ce7-72b3-4a78-b9f2-c078016ac254"] + }, + "sort": ["Southwold Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28647:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sparkways-early-learning-showgrounds"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We upgraded the centre\u2019s outdoor play area. The works created a fun natural environment for play and learning that suits children of all ages and abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $143,304.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sparkways Early Learning Showgrounds." + ], + "field_latitude": ["-37.78210007"], + "field_latitude_longitude_value": ["-37.78210007,144.9151207"], + "field_latitude_value": ["-37.78210007"], + "field_longitude": ["144.9151207"], + "field_longitude_value": ["144.9151207"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3031"], + "field_project_code": ["elc-sels"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["320 Epsom Rd"], + "field_suburb": ["Flemington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28647], + "status": [true], + "title": ["Sparkways Early Learning Showgrounds"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["f26c298b-7017-465d-a118-aca5cde8b935"] + }, + "sort": ["Sparkways Early Learning Showgrounds"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28776:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sparkways-early-learning-whittlesea"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T15:05:16+11:00"], + "field_about_project_processed": [ + "We built a playground that is inclusive for children of all abilities. The space gives children the freedom and space to play, develop and achieve their best.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $172,714.50 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sparkways Early Learning Whittlesea." + ], + "field_latitude": ["-37.51510184"], + "field_latitude_longitude_value": ["-37.51510184,145.1226507"], + "field_latitude_value": ["-37.51510184"], + "field_longitude": ["145.1226507"], + "field_longitude_value": ["145.1226507"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3757"], + "field_project_code": ["elc-selw"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["61 Laurel St"], + "field_suburb": ["Whittlesea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28776], + "status": [true], + "title": ["Sparkways Early Learning Whittlesea"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["c87988be-b725-414f-8a25-d0e2490c37ce"] + }, + "sort": ["Sparkways Early Learning Whittlesea"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19979:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/specimen-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a tactile natural area with elements including\u00a0timber, water, plants, textured pebbles and larger boulders, along with a frog pond. The project has also improved access to the kitchen and garden.", + "We upgraded the building exteriors to preserve the school's buildings and improve their appearance.", + "We are relocating and constructing a new staff toilet block to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $307,125.", + "In the 2022\u201323 State Budget the project received $144,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Specimen Hill Primary School." + ], + "field_latitude": ["-36.761874", "-36.7634567090554", "-36.761874"], + "field_latitude_longitude_value": ["-36.761874,144.248335"], + "field_latitude_value": ["-36.761874"], + "field_longitude": ["144.248335", "144.245865550269", "144.248335"], + "field_longitude_value": ["144.248335"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3555"], + "field_project_code": ["01-1316", "D1-01-1316", "D2-01-1316"], + "field_project_title": [ + "Inclusive Schools Fund", + "Minor Capital Works Fund", + "Minor Capital Works Fund \u2013 2022\u201323 State Budget" + ], + "field_q_complete": ["Q1 2020", "Q4 2022", "Q4 2023"], + "field_start_date": ["Q4 2018", "Q4 2020", "Q2 2022"], + "field_status_name": ["Complete", "Complete", "Construction"], + "field_street_address": ["Inglewood St"], + "field_suburb": ["Golden Square"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19979], + "status": [true], + "title": ["Specimen Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bb2f60b9-cc25-4e4c-9a55-7d9c0d722d0c"] + }, + "sort": ["Specimen Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20169:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/spensley-street-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We redeveloped and extended\u00a0the old boiler room into a\u00a0Science, Technology, Engineering and Maths\u00a0learning space, and\u00a0converted\u00a0the first-floor outdoor terrace into an undercover outdoor area. We\u00a0also\u00a0resurfaced the artificial turfed sports area and upgraded\u00a0the power system.", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $550,000 was allocated to the school. The school also received $330,700 through the School Pride and Sports Funding program.", + "In Round 8 of the Inclusive Schools Fund, the project received $200,000. \u00a0" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Spensley Street Primary School" + ], + "field_latitude": ["-37.787079", "-37.786794"], + "field_latitude_longitude_value": ["-37.787079,145.003937"], + "field_latitude_value": ["-37.787079"], + "field_longitude": ["145.003937", "145.003879"], + "field_longitude_value": ["145.003937"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3068"], + "field_project_code": ["01-3146", "d1-3146"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q2 2020", "Q2 2024"], + "field_start_date": ["Q2 2018", "Q4 2022"], + "field_status_name": ["Complete", "Design"], + "field_street_address": ["193 Spensley St"], + "field_suburb": ["Clifton Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20169], + "status": [true], + "title": ["Spensley Street Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["783d60bc-35bf-4e4b-97a4-2427c15e72dc"] + }, + "sort": ["Spensley Street Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20212:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/spotswood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We updated\u00a0and refurbished\u00a0classrooms and facilities to improve standards across the school. The works targeted facilities most in need, ensuring the school has the learning facilities it requires to deliver modern education.", + "We are replacing the existing student and staff toilet block, including new cleaners store." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, the school was allocated $1.407 million.", + "In Round 2 of the Minor Capital Works Fund, the project received $498,127." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Spotswood Primary School." + ], + "field_latitude": ["-37.830502", "-37.830451"], + "field_latitude_longitude_value": ["-37.830502,144.881714"], + "field_latitude_value": ["-37.830502"], + "field_longitude": ["144.881714", "144.881736"], + "field_longitude_value": ["144.881714"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3015"], + "field_project_code": ["01-3659", "D1-01-3659"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q3 2019", "Q1 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["Melbourne Rd"], + "field_suburb": ["Spotswood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20212], + "status": [true], + "title": ["Spotswood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["acafd86c-9af6-4fd6-9982-46bcc5b4b093"] + }, + "sort": ["Spotswood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21201:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/spring-gully-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The City of Greater Bendigo upgraded\u00a0the kindergarten's outdoor play area to create a sustainable and natural play space, including a sensory environment, natural and recycled play items, platforms to get closer to nature, differing play surfaces and topography, and an update to the watering system.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316 $82,000 was allocated to the kindergarten." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Spring Gully Kindergarten" + ], + "field_latitude": ["-36.79631"], + "field_latitude_longitude_value": ["-36.79631,144.28554"], + "field_latitude_value": ["-36.79631"], + "field_longitude": ["144.28554"], + "field_longitude_value": ["144.28554"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["15-1224"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["131 Spring Gully Rd"], + "field_suburb": ["Spring Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21201], + "status": [true], + "title": ["Spring Gully Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["909e74ba-35d4-4dd9-9057-99a8da3cb3b6"] + }, + "sort": ["Spring Gully Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20196:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/spring-gully-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "During Stage 2, we modernised\u00a0the interior of the\u00a0Middle Block, and built a new Physical Education building. \u00a0", + "We built a new Junior Block as well as a new\u00a0Art and Science space while demolishing Block A,\u00a0the existing Junior Block and part of the Admin Block.\u00a0 We also\u00a0modernised the\u00a0remaining part of the Admin Block as well as\u00a0upgraded\u00a0landscaping and access." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $2.17 million was allocated to the school.", + "In the 2016\u201317 State Budget, $217,000 was allocated to the school for planned maintenance. In the 2017\u201318 State Budget, $5.17 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Spring Gully Primary School." + ], + "field_latitude": ["-36.793480"], + "field_latitude_longitude_value": ["-36.793480,144.283951"], + "field_latitude_value": ["-36.793480"], + "field_longitude": ["144.283951"], + "field_longitude_value": ["144.283951"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["D1-01-3505", "01-3505"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q3 2019", "Q3 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["104-110 Spring Gully Rd"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20196], + "status": [true], + "title": ["Spring Gully Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e5f15081-579c-42ec-80f4-01e301a39d4a"] + }, + "sort": ["Spring Gully Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20018:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/springhurst-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We created a new outdoor learning space and sensory play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $180,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Springhurst Primary School" + ], + "field_latitude": ["-36.1847629"], + "field_latitude_longitude_value": ["-36.1847629,146.4683751"], + "field_latitude_value": ["-36.1847629"], + "field_longitude": ["146.4683751"], + "field_longitude_value": ["146.4683751"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3682"], + "field_project_code": ["01-1583"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["121 Anzac Rd"], + "field_suburb": ["Springhurst"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20018], + "status": [true], + "title": ["Springhurst Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f399c42-cc52-4df6-acc4-4a00c1047026"] + }, + "sort": ["Springhurst Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20908:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/springside-west-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This was the second stage of the\u00a0Victorian Government $35.2 million investment\u00a0in the new Springside West Secondary College (formerly called\u00a0Taylors Hill West Secondary College), which opened in\u00a02018. \u200bThis project, designed by Brand Architects, was the winner of \u2018Best Secondary School Project\u2019 in the\u00a02020 Victorian School Design Awards. Initial funding from\u00a0the 2016-17 State Budget allowed us to build the\u00a0first stage of the school for students in\u00a0Years 7 and 10. We used the later\u00a0funding\u00a0to build the remaining\u00a0spaces and facilities for the full enrolment of 1,100 secondary students.\u200b Stage 2 was\u00a0delivered in two portions. We completed the first, two learning community centres,\u00a0in\u00a0December\u00a02018. The second created\u00a0an\u00a0administrative\u00a0and staff resource centre, a performing arts centre and a sports centre, and was completed in April 2019. We designed the school\u00a0to inspire an inclusive and high-achieving culture in its students, equipping them with the skills they will need to thrive in the\u00a021st century.\u200b \u00a0 \u200b \u200b \u200b Facilities \u200b\u200b\u200bThe new school interacts\u00a0and complements the Taylors Hill West Community\u00a0and Sports Reserve, developed south of the school. The buildings and services within the reserve are designed not only for the students' benefit, but also to provide improved educational, social and recreational facilities for the wider local community.", + "The Victorian Government has invested $35.2 million in the new Springside West Secondary College (formerly called Taylors Hill West Secondary College), which opened in Term 1, 2018. Funding provided in the 2016-17 State Budget allowed us to build the first stage of the school for the first students in Years 7 and 10. The first stage of the new school project\u00a0was nominated as a\u00a0finalist at the 2018 Victorian School Design Awards\u200b in the category for 'Best School Project - Above $5 million.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $23.2 million was allocated to this project.", + "In the 2016-17 State Budget, $12 million was allocated to this project." + ], + "field_funding_type_name": ["New School", "New School"], + "field_landing_page_summary": [ + "Learn more about the build of Springside West Secondary College" + ], + "field_latitude": ["-37.71537", "-37.71421"], + "field_latitude_longitude_value": ["-37.71537,144.72993"], + "field_latitude_value": ["-37.71537"], + "field_longitude": ["144.72993", "144.72821"], + "field_longitude_value": ["144.72993"], + "field_mappintype_name": ["New school", "New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3336"], + "field_project_code": ["01-8784", "D1-01-8784"], + "field_project_title": [ + "New School - Stage 2", + "New School - Stage 1" + ], + "field_q_complete": ["Q2 2019", "Q1 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["70 City Vista Court"], + "field_suburb": ["Fraser Rise"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20908], + "status": [true], + "title": ["Springside West Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["90aeb05d-d658-43d4-9b4f-a355b9a84439"] + }, + "sort": ["Springside West Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20503:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/springvale-park-special-developmental-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. These will replace relocatable buildings.", + "We helped the school build a larger bike shed that will create more storage space for modified bikes and other specialised equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $8.886 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $66,120." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Springvale Park Special Developmental School" + ], + "field_latitude": ["-37.94935521", "-37.9500734"], + "field_latitude_longitude_value": ["-37.94935521,145.1543122"], + "field_latitude_value": ["-37.94935521"], + "field_longitude": ["145.1543122", "145.1549973"], + "field_longitude_value": ["145.1543122"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3171"], + "field_project_code": ["D1-01-5164", "01-5164"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2025", "Q3 2022"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["13-15 Sandown Rd"], + "field_suburb": ["Springvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20503], + "status": [true], + "title": ["Springvale Park Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5011cc1d-750f-42db-9893-c5e16d5a3cb9"] + }, + "sort": ["Springvale Park Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20652:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/springvale-rise-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school improve landscaping near the school entrance and around buildings.", + "We upgraded and modernised the\u00a0facilities at Springvale Rise Primary School, delivering a new\u00a0administration building, multi-purpose community space and science, technology, engineering, arts and mathematics (STEAM)\u00a0area.\u00a0", + "We built a new basketball court, and erected shade coverings at the school.\u00a0 The Victorian Government allocated $10 million to the School Improvement Fund in the 2015-16 State Budget to support minor works projects.\u00a0 The School Improvement Fund supports small school projects that contribute to the community's pride in the school, and that help to foster a great relationship between the school and its local community.\u00a0\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $163,125", + "In the 2018-19 State Budget $1.7 million was allocated to the school.", + "In the 2015-16 State Budget, $500,000 was allocated to the school. An additional $93,000 was allocated for maintenance in 2015." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Planned Maintenance Program", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Springvale Rise Primary School" + ], + "field_latitude": ["-37.9401014", "-37.940102"], + "field_latitude_longitude_value": ["-37.9401014,145.1583358"], + "field_latitude_value": ["-37.9401014"], + "field_longitude": ["145.1583358", "145.158340"], + "field_longitude_value": ["145.1583358"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3171"], + "field_project_code": ["D2-01-5537", "D1-01-5537", "01-5537"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "School Improvement Fund, Planned Maintenance Program" + ], + "field_q_complete": ["Q4 2021", "Q3 2020"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["32-52 Wareham Street"], + "field_suburb": ["Springvale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20652], + "status": [true], + "title": ["Springvale Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6b525c72-7edc-439c-8dfd-5f7dc040d6e3"] + }, + "sort": ["Springvale Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28141:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-agathas-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish an existing building and replace it with a new learning building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Agatha's School." + ], + "field_latitude": ["-38.11024309548541"], + "field_latitude_longitude_value": [ + "-38.11024309548541,145.28010851261828" + ], + "field_latitude_value": ["-38.11024309548541"], + "field_longitude": ["145.28010851261828"], + "field_longitude_value": ["145.28010851261828"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-1736"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["Scott St"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28141], + "status": [true], + "title": ["St Agatha's School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["7a034211-21dd-474e-9228-4ba1cce1a289"] + }, + "sort": ["St Agatha's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20336:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-albans-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Building on our completed upgrades, we are modernising the school's main block. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education.", + "We replaced\u00a0older buildings containing asbestos with new architecturally-designed permanent modular buildings. Three\u00a0modular buildings are now complete which include general purpose classrooms, an allied health hub and a deaf facility (for students with hearing disabilities)\u00a0and a flexible space for STEM learning. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.", + "We\u00a0delivered\u00a0minor refurbishments\u00a0and\u00a0upgrades, including creating\u00a0a new toilet block." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $7.916 million.", + "In the 2019\u201320 State Budget, the school received $8.169 million through the Permanent Modular School Buildings Program.", + "In the 2018\u201319 State Budget $150,000 was allocated to the school through the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at St Albans East Primary School" + ], + "field_latitude": ["-37.742855132536413", "-37.74291"], + "field_latitude_longitude_value": [ + "-37.742855132536413,144.811476863598" + ], + "field_latitude_value": ["-37.742855132536413"], + "field_longitude": ["144.811476863598", "144.8109"], + "field_longitude_value": ["144.811476863598"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["D2-01-4741", "D1-01-4741", "01-4741"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q3 2024", "Q4 2020", "Q3 2019"], + "field_start_date": ["Q2 2021", "Q2 2019", "Q2 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["7-17 Station Av"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20336], + "status": [true], + "title": ["St Albans East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d6136b8c-2b66-4d41-b879-4890bbec647e"] + }, + "sort": ["St Albans East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22306:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-albans-heights-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:48+11:00"], + "field_about_project_processed": [ + "We are building an inclusive outdoor learning space, including shade structure, seating and new sensory equipment.", + "We are modernising the school to give students better learning opportunities. We will upgrade the north building and build a new covered playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $174,500", + "In the 2022\u201323 State Budget, this school received $13.447 million." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at St Albans Heights Primary School" + ], + "field_latitude": ["-37.748654", "-37.748654"], + "field_latitude_longitude_value": ["-37.748654,144.810368"], + "field_latitude_value": ["-37.748654"], + "field_longitude": ["144.810368", "144.810368"], + "field_longitude_value": ["144.810368"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["01-4948", "D1-01-4948"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q3 2025"], + "field_start_date": ["Q4 2021", "Q2 2022"], + "field_status_name": ["Construction", "Design"], + "field_street_address": ["Norwich Street"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22306], + "status": [true], + "title": ["St Albans Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["25dc253d-e4fe-4d95-ad47-1fe3ed91c6e5"] + }, + "sort": ["St Albans Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31132:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-albans-meadows-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-10T16:46:53+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new kindergarten at St Albans Meadows Primary School.It will have 2 classrooms as well as outdoor learning areas and play spaces. The centre will provide an extra 66 licensed kindergarten places in the local area.Having the kindergarten and school together may help local children make a smoother transition into primary school. It can also make drop-off time simpler for some families.EnrolmentBrimbank City Council has been announced as the provider for St Albans Meadows Primary School Kindergarten (interim name).\u00a0You can register for kindergarten through their online registration form. \u00a0You can also contact Brimbank City Council\u2019s kindergarten team through email kindergarten@brimbank.vic.gov.au or on 9249 4000." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $371 million committed in the 2019-20 State Budget to support the rollout of Three-Year-Old-Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of St Albans Meadows Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-37.75367985"], + "field_latitude_longitude_value": ["-37.75367985,144.8178587"], + "field_latitude_value": ["-37.75367985"], + "field_longitude": ["144.8178587"], + "field_longitude_value": ["144.8178587"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["01-5118-ELC"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["2A Laurel Street"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31132], + "status": [true], + "title": [ + "St Albans Meadows Primary School Kindergarten (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e4579520-1b86-47e6-a667-b66fa867acec"] + }, + "sort": ["St Albans Meadows Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20362:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-albans-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to the school to replace Block B.\u00a0 \u200b Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.\u00a0 The school is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $1,690,000." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at St Albans North Primary School" + ], + "field_latitude": ["-37.73271"], + "field_latitude_longitude_value": ["-37.73271,144.80987"], + "field_latitude_value": ["-37.73271"], + "field_longitude": ["144.80987"], + "field_longitude_value": ["144.80987"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["01-4811"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["George St"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20362], + "status": [true], + "title": ["St Albans North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c92928f7-bf20-4191-a270-c980dbb46aa3"] + }, + "sort": ["St Albans North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25386:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-albans-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student toilet block to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $499,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at St Albans Primary School" + ], + "field_latitude": ["-37.738748"], + "field_latitude_longitude_value": ["-37.738748,144.795769"], + "field_latitude_value": ["-37.738748"], + "field_longitude": ["144.795769"], + "field_longitude_value": ["144.795769"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["01-2969"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["39 West Esplanade"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25386], + "status": [true], + "title": ["St Albans Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ea5716a5-984d-4783-a1db-f2be4bf18cf0"] + }, + "sort": ["St Albans Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21108:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-ambroses-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the school to update and expand facilities, including two general learning areas, an art room, and administration and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $3.278 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Ambrose's School" + ], + "field_latitude": ["-37.35783"], + "field_latitude_longitude_value": ["-37.35783,144.5297981"], + "field_latitude_value": ["-37.35783"], + "field_longitude": ["144.5297981"], + "field_longitude_value": ["144.5297981"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3442"], + "field_project_code": ["02-289"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["17 Templeton St"], + "field_suburb": ["Woodend"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21108], + "status": [true], + "title": ["St Ambrose's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["89aecb89-2bfa-476a-9ed4-19111396d8ee"] + }, + "sort": ["St Ambrose's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21112:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-andrews-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported\u00a0the school to refurbish\u00a0the library to add administration spaces, and undertake other work\u00a0to provide additional general learning areas and update student amenities. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,650,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Andrew's School" + ], + "field_latitude": ["-37.901411"], + "field_latitude_longitude_value": ["-37.901411,144.651224"], + "field_latitude_value": ["-37.901411"], + "field_longitude": ["144.651224"], + "field_longitude_value": ["144.651224"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["02-338"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["110 Greaves St North"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21112], + "status": [true], + "title": ["St Andrew's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["49c3e200-6af1-40ae-a965-fb188c4377c8"] + }, + "sort": ["St Andrew's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21157:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-andrews-christian-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe supported the school to build\u00a0a new\u00a0science and middle school classroom building.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Capital Funding Program for Non-Government Schools, $2,187,237 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Andrews Christian College" + ], + "field_latitude": ["-37.873966"], + "field_latitude_longitude_value": ["-37.873966,145.244781"], + "field_latitude_value": ["-37.873966"], + "field_longitude": ["145.244781"], + "field_longitude_value": ["145.244781"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3152"], + "field_project_code": ["03-1871"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["130 Tyner Rd"], + "field_suburb": ["Wantirna South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21157], + "status": [true], + "title": ["St Andrews Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3a4b81a2-aeeb-4eef-90e3-100bb53abe22"] + }, + "sort": ["St Andrews Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19975:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-andrews-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor play area at the school.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015-16 State Budget, $30,000 was allocated to the school." + ], + "field_funding_type_name": ["School Improvement Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at St Andrews Primary School" + ], + "field_latitude": ["-37.59738"], + "field_latitude_longitude_value": ["-37.59738,145.27854"], + "field_latitude_value": ["-37.59738"], + "field_longitude": ["145.27854"], + "field_longitude_value": ["145.27854"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3761"], + "field_project_code": ["01-128"], + "field_project_title": ["School Improvement Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["Caledonia Street"], + "field_suburb": ["St Andrews"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19975], + "status": [true], + "title": ["St Andrews Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5022d514-d8f2-4c7f-93e0-13acff7e5fc5"] + }, + "sort": ["St Andrews Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21100:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-annes-college-kialla"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to build specialist and general learning areas.", + "We supported St Anne's College, Kialla to finish building the first\u00a0stage of\u00a0a new Catholic primary and secondary school. This included general learning and associated areas. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million.", + "As part of the 2015-16 to 2018-19 Capital Funding Program for Non-Government Schools, $3,000,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Anne's College, Kialla" + ], + "field_latitude": ["-36.4383432"], + "field_latitude_longitude_value": ["-36.4383432,145.4005803"], + "field_latitude_value": ["-36.4383432"], + "field_longitude": ["145.4005803"], + "field_longitude_value": ["145.4005803"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3631"], + "field_project_code": ["D1-02-2224", "02-2224"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q1 2023", "Q4 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_suburb": ["Kialla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21100], + "status": [true], + "title": ["St Anne's College, Kialla"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1d972f8f-d279-467e-bf87-9bc6f5f7ea2c"] + }, + "sort": ["St Anne's College, Kialla"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21042:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-annes-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish general learning areas, student amenities and associated areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Anne's School." + ], + "field_latitude": ["-38.10652"], + "field_latitude_longitude_value": ["-38.10652,145.14282"], + "field_latitude_value": ["-38.10652"], + "field_longitude": ["145.14282"], + "field_longitude_value": ["145.14282"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3198"], + "field_project_code": ["02-1671"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["86-94 Austin Rd"], + "field_suburb": ["Seaford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21042], + "status": [true], + "title": ["St Anne's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["38b45cb9-3445-4a96-81a2-71dd9f6b8e23"] + }, + "sort": ["St Anne's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21413:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-anthonys-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bSt Anthony's Catholic Primary School built the new early learning facility. The early learning facility is a 2 room, 66 place kinder facility located on St Anthony's property. The kindergarten\u00a0offers both 3 and 4 year old kindergarten.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015\u201316 Children's Facilities Capital Program $650,000 was allocated to the early learning facility." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Anthony's Early Learning Centre" + ], + "field_latitude": ["-37.97188"], + "field_latitude_longitude_value": ["-37.97188,145.17326"], + "field_latitude_value": ["-37.97188"], + "field_longitude": ["145.17326"], + "field_longitude_value": ["145.17326"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["ELC-27"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["90 Buckley St"], + "field_suburb": ["Noble Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21413], + "status": [true], + "title": ["St Anthony's Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9801e205-a00a-46b8-b8af-c28ad45528a6"] + }, + "sort": ["St Anthony's Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21051:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-anthonys-school-melton-south"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct\u00a0four general learning spaces and associated areas.\u00a0 \u200b", + "We supported the school to build a new school hall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $730,000 has been allocated to the school.", + "As part of the 2019\u201320 capital funding program for non-government schools, $4,745,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Anthony's School (Melton South)" + ], + "field_latitude": ["-37.70864", "-37.70865"], + "field_latitude_longitude_value": ["-37.70864,144.56894"], + "field_latitude_value": ["-37.70864"], + "field_longitude": ["144.56894", "144.56909"], + "field_longitude_value": ["144.56894"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["02-1780", "D1-02-1780"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund - 2019-20" + ], + "field_q_complete": ["Q1 2019", "Q1 2021"], + "field_start_date": ["Q4 2017", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Wilson Road"], + "field_suburb": ["Melton South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21051], + "status": [true], + "title": ["St Anthony's School (Melton South)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e60d3a0d-2aca-46e2-9b73-0c122bc89bf6"] + }, + "sort": ["St Anthony's School (Melton South)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36372:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-arnaud-modular-kindergarten"], + "changed": ["2023-11-21T10:41:12+11:00"], + "created": ["2023-11-21T10:38:33+11:00"], + "field_about_project_processed": [ + "We are supporting Northern Grampians Shire Council to identify a site for a modular kindergarten. This will help meet growing demand for kindergarten in St Arnaud.\u00a0The project is being led by Council. We are supporting Council while it considers all possible locations for the modular kindergarten building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding will be allocated from the Building Blocks Capacity Building Grants program when a suitable site is confirmed." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about plans for a kindergarten in St Arnaud" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3478"], + "field_project_code": ["15-StAMK"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kinder" + ], + "field_q_complete": ["Q1 2025"], + "field_status_name": ["Land acquisition"], + "field_suburb": ["St Arnaud"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36372], + "status": [true], + "title": ["St Arnaud Modular Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["493a8a53-efe8-4f98-8047-9038e516b58b"] + }, + "sort": ["St Arnaud Modular Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20857:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-arnaud-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including the main building. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $10 million.\u00a0In 2022 the school was allocated a further $597,793." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at St Arnaud Secondary College" + ], + "field_latitude": ["-36.6103902507471"], + "field_latitude_longitude_value": [ + "-36.6103902507471,143.251888199376" + ], + "field_latitude_value": ["-36.6103902507471"], + "field_longitude": ["143.251888199376"], + "field_longitude_value": ["143.251888199376"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3478"], + "field_project_code": ["01-8335"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Smith St"], + "field_suburb": ["St Arnaud"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20857], + "status": [true], + "title": ["St Arnaud Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e331f9d9-8fc0-4808-8e7b-586f50de7ced"] + }, + "sort": ["St Arnaud Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21127:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-augustines-college-kyabram"], + "changed": ["2023-11-28T14:10:59+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the college to construct and refurbish general learning areas for Years 3\u20134." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Augustine's College (Kyabram)" + ], + "field_latitude": ["-36.31270755"], + "field_latitude_longitude_value": ["-36.31270755,145.044922999996"], + "field_latitude_value": ["-36.31270755"], + "field_longitude": ["145.044922999996"], + "field_longitude_value": ["145.044922999996"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3620"], + "field_project_code": ["02-646"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Church St"], + "field_suburb": ["Kyabram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21127], + "status": [true], + "title": ["St Augustine's College (Kyabram)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8a0fe1a6-c40d-4e69-a5c4-4961c50a52bb"] + }, + "sort": ["St Augustine's College (Kyabram)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28142:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-augustines-school-wodonga"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school with minor refurbishment works to improve accessibility and create addition learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Augustine's School (Wodonga)." + ], + "field_latitude": ["-36.11854677850547"], + "field_latitude_longitude_value": [ + "-36.11854677850547,146.8947845971987" + ], + "field_latitude_value": ["-36.11854677850547"], + "field_longitude": ["146.8947845971987"], + "field_longitude_value": ["146.8947845971987"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["01-0753"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Osburn St"], + "field_suburb": ["Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28142], + "status": [true], + "title": ["St Augustine's School (Wodonga)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["c7b061f4-7f06-49b7-a553-917ba02ff4b8"] + }, + "sort": ["St Augustine's School (Wodonga)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21060:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-bernadettes-catholic-primary-school"], + "changed": ["2023-07-25T11:16:38+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade its senior school learning community.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $1,650,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Bernadette's Catholic Primary School" + ], + "field_latitude": ["-37.8535"], + "field_latitude_longitude_value": ["-37.8535,145.31195"], + "field_latitude_value": ["-37.8535"], + "field_longitude": ["145.31195"], + "field_longitude_value": ["145.31195"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3154"], + "field_project_code": ["02-1857"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1264 Mountain Hwy"], + "field_suburb": ["The Basin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21060], + "status": [true], + "title": ["St Bernadette's Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8d269600-282a-4022-8a7f-0686271dc1fa"] + }, + "sort": ["St Bernadette's Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21004:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-bernards-college"], + "changed": ["2023-07-26T11:28:35+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build a learning centre at this school. The centre has 20 modern general learning areas, a break-out space and an amphitheatre. The school also removed a building that had asbestos and was expensive to maintain." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Bernard's College" + ], + "field_latitude": ["-37.7482179"], + "field_latitude_longitude_value": ["-37.7482179,144.8831423"], + "field_latitude_value": ["-37.7482179"], + "field_longitude": ["144.8831423"], + "field_longitude_value": ["144.8831423"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3040"], + "field_project_code": ["02-1471"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["41 Rosehill Rd"], + "field_suburb": ["Essendon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21004], + "status": [true], + "title": ["St Bernard's College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9a000d8e-a677-44c9-8352-1c742c1fe885"] + }, + "sort": ["St Bernard's College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34776:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-bernards-school-bacchus-marsh"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school build a learning building and associated spaces. We are also helping build a new outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $3 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Bernard's School in Bacchus Marsh" + ], + "field_latitude": ["-37.67252667"], + "field_latitude_longitude_value": ["-37.67252667,144.4358997"], + "field_latitude_value": ["-37.67252667"], + "field_longitude": ["144.4358997"], + "field_longitude_value": ["144.4358997"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["02-414"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Gisborne Road"], + "field_suburb": ["Bacchus Marsh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34776], + "status": [true], + "title": ["St Bernard's School (Bacchus Marsh)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c9d4ea8b-77b6-4a98-ac28-336225478678"] + }, + "sort": ["St Bernard's School (Bacchus Marsh)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21017:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-brendans-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported St Brendan's School to\u00a0refurbish\u00a0and extend four general learning areas to create six general learning areas and associated spaces.\u200b\u00a0 \u200b", + "We supported St Brendan's School to upgrade general learning, resource and staffing areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$400,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program", + "Under the 2019-20 capital funding program for non-government schools, $1,000,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Brendan's School" + ], + "field_latitude": ["-37.8703999", "-37.8704"], + "field_latitude_longitude_value": ["-37.8703999,148.01905"], + "field_latitude_value": ["-37.8703999"], + "field_longitude": ["148.01905", "148.01905"], + "field_longitude_value": ["148.01905"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3909"], + "field_project_code": ["02-1581", "D1-02-1581"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund - 2019-20" + ], + "field_q_complete": ["Q1 2019", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Golf Links Road"], + "field_suburb": ["LAKES ENTRANCE"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21017], + "status": [true], + "title": ["St Brendan's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4c8a46ee-2adb-41b8-ada9-281ac692a7cb"] + }, + "sort": ["St Brendan's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34779:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-brigids-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school refurbish 2 general learning blocks with associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $3 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Brigid's College in Horsham" + ], + "field_latitude": ["-36.717313"], + "field_latitude_longitude_value": ["-36.717313,142.207946"], + "field_latitude_value": ["-36.717313"], + "field_longitude": ["142.207946"], + "field_longitude_value": ["142.207946"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3400"], + "field_project_code": ["02-1122"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["97 Robinson Street"], + "field_suburb": ["Horsham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34779], + "status": [true], + "title": ["St Brigid's College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f6b49f4c-ff8e-4ad8-9fed-c243d5f6167a"] + }, + "sort": ["St Brigid's College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21130:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-brigids-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build\u00a0a\u00a0new\u00a0administration area, general learning spaces\u00a0and associated areas. The project also included refurbishing classrooms.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,750.000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Brigid's School" + ], + "field_latitude": ["-38.008751"], + "field_latitude_longitude_value": ["-38.008751,145.092194"], + "field_latitude_value": ["-38.008751"], + "field_longitude": ["145.092194"], + "field_longitude_value": ["145.092194"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["02-923"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["129 Albert St"], + "field_suburb": ["Mordialloc"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21130], + "status": [true], + "title": ["St Brigid's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9875afb2-7fbc-4604-bdd8-8f743a0b99ad"] + }, + "sort": ["St Brigid's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21113:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-brigids-school-gisborne"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the school to construct two learning space additions and refurbish the staff resource area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $800,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Brigid's School (Gisborne)" + ], + "field_latitude": ["-37.490491"], + "field_latitude_longitude_value": ["-37.490491,144.589755"], + "field_latitude_value": ["-37.490491"], + "field_longitude": ["144.589755"], + "field_longitude_value": ["144.589755"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3437"], + "field_project_code": ["02-353"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["68 Aitken St"], + "field_suburb": ["Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21113], + "status": [true], + "title": ["St Brigid's School (Gisborne)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cdacf9b8-81ed-44ae-a32c-584ee1e8824e"] + }, + "sort": ["St Brigid's School (Gisborne)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21083:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-brigids-school-officer"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school construct a two-storey building with five general learning areas and three specialist learning spaces. The works will also include refurbishing the administration building and associated spaces, and relocating the library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Brigid's School (Officer)" + ], + "field_latitude": ["-38.059158325195313"], + "field_latitude_longitude_value": [ + "-38.059158325195313,145.40946960449219" + ], + "field_latitude_value": ["-38.059158325195313"], + "field_longitude": ["145.40946960449219"], + "field_longitude_value": ["145.40946960449219"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["02-2067"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["25 Bayview Rd"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21083], + "status": [true], + "title": ["St Brigid's School (Officer)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["02514292-9403-4681-b127-ac9ead775c9c"] + }, + "sort": ["St Brigid's School (Officer)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21136:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/st-catherine-siena-catholic-primary-school-armstrong-creek" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the expansion of the school with a second stage of construction." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $4,950,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Catherine of Siena Catholic Primary School (Armstrong Creek)." + ], + "field_latitude": ["-38.24069"], + "field_latitude_longitude_value": ["-38.24069,144.36938"], + "field_latitude_value": ["-38.24069"], + "field_longitude": ["144.36938"], + "field_longitude_value": ["144.36938"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3217"], + "field_project_code": ["02-SCSPS"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["125 Warralily Blvd"], + "field_suburb": ["Armstrong Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21136], + "status": [true], + "title": [ + "St Catherine of Siena Catholic Primary School (Armstrong Creek)" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f379b70a-3567-4a1d-b1f0-2efa05125c7f"] + }, + "sort": [ + "St Catherine of Siena Catholic Primary School (Armstrong Creek)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21015:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-catherines-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0refurbish\u00a0two general learning areas. \u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$50,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Catherine's School" + ], + "field_latitude": ["-37.93803"], + "field_latitude_longitude_value": ["-37.93803,145.05247"], + "field_latitude_value": ["-37.93803"], + "field_longitude": ["145.05247"], + "field_longitude_value": ["145.05247"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3189"], + "field_project_code": ["02-1570"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["14-28 Fletcher St"], + "field_suburb": ["Moorabbin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21015], + "status": [true], + "title": ["St Catherine's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["69f72d5e-cd8c-4ba1-9951-6b8d841f4aef"] + }, + "sort": ["St Catherine's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21089:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-clares-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build\u00a0eight general learning spaces and associated areas.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,500,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Clare's Primary School" + ], + "field_latitude": ["-38.06169"], + "field_latitude_longitude_value": ["-38.06169,145.4345"], + "field_latitude_value": ["-38.06169"], + "field_longitude": ["145.4345"], + "field_longitude_value": ["145.4345"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["02-2095"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2018"], + "field_start_date": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["95 Majestic Dr"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21089], + "status": [true], + "title": ["St Clare's Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["98bb05fd-7f4a-4d77-a0b0-1a8949899d11"] + }, + "sort": ["St Clare's Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21048:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-clares-school-thomastown-west"], + "changed": ["2023-11-24T15:03:52+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school refurbish its Harmony Building. These works upgraded:the receptionadministration areastaff toiletsa learning space and associated areasthe building facade." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Clare's School (Thomastown West)" + ], + "field_latitude": ["-37.683223724365234"], + "field_latitude_longitude_value": [ + "-37.683223724365234,145.01148986816406" + ], + "field_latitude_value": ["-37.683223724365234"], + "field_longitude": ["145.01148986816406"], + "field_longitude_value": ["145.01148986816406"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3074"], + "field_project_code": ["02-1752"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Harbard St"], + "field_suburb": ["Thomastown West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21048], + "status": [true], + "title": ["St Clare's School (Thomastown West)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b03009c7-b702-4366-a72a-cd0d97c65deb"] + }, + "sort": ["St Clare's School (Thomastown West)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21128:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-columbas-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school construct a two-storey science, technology, engineering, arts and mathematics (STEAM) building. Students and teachers will gain 2 food technology classrooms, 5 science labs, 6 art studios, 2 maker spaces, staff offices, and a canteen. Works will also include refurbishing outdoor sports courts and a car park." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Columba's College" + ], + "field_latitude": ["-37.7576837"], + "field_latitude_longitude_value": ["-37.7576837,144.9141467"], + "field_latitude_value": ["-37.7576837"], + "field_longitude": ["144.9141467"], + "field_longitude_value": ["144.9141467"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3040"], + "field_project_code": ["02-707"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["2 Leslie Rd"], + "field_suburb": ["Essendon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21128], + "status": [true], + "title": ["St Columba's College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1b6bb466-f2bf-487d-a203-339d93883eac"] + }, + "sort": ["St Columba's College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21038:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-damians-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We're supporting the refurbishment of the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $1,550,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Damian's School" + ], + "field_latitude": ["-37.69785"], + "field_latitude_longitude_value": ["-37.69785,145.05788"], + "field_latitude_value": ["-37.69785"], + "field_longitude": ["145.05788"], + "field_longitude_value": ["145.05788"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3083"], + "field_project_code": ["02-1656"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Design"], + "field_street_address": ["5 Settlement Rd"], + "field_suburb": ["Bundoora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21038], + "status": [true], + "title": ["St Damian's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5aeae55a-8e47-4b75-bb35-228810f1bad8"] + }, + "sort": ["St Damian's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21023:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-dominics-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0rebuild\u00a0two general learning spaces and associated areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $300,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Dominic's School" + ], + "field_latitude": ["-37.68488"], + "field_latitude_longitude_value": ["-37.68488,144.92338"], + "field_latitude_value": ["-37.68488"], + "field_longitude": ["144.92338"], + "field_longitude_value": ["144.92338"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3047"], + "field_project_code": ["02-1593"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["408 Camp Rd"], + "field_suburb": ["Broadmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21023], + "status": [true], + "title": ["St Dominic's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ec620089-1f68-44a0-a71e-8bf5b5e7ba5a"] + }, + "sort": ["St Dominic's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20995:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-fidelis-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to redevelop their junior school learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $1,955,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Fidelis' School." + ], + "field_latitude": ["-37.74986"], + "field_latitude_longitude_value": ["-37.74986,144.95153"], + "field_latitude_value": ["-37.74986"], + "field_longitude": ["144.95153"], + "field_longitude_value": ["144.95153"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["02-1265"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["52 Saunders St"], + "field_suburb": ["Moreland"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20995], + "status": [true], + "title": ["St Fidelis' School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["04eb22a1-8ac8-4b40-a1b7-06a6c0a78665"] + }, + "sort": ["St Fidelis' School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21133:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the first stage of construction of a new campus in Cobblebank." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis Catholic College" + ], + "field_latitude": ["-37.678020"], + "field_latitude_longitude_value": ["-37.678020,144.550630"], + "field_latitude_value": ["-37.678020"], + "field_longitude": ["144.550630"], + "field_longitude_value": ["144.550630"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["02-CBB"], + "field_project_title": [ + "Non-Government Schools Capital Fund - New Campus" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["109-141 Bulman's Road"], + "field_suburb": ["Melton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21133], + "status": [true], + "title": ["St Francis Catholic College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1b42a8a4-84fe-4028-9b0b-59c27f80f047"] + }, + "sort": ["St Francis Catholic College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21049:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-xavier-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported the school to\u00a0build\u00a018 general learning areas and associated areas at the Beaconsfield\u00a0campus.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2 million has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis Xavier College" + ], + "field_latitude": ["-38.0513"], + "field_latitude_longitude_value": ["-38.0513,145.37149"], + "field_latitude_value": ["-38.0513"], + "field_longitude": ["145.37149"], + "field_longitude_value": ["145.37149"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3807"], + "field_project_code": ["02-1766"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["4 Beaconsfield Av"], + "field_suburb": ["Beaconsfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21049], + "status": [true], + "title": ["St Francis Xavier College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["75f4929d-d90f-45c6-810b-6882114fc2dc"] + }, + "sort": ["St Francis Xavier College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28143:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-xavier-college-berwick"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish relocatable buildings and replace it with a new learning centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $3 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis Xavier College (Berwick)." + ], + "field_latitude": ["-38.07036307571479"], + "field_latitude_longitude_value": [ + "-38.07036307571479,145.3384044530982" + ], + "field_latitude_value": ["-38.07036307571479"], + "field_longitude": ["145.3384044530982"], + "field_longitude_value": ["145.3384044530982"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["01-1766"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["75 Ridgemont Dr"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28143], + "status": [true], + "title": ["St Francis Xavier College (Berwick)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["754f8e23-399b-4f8a-bc22-9af30a2806c2"] + }, + "sort": ["St Francis Xavier College (Berwick)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21132:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-xavier-school-ballarat-east"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct the next stage\u00a0of their master plan." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 was allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis Xavier School (Ballarat East)" + ], + "field_latitude": ["-37.56016"], + "field_latitude_longitude_value": ["-37.56016,143.90057"], + "field_latitude_value": ["-37.56016"], + "field_longitude": ["143.90057"], + "field_longitude_value": ["143.90057"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["02-981"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Fortune St"], + "field_suburb": ["Ballarat East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21132], + "status": [true], + "title": ["St Francis Xavier School (Ballarat East)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a5ddae45-d343-4e34-a9cc-080fd1407e2a"] + }, + "sort": ["St Francis Xavier School (Ballarat East)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34777:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-xavier-school-corio"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school build an administration building and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $2 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis Xavier School in Corio" + ], + "field_latitude": ["-38.07200135"], + "field_latitude_longitude_value": ["-38.07200135,144.3582379"], + "field_latitude_value": ["-38.07200135"], + "field_longitude": ["144.3582379"], + "field_longitude_value": ["144.3582379"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3214"], + "field_project_code": ["02-1741"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["143 Bacchus Marsh Road"], + "field_suburb": ["Corio"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34777], + "status": [true], + "title": ["St Francis Xavier School (Corio)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["166bd3da-4a4b-4ed5-969f-4ebcb338156b"] + }, + "sort": ["St Francis Xavier School (Corio)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20999:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-xaviers-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe supported the school to\u00a0refurbish the main building, including upgrades to 7 general purpose learning spaces and\u200b associated amenities.\u200b\u200b\u200b\u200b\u200b\u200b\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $850,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis Xavier's School" + ], + "field_latitude": ["-37.71594"], + "field_latitude_longitude_value": ["-37.71594,145.12683"], + "field_latitude_value": ["-37.71594"], + "field_longitude": ["145.12683"], + "field_longitude_value": ["145.12683"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3094"], + "field_project_code": ["02-1343"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["90 Mayona Rd"], + "field_suburb": ["Montmorency"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20999], + "status": [true], + "title": ["St Francis Xavier's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["52694e61-c3d8-4432-bb73-5a74b8f20f97"] + }, + "sort": ["St Francis Xavier's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21026:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-de-sales-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the school in the construction of four general learning areas, a specialist learning area, and student amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis de Sales School" + ], + "field_latitude": ["-37.7195909"], + "field_latitude_longitude_value": ["-37.7195909,144.9208362"], + "field_latitude_value": ["-37.7195909"], + "field_longitude": ["144.9208362"], + "field_longitude_value": ["144.9208362"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["02-1616"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["626 Pascoe Vale Rd"], + "field_suburb": ["Oak Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21026], + "status": [true], + "title": ["St Francis de Sales School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["87ef697d-26bf-4921-bfef-4d50f20acbe1"] + }, + "sort": ["St Francis de Sales School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21084:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-assisi-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0build\u00a04 general learning spaces and associated areas.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $750,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis of Assisi Catholic Primary School" + ], + "field_latitude": ["-37.84764"], + "field_latitude_longitude_value": ["-37.84764,144.70028"], + "field_latitude_value": ["-37.84764"], + "field_longitude": ["144.70028"], + "field_longitude_value": ["144.70028"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["02-2078"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["45 Fairview Pde"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21084], + "status": [true], + "title": ["St Francis of Assisi Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b9eb6305-481b-4448-aa59-689dbb63004e"] + }, + "sort": ["St Francis of Assisi Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21077:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-assisi-primary-school-wodonga"], + "changed": ["2023-10-26T12:04:51+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school build 4 general learning areas, a specialist learning area and student amenities. This 3-part project upgraded:parkingthe school entrancethe administration building and meeting spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis of Assisi Primary School Wodonga" + ], + "field_latitude": ["-36.173756"], + "field_latitude_longitude_value": ["-36.173756,146.938194"], + "field_latitude_value": ["-36.173756"], + "field_longitude": ["146.938194"], + "field_longitude_value": ["146.938194"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3691"], + "field_project_code": ["02-2029"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["214 Baranduda Blvs"], + "field_suburb": ["Baranduda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21077], + "status": [true], + "title": ["St Francis of Assisi Primary School Wodonga"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2608b39a-e420-4709-bd48-a82b8b2ff280"] + }, + "sort": ["St Francis of Assisi Primary School Wodonga"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21069:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-fields-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to remove relocatable classrooms and build a learning centre. The centre includes classrooms, learning spaces and office spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $4.98 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis of the Fields School" + ], + "field_latitude": ["-36.8077061385264"], + "field_latitude_longitude_value": [ + "-36.8077061385264,144.357895507481" + ], + "field_latitude_value": ["-36.8077061385264"], + "field_longitude": ["144.357895507481"], + "field_longitude_value": ["144.357895507481"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["02-1940"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Blucher St"], + "field_suburb": ["Strathfieldsaye"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21069], + "status": [true], + "title": ["St Francis of the Fields School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["008e7954-0f85-4fc9-bedc-4ec878398950"] + }, + "sort": ["St Francis of the Fields School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21056:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-francis-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish the administration, learning areas and senior classrooms. The project includes building an outdoor learning space, kitchen, and an area for the whole school to gather." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1.206 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Francis' School." + ], + "field_latitude": ["-36.0563497"], + "field_latitude_longitude_value": ["-36.0563497,145.2082795"], + "field_latitude_value": ["-36.0563497"], + "field_longitude": ["145.2082795"], + "field_longitude_value": ["145.2082795"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3638"], + "field_project_code": ["02-1823"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Chapel St"], + "field_suburb": ["Nathalia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21056], + "status": [true], + "title": ["St Francis' School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c7ee19a3-8b9a-403c-8fec-67e7100306c3"] + }, + "sort": ["St Francis' School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36770:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-georges-road-primary-school-shepparton"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an indoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,902" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at St Georges Road Primary School Shepparton" + ], + "field_latitude": ["-36.390092"], + "field_latitude_longitude_value": ["-36.390092,145.405737"], + "field_latitude_value": ["-36.390092"], + "field_longitude": ["145.405737"], + "field_longitude_value": ["145.405737"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["01-4666"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["120 St Georges Road"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36770], + "status": [true], + "title": ["St Georges Road Primary School Shepparton"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["25a8bfa8-31be-4fa3-a67b-484778a380d7"] + }, + "sort": ["St Georges Road Primary School Shepparton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20894:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-helena-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading learning and staff areas, amenities and sporting facilities. The school will also be receiving a new, architect-designed, permanent modular building, while we replace three existing relocatable buildings with new ones.", + "We built a state-of-the-art, competition-grade gym.", + "\u200b\u200b\u200b\u200b\u200b\u200bWe built\u00a0new athletics tracks,\u00a0tennis and netball facilities, and\u00a0FIFA-grade soccer facilities. This included\u00a0upgrading\u00a0community-use outdoor toilets and change rooms for the shared use with Glen Katherine Primary School.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget $1.347 million was allocated to the school. In 2020, the school received $12.12 million.", + "In the 2018\u201319 State Budget $3.82 million was allocated to the school.", + "In the 2015\u201316 State Budget, $2.5 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at St Helena Secondary College" + ], + "field_latitude": ["-37.687030", "-37.687050"], + "field_latitude_longitude_value": ["-37.687030,145.138900"], + "field_latitude_value": ["-37.687030"], + "field_longitude": ["145.138900", "145.138885"], + "field_longitude_value": ["145.138900"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3095"], + "field_project_code": ["D2-01-8730", "D1-01-8730", "01-8730"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2022", "Q4 2020", "Q1 2017"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Wallowa Rd"], + "field_suburb": ["Eltham North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20894], + "status": [true], + "title": ["St Helena Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e8325a90-0978-44c0-be4c-5ad42c13cca8"] + }, + "sort": ["St Helena Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28775:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-hellier-street-child-day-care"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T15:05:16+11:00"], + "field_about_project_processed": [ + "We are improving the outdoor play space and replacing aging equipment in poor condition. We are redesigning the layout to make it easier for staff to educate and supervise the children. Our improvements will create a better area for all children to safely play, learn and develop." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $198,901.13 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Hellier Street Child Day Care." + ], + "field_latitude": ["-37.74914823"], + "field_latitude_longitude_value": ["-37.74914823,145.0514408"], + "field_latitude_value": ["-37.74914823"], + "field_longitude": ["145.0514408"], + "field_longitude_value": ["145.0514408"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3081"], + "field_project_code": ["15-3590"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["95 St Hellier St"], + "field_suburb": ["Heidelberg Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28775], + "status": [true], + "title": ["St Hellier Street Child Day Care"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["126aeae1-19ed-4941-bda9-fe9a1c8dceb5"] + }, + "sort": ["St Hellier Street Child Day Care"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28144:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-itas-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish relocatable buildings and replace it with a new learning centre. We are also helping refurbish the library to create art and music spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Ita's School." + ], + "field_latitude": ["-38.1324909841184"], + "field_latitude_longitude_value": [ + "-38.1324909841184,145.8616697856313" + ], + "field_latitude_value": ["-38.1324909841184"], + "field_longitude": ["145.8616697856313"], + "field_longitude_value": ["145.8616697856313"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3818"], + "field_project_code": ["01-1929"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["50 Victoria St"], + "field_suburb": ["Drouin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28144], + "status": [true], + "title": ["St Ita's School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["81c64823-0eef-49cf-aaaa-22d67433848b"] + }, + "sort": ["St Ita's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21064:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-joachims-school"], + "changed": ["2023-11-20T15:25:54+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade its arts and language spaces, including a collaborative learning area, breakout spaces and an outdoor learning area. Works also included expanding a building to improve administration facilities and toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joachim's School" + ], + "field_latitude": ["-38.097084045410156"], + "field_latitude_longitude_value": [ + "-38.097084045410156,145.17597961425781" + ], + "field_latitude_value": ["-38.097084045410156"], + "field_longitude": ["145.17597961425781"], + "field_longitude_value": ["145.17597961425781"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3201"], + "field_project_code": ["02-1909"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Broderick Rd"], + "field_suburb": ["Carrum Downs"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21064], + "status": [true], + "title": ["St Joachim's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["63683db6-2d4f-4edc-a0ed-a6162b138483"] + }, + "sort": ["St Joachim's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21088:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-john-apostle-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported\u00a0the school to construct stage 3 of a new school comprising general learning areas, carpark, and stage 1 of the multi-purpose hall\u200b. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,500,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St John the Apostle Catholic Primary School" + ], + "field_latitude": ["-37.8334"], + "field_latitude_longitude_value": ["-37.8334,144.66584"], + "field_latitude_value": ["-37.8334"], + "field_longitude": ["144.66584"], + "field_longitude_value": ["144.66584"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["02-2093"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["54-76 Kingbird Av"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21088], + "status": [true], + "title": ["St John the Apostle Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e0558417-2fe2-490d-aca9-da7a57501114"] + }, + "sort": ["St John the Apostle Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34778:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-john-baptist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school build a general learning building and associated spaces. We are also helping build an outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $3 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St John the Baptist School in Ferntree Gully" + ], + "field_latitude": ["-37.887382"], + "field_latitude_longitude_value": ["-37.887382,145.295174"], + "field_latitude_value": ["-37.887382"], + "field_longitude": ["145.295174"], + "field_longitude_value": ["145.295174"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["02-1406"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["17 Forest Road"], + "field_suburb": ["Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34778], + "status": [true], + "title": ["St John the Baptist School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["63262935-6df8-4e85-b260-32a4fadddc42"] + }, + "sort": ["St John the Baptist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21274:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-johns-lutheran-kindergarten-geelong"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The kindergarten upgraded its outdoor play area. This included: installing ramps to make the outdoor play area inclusive for all enlarging their natural play areas through extending fencing creating an undercover entrance area, providing an indoor meeting area and an area to access further child support replacing existing flooring and water marked ceiling panels refurbishing interior painting to create an inclusive and calm learning environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $110,589 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St John's Lutheran Kindergarten, Geelong" + ], + "field_latitude": ["-38.14745"], + "field_latitude_longitude_value": ["-38.14745,144.34768"], + "field_latitude_value": ["-38.14745"], + "field_longitude": ["144.34768"], + "field_longitude_value": ["144.34768"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["15-4388"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["33 Aberdeen St"], + "field_suburb": ["Newtown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21274], + "status": [true], + "title": ["St John's Lutheran Kindergarten, Geelong"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cc566bfd-cccc-406e-9914-5002466ddff8"] + }, + "sort": ["St John's Lutheran Kindergarten, Geelong"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21020:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-johns-regional-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build a new junior STEM (Science, Technology, Engineering and Maths) facility." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $3,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St John's Regional College." + ], + "field_latitude": ["-37.98892"], + "field_latitude_longitude_value": ["-37.98892,145.22828"], + "field_latitude_value": ["-37.98892"], + "field_longitude": ["145.22828"], + "field_longitude_value": ["145.22828"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["02-1588"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["5-11 Caroline St"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21020], + "status": [true], + "title": ["St John's Regional College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c73c55bb-f3b6-43fc-85c7-3f6df089d950"] + }, + "sort": ["St John's Regional College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20992:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-johns-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct\u00a02 general learning areas and\u00a0amenities. The project also included refurbishing\u00a0and extending\u00a0the administration area.\u00a0\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$950,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St John's School" + ], + "field_latitude": ["-36.753052"], + "field_latitude_longitude_value": ["-36.753052,145.570221"], + "field_latitude_value": ["-36.753052"], + "field_longitude": ["145.570221"], + "field_longitude_value": ["145.570221"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3666"], + "field_project_code": ["02-1136"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["37 Anderson St"], + "field_suburb": ["Euroa"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20992], + "status": [true], + "title": ["St John's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c4754be3-9c9d-4d54-a981-ffa51df55c72"] + }, + "sort": ["St John's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21125:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephs-college-echuca"], + "changed": ["2023-07-26T12:09:42+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school to construct a Years 7\u20139 facility.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joseph's College (Echuca)" + ], + "field_latitude": ["-36.1177739"], + "field_latitude_longitude_value": ["-36.1177739,144.7437917"], + "field_latitude_value": ["-36.1177739"], + "field_longitude": ["144.7437917"], + "field_longitude_value": ["144.7437917"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3564"], + "field_project_code": ["02-595"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["21 Dickson St"], + "field_suburb": ["Echuca"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21125], + "status": [true], + "title": ["St Joseph's College (Echuca)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ab28369b-9425-485a-968a-841a54bae923"] + }, + "sort": ["St Joseph's College (Echuca)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21030:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephs-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0build\u00a0a general learning area and associated flexible learning spaces.\u00a0 \u200b", + "We are helping the school refurbish and extend general learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,200,000 has been allocated to the school.", + "Under the 2023\u201324 capital funding program for non-government schools, the school received $2.1 million" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joseph's Primary School" + ], + "field_latitude": ["-37.86274", "-37.86274"], + "field_latitude_longitude_value": ["-37.86274,145.27474"], + "field_latitude_value": ["-37.86274"], + "field_longitude": ["145.27474", "145.27474"], + "field_longitude_value": ["145.27474"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3155"], + "field_project_code": ["02-1641", "D1-02-1641"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["Q1 2018", "TBC"], + "field_start_date": ["Q3 2017", "Q2 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["212 Boronia Rd"], + "field_suburb": ["Boronia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21030], + "status": [true], + "title": ["St Joseph's Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f4a85384-580d-4604-a804-d47e6243e58a"] + }, + "sort": ["St Joseph's Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28145:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephs-school-beechworth"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school with minor refurbishment works to general learning areas and the library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1.46 million" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joseph's School (Beechworth)." + ], + "field_latitude": ["-36.35993233975143"], + "field_latitude_longitude_value": [ + "-36.35993233975143,146.68361203953748" + ], + "field_latitude_value": ["-36.35993233975143"], + "field_longitude": ["146.68361203953748"], + "field_longitude_value": ["146.68361203953748"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3747"], + "field_project_code": ["01-0672"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["6 Priory Lane"], + "field_suburb": ["Beechworth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28145], + "status": [true], + "title": ["St Joseph's School (Beechworth)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["cda24840-4228-4062-a4b1-118183a3a502"] + }, + "sort": ["St Joseph's School (Beechworth)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21080:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephs-school-benalla"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish and improve learning areas.\u00a0", + "\u200b\u200b\u200bWe supported the school\u00a0to\u00a0build\u00a0four general learning\u00a0and associated areas. Demountable buildings were also demolished as\u00a0part of this project. \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million.", + "$1,200,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joseph's School Benalla" + ], + "field_latitude": ["-36.5537171", "-36.554260"], + "field_latitude_longitude_value": ["-36.5537171,145.973982"], + "field_latitude_value": ["-36.5537171"], + "field_longitude": ["145.973982", "145.974365"], + "field_longitude_value": ["145.973982"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3672"], + "field_project_code": ["D1-02-205", "02-205"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q2 2023", "Q2 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["17 Wedge St"], + "field_suburb": ["Benalla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21080], + "status": [true], + "title": ["St Joseph's School (Benalla)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b1f4a1c5-9999-4ee3-9701-2341eb714683"] + }, + "sort": ["St Joseph's School (Benalla)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20994:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephs-school-chelsea"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe're supporting the school to refurbish an existing multi-purpose building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joseph's School (Chelsea)" + ], + "field_latitude": ["-38.055809"], + "field_latitude_longitude_value": ["-38.055809,145.118393"], + "field_latitude_value": ["-38.055809"], + "field_longitude": ["145.118393"], + "field_longitude_value": ["145.118393"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3196"], + "field_project_code": ["02-1217"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["362 Station St"], + "field_suburb": ["Chelsea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20994], + "status": [true], + "title": ["St Joseph's School (Chelsea)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["999f539c-b45e-4e78-969a-eddeb0532edd"] + }, + "sort": ["St Joseph's School (Chelsea)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21114:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephs-school-chiltern"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish learning areas and remove asbestos. This project also included removing stairs to support students with accessibility requirements." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1.44 million" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joseph's School (Chiltern)" + ], + "field_latitude": ["-36.146145"], + "field_latitude_longitude_value": ["-36.146145,146.6073571"], + "field_latitude_value": ["-36.146145"], + "field_longitude": ["146.6073571"], + "field_longitude_value": ["146.6073571"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3683"], + "field_project_code": ["02-367"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["142 North Rd"], + "field_suburb": ["Chiltern"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21114], + "status": [true], + "title": ["St Joseph's School (Chiltern)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["45a0fc3b-11cc-4dd6-a616-bc892bcdca4a"] + }, + "sort": ["St Joseph's School (Chiltern)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21126:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephs-school-rochester"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade their administration building, including student breakout spaces, a sickbay and staff room. The school also upgraded learning spaces to support students with disabilities and accessibility requirements." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1.005 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Joseph's School (Rochester)." + ], + "field_latitude": ["-36.365556427948277"], + "field_latitude_longitude_value": [ + "-36.365556427948277,144.70034899975175" + ], + "field_latitude_value": ["-36.365556427948277"], + "field_longitude": ["144.70034899975175"], + "field_longitude_value": ["144.70034899975175"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3561"], + "field_project_code": ["02-603"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Campaspe St"], + "field_suburb": ["Rochester"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21126], + "status": [true], + "title": ["St Joseph's School (Rochester)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["01aa54ce-5a41-4360-bfe1-8e95037901f3"] + }, + "sort": ["St Joseph's School (Rochester)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21137:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-josephine-bakhita-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school build the first stage of a new campus. This includes constructing an administration building and a teaching and learning centre comprising 10 general learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Josephine Bakhita Catholic Primary School" + ], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3987"], + "field_project_code": ["02-SJBC"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Wild Goose Way"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21137], + "status": [true], + "title": ["St Josephine Bakhita Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["194a3828-5700-412f-a0d7-ebdf48d787ce"] + }, + "sort": ["St Josephine Bakhita Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34784:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-jude-apostle-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school build a learning building with a multipurpose hall, general learning areas, a wellbeing and arts centre and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $2 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Jude the Apostle School in Scoresby" + ], + "field_latitude": ["-37.889844"], + "field_latitude_longitude_value": ["-37.889844,145.225957"], + "field_latitude_value": ["-37.889844"], + "field_longitude": ["145.225957"], + "field_longitude_value": ["145.225957"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3179"], + "field_project_code": ["02-1697"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["53 George Street"], + "field_suburb": ["Scoresby"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34784], + "status": [true], + "title": ["St Jude the Apostle School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8fd2cf79-7b93-4096-bebf-c98735eeeefc"] + }, + "sort": ["St Jude the Apostle School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20104:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-kilda-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0build\u00a0a play area with\u00a0a shady setting for peaceful, passive play and sensory activities. The area also operates as an outdoor learning space with amphitheatre-style seating, ramps and decking." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at St Kilda Park Primary School." + ], + "field_latitude": ["-37.858117"], + "field_latitude_longitude_value": ["-37.858117,144.977794"], + "field_latitude_value": ["-37.858117"], + "field_longitude": ["144.977794"], + "field_longitude_value": ["144.977794"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3182"], + "field_project_code": ["01-2460"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["68 Fitzroy St"], + "field_suburb": ["St Kilda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20104], + "status": [true], + "title": ["St Kilda Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cb390741-e256-4144-8531-bc8b645af5f1"] + }, + "sort": ["St Kilda Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19998:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-kilda-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded St Kilda Primary School, which included building a multi-storey education building on the Brighton Road side of the campus. We also demolished the old classroom block on the Chapel Street side of the school, and replaced it with new classrooms. These works will ensure that students can learn in facilities designed for delivering modern education.", + "We built an inclusive indoor learning space and an accessible outdoor sensory play area. This new space\u00a0includes\u00a0decking with accessible seating, garden beds and modifications to the play equipment to make it easier\u00a0for all children to use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $5.46 million was allocated to the school. In the 2019\u201320 State Budget, the school received $503,400. In 2020, the school received $4,530,600.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at St Kilda Primary School" + ], + "field_latitude": ["-37.8697"], + "field_latitude_longitude_value": ["-37.8697,144.98925"], + "field_latitude_value": ["-37.8697"], + "field_longitude": ["144.98925"], + "field_longitude_value": ["144.98925"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3182"], + "field_project_code": ["01-1479", "D1-01-1479"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2022", "Q3 2019"], + "field_start_date": ["Q2 2018", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2B Brighton Rd"], + "field_suburb": ["St Kilda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19998], + "status": [true], + "title": ["St Kilda Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1e3b06af-a730-405e-83e0-39e48caeb344"] + }, + "sort": ["St Kilda Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21138:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-lawrence-brindisi-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped develop stage 2 of the school's masterplan. This included constructing a building with nine general learning and associated spaces.", + "We are helping build the next stage of this new school, which includes a gymnasium, associated spaces and toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $3 million.", + "Under the 2023\u201324 capital funding program for non-government schools, the school received $5 million" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Lawrence of Brindisi Catholic Primary School" + ], + "field_latitude": ["-37.7560920715332", "-37.75609207"], + "field_latitude_longitude_value": [ + "-37.7560920715332,144.55484008789062" + ], + "field_latitude_value": ["-37.7560920715332"], + "field_longitude": ["144.55484008789062", "144.5548401"], + "field_longitude_value": ["144.55484008789062"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["02-SLOB", "D1-02-2242"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22", + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["Q1 2023", "TBC"], + "field_start_date": ["Q3 2021", "Q2 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["31 Waterway Blvd"], + "field_suburb": ["Weir Views"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21138], + "status": [true], + "title": ["St Lawrence of Brindisi Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ae4f6fe-75a2-423d-a949-e4990becba85"] + }, + "sort": ["St Lawrence of Brindisi Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20884:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-leonards-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school\u2019s playground area, including installing new equipment and soft-fall surfaces.", + "We built an outdoor relaxation and learning space with surrounding gardens. The garden includes plants that have been selected specially for their sensory or indigenous qualities, or their\u00a0abilities to attract birds and animals." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $279,125.", + "In 2018, $74,900 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at St Leonards Primary School." + ], + "field_latitude": ["-38.1714316", "-38.171835"], + "field_latitude_longitude_value": ["-38.1714316,144.7146709"], + "field_latitude_value": ["-38.1714316"], + "field_longitude": ["144.7146709", "144.714754"], + "field_longitude_value": ["144.7146709"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3223"], + "field_project_code": ["D1-01-866", "01-866"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2022", "Q3 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1341 Murradoc Rd"], + "field_suburb": ["St Leonards"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20884], + "status": [true], + "title": ["St Leonards Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["09670f5a-d5fc-48d2-841f-dd25a585b901"] + }, + "sort": ["St Leonards Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21034:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-louis-de-montforts-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported the\u00a0school to build\u00a012 general learning areas, a\u00a0performing arts facility and associated areas.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,700,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Louis de Montfort's School" + ], + "field_latitude": ["-38.017460"], + "field_latitude_longitude_value": ["-38.017460,145.103149"], + "field_latitude_value": ["-38.017460"], + "field_longitude": ["145.103149"], + "field_longitude_value": ["145.103149"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["02-1649"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["37 Dolphin St"], + "field_suburb": ["Aspendale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21034], + "status": [true], + "title": ["St Louis de Montfort's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f1f8812d-e9c0-4be0-80c7-96a1cf1ba2ef"] + }, + "sort": ["St Louis de Montfort's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21076:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-lukes-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Wesupported St Luke's Catholic Primary School to replace portable general learning areas with purpose-built permanent facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $5,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Luke's Catholic Primary School" + ], + "field_latitude": ["-36.3257"], + "field_latitude_longitude_value": ["-36.3257,145.41071"], + "field_latitude_value": ["-36.3257"], + "field_longitude": ["145.41071"], + "field_longitude_value": ["145.41071"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3631"], + "field_project_code": ["02-2028"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["629 Goulburn Valley Highway"], + "field_suburb": ["Shepparton North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21076], + "status": [true], + "title": ["St Luke's Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2da374e0-8738-4b9b-84fc-6d6ecbaa85aa"] + }, + "sort": ["St Luke's Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23301:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-lukes-highton-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are extending the playrooms and refurbishing the bathroom and kitchen. This will create more space and more funded kindergarten places for 3 and 4-year-olds. We'll also create a safer entry and add an office with storage space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $289,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Lukes Highton Kindergarten" + ], + "field_latitude": ["-38.16906648"], + "field_latitude_longitude_value": ["-38.16906648,144.3108498"], + "field_latitude_value": ["-38.16906648"], + "field_longitude": ["144.3108498"], + "field_longitude_value": ["144.3108498"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["15-1176"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Planning"], + "field_street_address": ["172 Barrabool Rd"], + "field_suburb": ["Highton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23301], + "status": [true], + "title": ["St Lukes Highton Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["cc1e846b-db37-4afc-93cb-13af223e9bf0"] + }, + "sort": ["St Lukes Highton Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21013:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-margarets-primary-school"], + "changed": ["2023-09-04T13:53:34+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school build:6 general learning areasa science, technology, engineering and mathematics (STEM) resource centrea presentation spacean ICT support workshopan administration area and other associated spaces.", + "We are helping the school upgrade general learning areas and associated spaces. This includes repurposing the library and hall to create a new multipurpose space and refurbishing student toilets." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $3 million.", + "Under the 2023\u201324 capital funding program for non-government schools, the school received $2.6 million" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Margaret's Primary School" + ], + "field_latitude": ["-37.7667829", "-37.766895"], + "field_latitude_longitude_value": ["-37.7667829,144.8918863"], + "field_latitude_value": ["-37.7667829"], + "field_longitude": ["144.8918863", "144.891039"], + "field_longitude_value": ["144.8918863"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3032"], + "field_project_code": ["02-1563", "D1-02-1563"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22", + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["Q2 2023", "TBC"], + "field_start_date": ["Q3 2021", "Q2 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["67 The Esplanade"], + "field_suburb": ["Maribyrnong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21013], + "status": [true], + "title": ["St Margaret's Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7423648a-7755-4a81-ade9-86d763ea6e5a"] + }, + "sort": ["St Margaret's Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21018:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-martin-tours-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported the school to\u00a0build\u00a010 new learning areas and an undercroft parking area.\u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,500,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Martin of Tours School" + ], + "field_latitude": ["-37.73596"], + "field_latitude_longitude_value": ["-37.73596,145.07642"], + "field_latitude_value": ["-37.73596"], + "field_longitude": ["145.07642"], + "field_longitude_value": ["145.07642"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["02-1582"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2018"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["2-12 Silk St"], + "field_suburb": ["Rosanna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21018], + "status": [true], + "title": ["St Martin of Tours School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["68012c6e-8cf8-45be-affd-a16eb2fd35e5"] + }, + "sort": ["St Martin of Tours School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21096:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/st-mary-mackillop-catholic-primary-school-bannockburn" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school\u00a0to continue to convert Bannockburn\u00a0Primary\u00a0School into the new St Mary MacKillop Catholic Primary School.", + "\u200b\u200b\u200b\u200bThe existing state school was refurbished to create a new Catholic primary school.\u200b \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $3,510,000 has been allocated to the school.", + "$1,000,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary MacKillop Catholic Primary School Bannockburn" + ], + "field_latitude": ["-38.0473", "-38.0449409484863"], + "field_latitude_longitude_value": ["-38.0473,144.16992"], + "field_latitude_value": ["-38.0473"], + "field_longitude": ["144.16992", "144.172714233398"], + "field_longitude_value": ["144.16992"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3331"], + "field_project_code": ["02-2219", "D1-02-2219"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2019-20", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q1 2022", "Q2 2019"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["32 High St"], + "field_suburb": ["Bannockburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21096], + "status": [true], + "title": ["St Mary MacKillop Catholic Primary School Bannockburn"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3e50e844-e486-4308-bd10-84fb0ef0ee67"] + }, + "sort": ["St Mary MacKillop Catholic Primary School Bannockburn"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21086:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-mary-cross-catholic-primary-school-point-cook"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0construct 5 general learning areas, student amenities, and associated spaces.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$1,500,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary of the Cross Catholic Primary School Point Cook" + ], + "field_latitude": ["-37.91096"], + "field_latitude_longitude_value": ["-37.91096,144.77232"], + "field_latitude_value": ["-37.91096"], + "field_longitude": ["144.77232"], + "field_longitude_value": ["144.77232"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["02-2089"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Carrick St Saltwater Coast Estate"], + "field_suburb": ["Point Cook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21086], + "status": [true], + "title": ["St Mary of the Cross Catholic Primary School Point Cook"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["312d79e6-d261-46fe-a8eb-2b2b2c6fb34b"] + }, + "sort": ["St Mary of the Cross Catholic Primary School Point Cook"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21085:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/st-mary-cross-mackillop-catholic-parish-primary-school" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the\u00a0school to build 6 general learning areas. The project also upgraded\u00a0the\u00a0multi-purpose hall, carpark and external areas. \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,350,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary of the Cross MacKillop Catholic Parish Primary School" + ], + "field_latitude": ["-37.62656"], + "field_latitude_longitude_value": ["-37.62656,145.01304"], + "field_latitude_value": ["-37.62656"], + "field_longitude": ["145.01304"], + "field_longitude_value": ["145.01304"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3076"], + "field_project_code": ["02-2087"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["47 Farmhouse Blvd"], + "field_suburb": ["Epping North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21085], + "status": [true], + "title": [ + "St Mary of the Cross MacKillop Catholic Parish Primary School" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c77ad1a9-4bb4-4fa9-bebb-84c6fcb46ddd"] + }, + "sort": [ + "St Mary of the Cross MacKillop Catholic Parish Primary School" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21024:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct general and flexible learning areas and student amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,400,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's College" + ], + "field_latitude": ["-37.0205"], + "field_latitude_longitude_value": ["-37.0205,145.1418"], + "field_latitude_value": ["-37.0205"], + "field_longitude": ["145.1418"], + "field_longitude_value": ["145.1418"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3660"], + "field_project_code": ["02-161"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["90 High St"], + "field_suburb": ["Seymour"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21024], + "status": [true], + "title": ["St Mary's College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b320e40a-b2fc-487e-913a-f4084bd13f3e"] + }, + "sort": ["St Mary's College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24251:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T17:06:42+11:00"], + "field_about_project_processed": [ + "We are partnering with St Virgin Mary Coptic Orthodox Church to build a 2-storey early learning centre. We will demolish the existing buildings to make space for the new centre, which will provide 46 kindergarten places for 3 and 4-year-olds in the community. We're also including administration spaces and a library, while maintaining worship space for the church community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $1,045,442 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's Early Learning Centre" + ], + "field_latitude": ["-37.79386404"], + "field_latitude_longitude_value": ["-37.79386404,144.9271986"], + "field_latitude_value": ["-37.79386404"], + "field_longitude": ["144.9271986"], + "field_longitude_value": ["144.9271986"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3031"], + "field_project_code": ["15-SMELC"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - New Early Learning Facility" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["5 Epsom Rd"], + "field_suburb": ["Kensington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24251], + "status": [true], + "title": ["St Mary's Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0f5699b7-62f6-41e9-8c14-ffed2e3e98f6"] + }, + "sort": ["St Mary's Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28146:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-school-ararat"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school to demolish a general learning area and replace it with a new learning building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's School (Ararat)." + ], + "field_latitude": ["-37.28550865706959"], + "field_latitude_longitude_value": [ + "-37.28550865706959,142.94000155491477" + ], + "field_latitude_value": ["-37.28550865706959"], + "field_longitude": ["142.94000155491477"], + "field_longitude_value": ["142.94000155491477"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3377"], + "field_project_code": ["01-0594"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["87 Moore St"], + "field_suburb": ["Ararat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28146], + "status": [true], + "title": ["St Mary's School (Ararat)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d8086143-7007-4428-828d-ff419138c15e"] + }, + "sort": ["St Mary's School (Ararat)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21131:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-school-dandenong"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade their administration and learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's School (Dandenong)" + ], + "field_latitude": ["-38.131244"], + "field_latitude_longitude_value": ["-38.131244,145.1284788"], + "field_latitude_value": ["-38.131244"], + "field_longitude": ["145.1284788"], + "field_longitude_value": ["145.1284788"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["02-935"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["24 New St"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21131], + "status": [true], + "title": ["St Mary's School (Dandenong)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3fc7b7b9-4ba5-40b9-9b3d-b188e40a9fca"] + }, + "sort": ["St Mary's School (Dandenong)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28156:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-school-hastings"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T14:15:37+11:00"], + "field_about_project_processed": [ + "We are helping the school with minor refurbishment works to general learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's School (Hastings)." + ], + "field_latitude": ["-38.297108738306264"], + "field_latitude_longitude_value": [ + "-38.297108738306264,145.1898081837904" + ], + "field_latitude_value": ["-38.297108738306264"], + "field_longitude": ["145.1898081837904"], + "field_longitude_value": ["145.1898081837904"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3915"], + "field_project_code": ["02-1097"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Marine Pde"], + "field_suburb": ["Hastings"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28156], + "status": [true], + "title": ["St Mary's School (Hastings)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["5680688a-2648-4194-b062-075968235233"] + }, + "sort": ["St Mary's School (Hastings)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21115:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-school-inglewood"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish their learning spaces. This included a creative arts room, music centre and community meeting area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $445,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's School (Inglewood)" + ], + "field_latitude": ["-36.5711432"], + "field_latitude_longitude_value": ["-36.5711432,143.8720162"], + "field_latitude_value": ["-36.5711432"], + "field_longitude": ["143.8720162"], + "field_longitude_value": ["143.8720162"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3517"], + "field_project_code": ["02-379"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["87 Southey St"], + "field_suburb": ["Inglewood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21115], + "status": [true], + "title": ["St Mary's School (Inglewood)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9dba0e86-9119-4e6f-b113-4b665514d843"] + }, + "sort": ["St Mary's School (Inglewood)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21010:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-school-rushworth"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade their administration, toilets and learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $938,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's School (Rushworth)" + ], + "field_latitude": ["-36.5871395"], + "field_latitude_longitude_value": ["-36.5871395,145.0112723"], + "field_latitude_value": ["-36.5871395"], + "field_longitude": ["145.0112723"], + "field_longitude_value": ["145.0112723"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3612"], + "field_project_code": ["02-1523"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["5-7 Southam St"], + "field_suburb": ["Rushworth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21010], + "status": [true], + "title": ["St Mary's School (Rushworth)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b370fdaa-8b72-435a-bc86-de2cd092738a"] + }, + "sort": ["St Mary's School (Rushworth)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20990:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-marys-school-st-kilda-east"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to upgrade the senior school general learning areas, collaborative and associated areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mary's School (St Kilda East)." + ], + "field_latitude": ["-37.85913"], + "field_latitude_longitude_value": ["-37.85913,144.99772"], + "field_latitude_value": ["-37.85913"], + "field_longitude": ["144.99772"], + "field_longitude_value": ["144.99772"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3183"], + "field_project_code": ["02-107"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["214 Dandenong Rd"], + "field_suburb": ["St Kilda East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20990], + "status": [true], + "title": ["St Mary's School (St Kilda East)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9f2eed90-fff0-4a24-bfdd-8ba2d192ac97"] + }, + "sort": ["St Mary's School (St Kilda East)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21025:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-matthews-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the\u00a0school to refurbish\u00a0the administration area, staff room and associated spaces.\u00a0\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2017\u201318, $400,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Matthew's School" + ], + "field_latitude": ["-37.6978099"], + "field_latitude_longitude_value": ["-37.6978099,144.96767"], + "field_latitude_value": ["-37.6978099"], + "field_longitude": ["144.96767"], + "field_longitude_value": ["144.96767"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3060"], + "field_project_code": ["02-1612"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["95 William St"], + "field_suburb": ["Fawkner North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21025], + "status": [true], + "title": ["St Matthew's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["44d729c6-1f89-4866-80a4-e27ad3f272fb"] + }, + "sort": ["St Matthew's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25399:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-mels-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We are adding children\u2019s toilets and new nappy-changing facilities. This will help the kindergarten expand and offer more places for local 3-year-old children.", + "We expanded the kindergarten, allowing the centre to offer more places as part of the roll-out of funded kindergarten for 3-year-olds. This will give more local children 2 years of high-quality education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $98,024.25 was allocated to the project.", + "In Round 2 of the 2021\u201322 Building Blocks Capacity Grant, $372,133 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mel's Kindergarten." + ], + "field_latitude": ["-36.3931159740775"], + "field_latitude_longitude_value": [ + "-36.3931159740775,145.41053405622" + ], + "field_latitude_value": ["-36.3931159740775"], + "field_longitude": ["145.41053405622"], + "field_longitude_value": ["145.41053405622"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["d1-15-SMK", "15-SMK"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Building Blocks Capacity Grant - Expansion" + ], + "field_q_complete": ["Q1 2024", "Q1 2023"], + "field_start_date": ["Q4 2022", "Q2 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["200 Archer St"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25399], + "status": [true], + "title": ["St Mel's Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["4f315469-292b-43c1-a9da-d2b109b035d3"] + }, + "sort": ["St Mel's Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21014:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-mels-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0supported the school to build\u00a0general learning spaces and associated areas.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $950,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mel's School" + ], + "field_latitude": ["-36.3927"], + "field_latitude_longitude_value": ["-36.3927,145.4102399"], + "field_latitude_value": ["-36.3927"], + "field_longitude": ["145.4102399"], + "field_longitude_value": ["145.4102399"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["02-1568"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["35 Hamilton St"], + "field_suburb": ["Shepparton South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21014], + "status": [true], + "title": ["St Mel's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a50a081e-0663-4d23-85a5-c7583fd5383b"] + }, + "sort": ["St Mel's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25312:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-michaels-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-27T11:48:04+10:00"], + "field_about_project_processed": [ + "We supported St Michael's Primary School to build a new senior school building.", + "We are helping the school build and refurbish general learning areas. Some of these will be created by repurposing the library. We are also helping build a rooftop outdoor learning area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $5,000,000 has been allocated to the school.", + "Under the 2023\u201324 capital funding program for non-government schools, the school received $3 million" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Michael's Primary School" + ], + "field_latitude": ["-37.79348", "-37.79363261"], + "field_latitude_longitude_value": ["-37.79348,144.946304"], + "field_latitude_value": ["-37.79348"], + "field_longitude": ["144.946304", "144.9462432"], + "field_longitude_value": ["144.946304"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3051"], + "field_project_code": ["02-98", "D1-02-98"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["Q4 2022", "TBC"], + "field_start_date": ["Q4 2019", "Q2 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["8 Brougham Street"], + "field_suburb": ["North Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25312], + "status": [true], + "title": ["St Michael's Primary School"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["f76772f9-ac3a-4ddc-bdf2-a128095490d8"] + }, + "sort": ["St Michael's Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21012:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-michaels-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bWe supported the school to build\u00a03 general learning areas,\u00a0a\u00a0community space, student amenities and associated areas.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $150,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Michael's School" + ], + "field_latitude": ["-38.19882"], + "field_latitude_longitude_value": ["-38.19882,146.53455"], + "field_latitude_value": ["-38.19882"], + "field_longitude": ["146.53455"], + "field_longitude_value": ["146.53455"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["02-154"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Church St"], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21012], + "status": [true], + "title": ["St Michael's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f1dbac0-3d16-4a82-83e4-bcf09599a755"] + }, + "sort": ["St Michael's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28771:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/st-mina-st-marina-child-care-multipurpose-chapel-centre" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T14:11:14+11:00"], + "field_about_project_processed": [ + "We are partnering with St Mina and St Marina Coptic Orthodox Church to build a new kindergarten as part of a broader development at the site. The kindergarten will offer 33 kindergarten places to the community and help local children access 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream, $750,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Mina & St Marina Child Care, Multipurpose & Chapel Centre." + ], + "field_latitude": ["-38.00493454"], + "field_latitude_longitude_value": ["-38.00493454,145.2863603"], + "field_latitude_value": ["-38.00493454"], + "field_longitude": ["145.2863603"], + "field_longitude_value": ["145.2863603"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3803"], + "field_project_code": ["elc-smsmcc"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["41-59 Saffron Dr"], + "field_suburb": ["Hallam"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28771], + "status": [true], + "title": [ + "St Mina & St Marina Child Care, Multipurpose & Chapel Centre" + ], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["366eb70d-5d27-44fc-8c3d-a0400ba0c5c0"] + }, + "sort": ["St Mina & St Marina Child Care, Multipurpose & Chapel Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21039:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-monicas-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200bWe supported the\u00a0building of\u00a09 general learning areas, administration spaces, student services, resource area and associated areas.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,000,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Monica's College" + ], + "field_latitude": ["-37.650480"], + "field_latitude_longitude_value": ["-37.650480,145.031200"], + "field_latitude_value": ["-37.650480"], + "field_longitude": ["145.031200"], + "field_longitude_value": ["145.031200"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3076"], + "field_project_code": ["02-1657"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q3 2015"], + "field_status_name": ["Complete"], + "field_street_address": ["16 Davisson St"], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21039], + "status": [true], + "title": ["St Monica's College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fba2befa-4dbb-4a86-8c36-61463be2aec0"] + }, + "sort": ["St Monica's College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34782:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-monicas-primary-school-moonee-ponds"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school extend its building to provide more general learning areas. We are also helping refurbish other learning areas and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $2 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Monica's Primary School in Moonee Ponds" + ], + "field_latitude": ["-37.75972496"], + "field_latitude_longitude_value": ["-37.75972496,144.9225932"], + "field_latitude_value": ["-37.75972496"], + "field_longitude": ["144.9225932"], + "field_longitude_value": ["144.9225932"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3039"], + "field_project_code": ["02-566"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["20 Robinson Street"], + "field_suburb": ["Moonee Ponds"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34782], + "status": [true], + "title": ["St Monica's Primary School (Moonee Ponds)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a927a014-c2e3-4346-a0fc-158a0a4c6b33"] + }, + "sort": ["St Monica's Primary School (Moonee Ponds)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28147:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-monicas-school-wodonga-west"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish relocatable buildings and replace them with a new general learning building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $600,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Monica's School (Wodonga West)." + ], + "field_latitude": ["-36.12687830057663"], + "field_latitude_longitude_value": [ + "-36.12687830057663,146.8728661395284" + ], + "field_latitude_value": ["-36.12687830057663"], + "field_longitude": ["146.8728661395284"], + "field_longitude_value": ["146.8728661395284"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["01-1699"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["137 Brockley St"], + "field_suburb": ["Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28147], + "status": [true], + "title": ["St Monica's School (Wodonga West)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["b981a429-2f48-4c4b-b432-b65a041eeba8"] + }, + "sort": ["St Monica's School (Wodonga West)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21003:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-oliver-plunkett-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200bWe supported the school to rebuild\u00a0a multi-purpose hall and associated areas. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,000,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Oliver Plunkett Primary School" + ], + "field_latitude": ["-37.7307"], + "field_latitude_longitude_value": ["-37.7307,144.94199"], + "field_latitude_value": ["-37.7307"], + "field_longitude": ["144.94199"], + "field_longitude_value": ["144.94199"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["02-1465"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2018"], + "field_start_date": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["1-39 Landells Rd"], + "field_suburb": ["Pascoe Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21003], + "status": [true], + "title": ["St Oliver Plunkett Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["85b9a810-d2f1-4787-b930-ee520691448f"] + }, + "sort": ["St Oliver Plunkett Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21107:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-patricks-college-ballarat"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the school to construct a multipurpose centre. It will have an assembly hall, performing arts spaces and learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Patrick's College Ballarat" + ], + "field_latitude": ["-37.5592613"], + "field_latitude_longitude_value": ["-37.5592613,143.8316183"], + "field_latitude_value": ["-37.5592613"], + "field_longitude": ["143.8316183"], + "field_longitude_value": ["143.8316183"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["02-28"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["1431 Sturt St"], + "field_suburb": ["Newington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21107], + "status": [true], + "title": ["St Patrick's College Ballarat"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["66f9e24d-e241-4194-b04b-36b733900ea5"] + }, + "sort": ["St Patrick's College Ballarat"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21059:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-patricks-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe supported the school to\u00a0build\u00a0general learning areas, and retire\u00a0old relocatable classrooms.\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $500,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Patrick's Primary School" + ], + "field_latitude": ["-37.29893"], + "field_latitude_longitude_value": ["-37.29893,144.94705"], + "field_latitude_value": ["-37.29893"], + "field_longitude": ["144.94705"], + "field_longitude_value": ["144.94705"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3764"], + "field_project_code": ["02-184"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Conway St"], + "field_suburb": ["Kilmore"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21059], + "status": [true], + "title": ["St Patrick's Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b2ca3223-8bc3-4837-8570-e069880c6076"] + }, + "sort": ["St Patrick's Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21117:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-patricks-school-koroit"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to convert and refurbish their library resource area for use as two general-purpose learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $1,635,000 was allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Patrick's School (Koroit)" + ], + "field_latitude": ["-38.30032"], + "field_latitude_longitude_value": ["-38.30032,142.36903"], + "field_latitude_value": ["-38.30032"], + "field_longitude": ["142.36903"], + "field_longitude_value": ["142.36903"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3282"], + "field_project_code": ["02-445"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Queen St"], + "field_suburb": ["Koroit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21117], + "status": [true], + "title": ["St Patrick's School (Koroit)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["51c17836-ab8a-4ccf-8351-6f8a4ca1c0a1"] + }, + "sort": ["St Patrick's School (Koroit)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21129:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-patricks-school-mentone"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the school to construct additional classrooms and learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1.7 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Patrick's School (Mentone)." + ], + "field_latitude": ["-37.9831473"], + "field_latitude_longitude_value": ["-37.9831473,145.0698833"], + "field_latitude_value": ["-37.9831473"], + "field_longitude": ["145.0698833"], + "field_longitude_value": ["145.0698833"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3194"], + "field_project_code": ["02-836"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["16 Childers St"], + "field_suburb": ["Mentone"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21129], + "status": [true], + "title": ["St Patrick's School (Mentone)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7a5fd368-7188-4ef8-a1e6-9ddf457128d9"] + }, + "sort": ["St Patrick's School (Mentone)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28148:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-patricks-school-st-arnaud"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school demolish an existing general learning area and admin space and build a new multi-purpose building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $500,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Patrick's School (St Arnaud)." + ], + "field_latitude": ["-36.61446189988997"], + "field_latitude_longitude_value": [ + "-36.61446189988997,143.24650353954712" + ], + "field_latitude_value": ["-36.61446189988997"], + "field_longitude": ["143.24650353954712"], + "field_longitude_value": ["143.24650353954712"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3478"], + "field_project_code": ["01-0227"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Wattle St"], + "field_suburb": ["St Arnaud"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28148], + "status": [true], + "title": ["St Patrick's School (St Arnaud)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["081bca6d-5a3c-4750-8c17-a6b831978344"] + }, + "sort": ["St Patrick's School (St Arnaud)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20987:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-patricks-school-wangaratta"], + "changed": ["2023-10-26T11:52:02+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school build a flexible learning centre.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Patrick's School (Wangaratta)" + ], + "field_latitude": ["-36.358140110367664"], + "field_latitude_longitude_value": [ + "-36.358140110367664,146.31847481619639" + ], + "field_latitude_value": ["-36.358140110367664"], + "field_longitude": ["146.31847481619639"], + "field_longitude_value": ["146.31847481619639"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["02-104"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Ovens St"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20987], + "status": [true], + "title": ["St Patrick's School (Wangaratta)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ae3b7a80-d133-4d46-99ae-cee0d1b25b29"] + }, + "sort": ["St Patrick's School (Wangaratta)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21090:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-paul-apostle-catholic-primary-school"], + "changed": ["2023-11-24T15:18:18+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build a senior learning hub, staff room and a multipurpose building.The multipurpose building includes:STEAM learning facilitiesa presentation spacea communal kitchenan officetoilets and storage." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $5 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul the Apostle Catholic Primary School" + ], + "field_latitude": ["-37.6024285"], + "field_latitude_longitude_value": ["-37.6024285,145.1136683"], + "field_latitude_value": ["-37.6024285"], + "field_longitude": ["145.1136683"], + "field_longitude_value": ["145.1136683"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3754"], + "field_project_code": ["02-2096"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["80 Bassetts Rd"], + "field_suburb": ["Doreen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21090], + "status": [true], + "title": ["St Paul the Apostle Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["305b64ae-023f-47f6-be87-90b174375558"] + }, + "sort": ["St Paul the Apostle Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21154:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-pauls-anglican-grammar-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200b\u200bWe supported the school to\u00a0construct a two-storey building with 6 general learning areas, 2 large breakout areas, 5 tutorial rooms, staff administration and preparation areas, associated storage, locker areas and student amenities.", + "We supported Warragul Junior School to upgrade their facilities.", + "We supported\u00a0the school to remove cladding\u00a0from their senior school building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,965,456 has been allocated to the school.\u00a0", + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 has been allocated to the school.", + "As part of the 2019\u201320 capital funding program for non-government schools, $49,202 has been allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul's Anglican Grammar School" + ], + "field_latitude": ["-38.14557", "-38.14603", "-38.14603"], + "field_latitude_longitude_value": ["-38.14557,145.93201"], + "field_latitude_value": ["-38.14557"], + "field_longitude": ["145.93201", "145.93035", "145.93035"], + "field_longitude_value": ["145.93201"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["03-1849", "D1-03-1849", "D2-03-1849"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund - Warragul Junior School", + "Non-Government Schools Capital Fund - Senior School" + ], + "field_q_complete": ["Q2 2018", "Q1 2022", "Q2 2020"], + "field_start_date": ["Q2 2017", "Q4 2019", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["150 Bowen St"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21154], + "status": [true], + "title": ["St Paul's Anglican Grammar School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["02d93c8c-ef6b-4905-9572-570a051c86af"] + }, + "sort": ["St Paul's Anglican Grammar School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21452:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/st-pauls-anglican-grammar-school-early-learning-centre" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an early learning centre with 4 kindergarten rooms and a multipurpose community room. This will allow the centre to offer 88 places to local 3 and 4-year-olds.", + "We expanded the centre. It can now offer 22 extra places as part of the roll-out of funded kindergarten for 3-year-olds. This will provide more local children with 2 years of high-quality kindergarten.", + "We\u00a0helped\u00a0expand the school's early learning centre by converting an administration building into an extension. The school gained an\u00a0additional kindergarten room, amentities, staff facilities and community and consulting rooms.", + "The\u00a0kindergarten redesigned the existing play area, allowing for inclusive outdoor play with features including a sand deck, rockscape and shelter." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2022\u201323 Building Blocks Capacity Building Grants, $2,000,000 was allocated to this project.", + "In Round 1 of the 2022\u201323 Building Blocks Capacity Building Grants, $600,000 was allocated to this project.", + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $600,000 was allocated to the project.", + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $262,500 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Capacity Grant", + "Building Blocks Capacity Grant", + "Building Blocks Capacity Grant", + "Early Learning Facilities Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul's Anglican Grammar School Early Learning Centre." + ], + "field_latitude": ["-38.1463314", "-38.14603"], + "field_latitude_longitude_value": ["-38.1463314,145.9300222"], + "field_latitude_value": ["-38.1463314"], + "field_longitude": ["145.9300222", "145.93035"], + "field_longitude_value": ["145.9300222"], + "field_mappintype_name": [ + "Early childhood", + "Early childhood", + "Early childhood", + "Early childhood" + ], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": [ + "D3-15-SPAGS", + "D2-ELC-SPAGS", + "D1-ELC-SPAGS", + "ELC-SPAGS" + ], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Facility - Drouin Campus", + "Building Blocks Capacity Grant - Expansion - Traralgon Campus", + "Building Blocks Capacity Grant - Expansion", + "Early Learning Facilities Upgrade" + ], + "field_q_complete": ["Q4 2024", "Q4 2023", "Q3 2021", "Q3 2019"], + "field_start_date": ["Q2 2022", "Q2 2022", "Q3 2020"], + "field_status_name": ["Planning", "Complete", "Complete", "Complete"], + "field_street_address": ["150 Bowen St"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21452], + "status": [true], + "title": ["St Paul's Anglican Grammar School Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dbf8a0cf-881e-415d-bce1-addddcd534f7"] + }, + "sort": ["St Paul's Anglican Grammar School Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28149:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-pauls-kealba-catholic-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school with a minor refurbishment to general learning areas and replace existing windows and roofs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $1.8 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul's Kealba Catholic School." + ], + "field_latitude": ["-37.733894854450426"], + "field_latitude_longitude_value": [ + "-37.733894854450426,144.81946453959102" + ], + "field_latitude_value": ["-37.733894854450426"], + "field_longitude": ["144.81946453959102"], + "field_longitude_value": ["144.81946453959102"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["01-1761"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["230\u2013240 Sunshine Av"], + "field_suburb": ["Kealba"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28149], + "status": [true], + "title": ["St Paul's Kealba Catholic School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["f3e19f2f-725b-4c64-acb5-04b43a85701a"] + }, + "sort": ["St Paul's Kealba Catholic School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21195:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-pauls-lutheran-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped expand St Paul's Lutheran Kindergarten to support the roll-out of subsidised three-year-old kindergarten. We helped build an extra 33-place classroom, accommodating increased three-year-old kindergarten hours. The bathroom and kitchen were also altered to increase capacity, and a consultation room was built to allow families to access health and support services onsite." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $816,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul's Lutheran Kindergarten" + ], + "field_latitude": ["-38.205406188964844"], + "field_latitude_longitude_value": [ + "-38.205406188964844,144.32998657226562" + ], + "field_latitude_value": ["-38.205406188964844"], + "field_longitude": ["144.32998657226562"], + "field_longitude_value": ["144.32998657226562"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["15-1179"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["303 Torquay Rd"], + "field_suburb": ["Grovedale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21195], + "status": [true], + "title": ["St Paul's Lutheran Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c9349220-fd6b-4858-9b78-247ea6c50573"] + }, + "sort": ["St Paul's Lutheran Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20996:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-pauls-school-bentleigh"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish the junior school. We helped to remove asbestos, increase natural light and fix structural issues." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul's School (Bentleigh)" + ], + "field_latitude": ["-37.922661"], + "field_latitude_longitude_value": ["-37.922661,145.042677"], + "field_latitude_value": ["-37.922661"], + "field_longitude": ["145.042677"], + "field_longitude_value": ["145.042677"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["02-1291"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["122 Jasper Rd"], + "field_suburb": ["Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20996], + "status": [true], + "title": ["St Paul's School (Bentleigh)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bc6cb385-a66b-4175-8598-d0aa9614eaa6"] + }, + "sort": ["St Paul's School (Bentleigh)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21111:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-pauls-school-coburg"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to modernise\u00a0their learning and wellbeing spaces.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 capital funding program for non-government schools, $2,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul's School (Coburg)." + ], + "field_latitude": ["-37.73862"], + "field_latitude_longitude_value": ["-37.73862,144.96771"], + "field_latitude_value": ["-37.73862"], + "field_longitude": ["144.96771"], + "field_longitude_value": ["144.96771"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["02-336"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["562 Sydney Rd"], + "field_suburb": ["Coburg"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21111], + "status": [true], + "title": ["St Paul's School (Coburg)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1e946f18-a39a-4c3c-b190-a27f14e1316e"] + }, + "sort": ["St Paul's School (Coburg)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28150:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-pauls-school-sunshine-west"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school refurbish general learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Paul's School (Sunshine West)." + ], + "field_latitude": ["-37.78773272995124"], + "field_latitude_longitude_value": [ + "-37.78773272995124,144.8073134684286" + ], + "field_latitude_value": ["-37.78773272995124"], + "field_longitude": ["144.8073134684286"], + "field_longitude_value": ["144.8073134684286"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["01-1549"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["188 Glengala Rd"], + "field_suburb": ["Sunshine West"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28150], + "status": [true], + "title": ["St Paul's School (Sunshine West)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d397b57c-4a6a-4856-aa64-828b49f48afe"] + }, + "sort": ["St Paul's School (Sunshine West)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21066:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-peters-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0constructed a Year 9 building at the Cranbourne East Campus which\u00a0includes general learning areas, science facilities and associated areas.\u200b\u200b\u200b\u200b\u200b\u200b \u200b\u200b", + "\u200bWe supported the school to construct a performing arts centre, including general learning areas and specialist facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $2,000,000 has been allocated to the school.", + "Under the 2019\u201320 capital funding program for non-government schools, $4 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Peter's College." + ], + "field_latitude": ["-38.14272", "-38.109226"], + "field_latitude_longitude_value": ["-38.14272,145.20938"], + "field_latitude_value": ["-38.14272"], + "field_longitude": ["145.20938", "145.257599"], + "field_longitude_value": ["145.20938"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["02-1920", "D1-02-1920"], + "field_project_title": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund - 2019-20" + ], + "field_q_complete": ["Q4 2017", "Q3 2022"], + "field_start_date": ["Q1 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cranbourne-Frankston Rd"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21066], + "status": [true], + "title": ["St Peter's College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6019969d-f97c-4942-a5a3-247fc3dfcfc0"] + }, + "sort": ["St Peter's College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28778:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-peters-kindergarten-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T15:05:16+11:00"], + "field_about_project_processed": [ + "We created a versatile outdoor space for play-based learning. The space is set within a rich, natural setting. Children will learn how to explore and engage in their environment. The space will help children build their confidence and spark curiosity.The outdoor space features:natural and accessible landscapesa mud kitchen and bush hutresting places, reflexology paths and running water \u00a0a restored ecosystem." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $185,714.95 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Peter's Kindergarten Inc." + ], + "field_latitude": ["-37.92004136"], + "field_latitude_longitude_value": ["-37.92004136,144.9959342"], + "field_latitude_value": ["-37.92004136"], + "field_longitude": ["144.9959342"], + "field_longitude_value": ["144.9959342"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3186"], + "field_project_code": ["15-181"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["77A Were St"], + "field_suburb": ["Brighton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28778], + "status": [true], + "title": ["St Peter's Kindergarten Inc"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["c47912d1-1399-4be6-a5b8-3c2fd0eaf3ed"] + }, + "sort": ["St Peter's Kindergarten Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21000:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-peters-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish\u00a0administration and staff facilities\u00a0and associated areas\u200b. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$400,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Peter's School." + ], + "field_latitude": ["-37.65056"], + "field_latitude_longitude_value": ["-37.65056,145.02815"], + "field_latitude_value": ["-37.65056"], + "field_longitude": ["145.02815"], + "field_longitude_value": ["145.02815"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3076"], + "field_project_code": ["02-1383"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["32 Wedge St"], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21000], + "status": [true], + "title": ["St Peter's School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7857f7f9-4520-4864-a41b-bc8812702630"] + }, + "sort": ["St Peter's School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34780:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-peters-school-keilor-east"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-04T13:53:25+10:00"], + "field_about_project_processed": [ + "We are helping the school build a 2-storey learning building with general learning areas and associated spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2023\u201324 capital funding program for non-government schools, the school received $1.5 million" + ], + "field_funding_type_name": [ + "Building Fund for Non-Government Schools" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Peter's School in Keilor East" + ], + "field_latitude": ["-37.74441589"], + "field_latitude_longitude_value": ["-37.74441589,144.8594875"], + "field_latitude_value": ["-37.74441589"], + "field_longitude": ["144.8594875"], + "field_longitude_value": ["144.8594875"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3033"], + "field_project_code": ["02-1692"], + "field_project_title": [ + "Building Fund for Non-Government Schools - Catholic" + ], + "field_q_complete": ["TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["2A Parkside Avenue"], + "field_suburb": ["Keilor East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34780], + "status": [true], + "title": ["St Peter's School (Keilor East)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["47c53a08-0670-4c6d-9cce-38a65340a4df"] + }, + "sort": ["St Peter's School (Keilor East)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21105:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-peters-school-bentleigh"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported the school to refurbish general learning areas and completed associated works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,000,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Peter's School Bentleigh." + ], + "field_latitude": ["-37.923328"], + "field_latitude_longitude_value": ["-37.923328,145.070206"], + "field_latitude_value": ["-37.923328"], + "field_longitude": ["145.070206"], + "field_longitude_value": ["145.070206"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["02-252"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["842 Centre Rd"], + "field_suburb": ["Bentleigh East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21105], + "status": [true], + "title": ["St Peter's School Bentleigh"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5837a65e-131f-4740-b689-6a3b16043b6a"] + }, + "sort": ["St Peter's School Bentleigh"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21062:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-richards-primary-school"], + "changed": ["2023-11-24T15:06:40+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school's upgrade of its learning areas and the main entrance." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020-21 capital funding program for non-government schools, the school received $1.65 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Richard's Primary School." + ], + "field_latitude": ["-37.8059527"], + "field_latitude_longitude_value": ["-37.8059527,145.3219311"], + "field_latitude_value": ["-37.8059527"], + "field_longitude": ["145.3219311"], + "field_longitude_value": ["145.3219311"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3137"], + "field_project_code": ["02-1891"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["672 Mount Dandenong Rd"], + "field_suburb": ["Kilsyth"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21062], + "status": [true], + "title": ["St Richard's Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1e599850-a171-4c08-8430-4b30e9f1d073"] + }, + "sort": ["St Richard's Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21140:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/proposed-catholic-primary-school-tarneit-north"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are supporting the first stage of construction of a new Catholic primary school in Tarneit North. This school was previously known by the name of Proposed Catholic Primary School, Tarneit North.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $4 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Teresa of Kolkata Primary School" + ], + "field_latitude": ["-37.818618746415"], + "field_latitude_longitude_value": [ + "-37.818618746415,144.684282445045" + ], + "field_latitude_value": ["-37.818618746415"], + "field_longitude": ["144.684282445045"], + "field_longitude_value": ["144.684282445045"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["02-TN"], + "field_project_title": [ + "Non-Government Schools Capital Fund - New School" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Dohertys Rd"], + "field_suburb": ["Tarneit North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21140], + "status": [true], + "title": ["St Teresa of Kolkata Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7ba088db-d718-4bf8-a3d5-3bdeae1a8bda"] + }, + "sort": ["St Teresa of Kolkata Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21067:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-thereses-school-cranbourne"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish six classrooms and construct a new library. The project included improving the thermal performance of the building as well as installing solar panels and methods for harvesting rainwater." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $2.841 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Therese's School (Cranbourne)" + ], + "field_latitude": ["-38.07694"], + "field_latitude_longitude_value": ["-38.07694,145.267548"], + "field_latitude_value": ["-38.07694"], + "field_longitude": ["145.267548"], + "field_longitude_value": ["145.267548"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["02-1926"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["131 Endeavour Dr"], + "field_suburb": ["Cranbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21067], + "status": [true], + "title": ["St Therese's School (Cranbourne)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0f0614b1-2939-4731-a361-0f28fb561a3a"] + }, + "sort": ["St Therese's School (Cranbourne)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28151:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-thomas-mores-school-hadfield"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-28T13:52:25+11:00"], + "field_about_project_processed": [ + "We are helping the school refurbish a general learning building. Works include building a new accessible toilet facility, asbestos removal and service upgrades." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2022\u201323 capital funding program for non-government schools, the school received $2 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Thomas More's School (Hadfield)." + ], + "field_latitude": ["-37.7074687787682"], + "field_latitude_longitude_value": [ + "-37.7074687787682,144.94470745493155" + ], + "field_latitude_value": ["-37.7074687787682"], + "field_longitude": ["144.94470745493155"], + "field_longitude_value": ["144.94470745493155"], + "field_mappintype_name": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["01-1650"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2022\u201323" + ], + "field_q_complete": ["Q2 2025"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["30 Angus St"], + "field_suburb": ["Hadfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28151], + "status": [true], + "title": ["St Thomas More's School (Hadfield)"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["0a4bbc23-1b6b-4bc6-b9d7-9cc78e515826"] + }, + "sort": ["St Thomas More's School (Hadfield)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21087:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-thomas-apostle-catholic-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to\u00a0build\u00a07 general learning areas and refurbish administration and general learning areas.\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 to 2018\u201319 Capital Funding Program for Non-Government Schools, $1,500,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Thomas the Apostle Catholic Primary School." + ], + "field_latitude": ["-38.11712"], + "field_latitude_longitude_value": ["-38.11712,145.31904"], + "field_latitude_value": ["-38.11712"], + "field_longitude": ["145.31904"], + "field_longitude_value": ["145.31904"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["02-2090"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q1 2018"], + "field_start_date": ["Q2 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Enter via Mac Killop Way"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21087], + "status": [true], + "title": ["St Thomas the Apostle Catholic Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["76a56a05-b46f-47e6-9fff-2b3716b2792a"] + }, + "sort": ["St Thomas the Apostle Catholic Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21052:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-thomas-apostle-school-greensborough-north"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to refurbish general learning areas, student amenities and external learning areas." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2019\u201320 capital funding program for non-government schools, $1,100,000 has been allocated to the school." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St Thomas the Apostle School (Greensborough North)." + ], + "field_latitude": ["-37.68238"], + "field_latitude_longitude_value": ["-37.68238,145.12"], + "field_latitude_value": ["-37.68238"], + "field_longitude": ["145.12"], + "field_longitude_value": ["145.12"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["02-1781"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["251 Diamond Creek Rd"], + "field_suburb": ["Greensborough North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21052], + "status": [true], + "title": ["St Thomas the Apostle School (Greensborough North)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bef1c688-133a-4633-a77f-283bf6da9747"] + }, + "sort": ["St Thomas the Apostle School (Greensborough North)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23327:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/st-linus-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We replaced the side annex with a purpose-built space that includes toilets, a children's kitchen, a meeting room and storage room. The storage area was transformed into a staff toilet with shower. At the front of the centre we added a foyer, office room and extra space for children's activities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childhood Refurbishment and Minor Works grant, $493,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at St. Linus Kindergarten" + ], + "field_latitude": ["-37.72159416"], + "field_latitude_longitude_value": ["-37.72159416,144.958985"], + "field_latitude_value": ["-37.72159416"], + "field_longitude": ["144.958985"], + "field_longitude_value": ["144.958985"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3058"], + "field_project_code": ["15-304"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Delta Ave"], + "field_suburb": ["Coburg North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23327], + "status": [true], + "title": ["St. Linus Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["37f17dca-e8a8-4822-982f-b21ef84ad4e1"] + }, + "sort": ["St. Linus Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20746:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/staughton-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising and expanding the school. This will give students better learning opportunities and create places for an extra 400 local students. We will replace temporary buildings and build more permanent classrooms.", + "We extended\u00a0and refurbished\u00a0the gym and first floor games area. We also transformed\u00a0old classrooms and facilities into modern learning environments." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $31.77 million.", + "In the 2019\u201320 State Budget, the school received $650,000. In 2020, the school received $5.85 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Staughton College" + ], + "field_latitude": ["-37.708365", "-37.70865"], + "field_latitude_longitude_value": ["-37.708365,144.568689"], + "field_latitude_value": ["-37.708365"], + "field_longitude": ["144.568689", "144.56909"], + "field_longitude_value": ["144.568689"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["D1-01-7247", "01-7247"], + "field_project_title": [ + "Upgrade and Modernisation - more places for local students", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q3 2025", "Q3 2021"], + "field_start_date": ["Q2 2022", "Q2 2019"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Wilson Rd"], + "field_suburb": ["Melton South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20746], + "status": [true], + "title": ["Staughton College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a05e50ed-39b0-42f5-ab3d-962207d6925e"] + }, + "sort": ["Staughton College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20446:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/stawell-primary-school"], + "changed": ["2023-10-26T11:46:25+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished and upgraded the school oval. It is now a central hub for student recreation, events and physical education.\u00a0", + "We built an inclusive outdoor learning space, including mud kitchen and minor landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $310,125.", + "In Round 7 of the Inclusive Schools Fund, the project received $23,500." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Stawell Primary School." + ], + "field_latitude": ["-37.0563865", "-37.056128"], + "field_latitude_longitude_value": ["-37.0563865,142.7728396"], + "field_latitude_value": ["-37.0563865"], + "field_longitude": ["142.7728396", "142.773775"], + "field_longitude_value": ["142.7728396"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3380"], + "field_project_code": ["01-502", "D1-01-502"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 7" + ], + "field_q_complete": ["Q3 2023", "Q4 2022"], + "field_start_date": ["Q4 2020", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["14\u201328 Barnes St"], + "field_suburb": ["Stawell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20446], + "status": [true], + "title": ["Stawell Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["98eada8e-3cc9-441c-b800-ab454b62e2f1"] + }, + "sort": ["Stawell Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20895:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/stawell-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building on the significant upgrade of the school completed in 2020 with the next stage of the school's master plan. In Stage 2 we will refurbish classrooms, the library, as well as art and music rooms.", + "We worked with the school\u00a0in 2017\u201318 to\u00a0create\u00a0a master plan for their upgrade. Additional funding from the\u00a02018\u201319 State Budget allowed\u00a0us to proceed with\u00a0the first stage of the\u00a0upgrade and modernisation. This\u00a0included\u00a0building new science and home economic facilities, and refurbishing\u00a0the auditorium. We also demolished buildings with asbestos. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $11.152 million, with a further $1.2 million in 2023.", + "In the 2017\u201318 State Budget, $7 million was allocated to schools across the State for planning. This includes funding for the school. In the 2018\u201319 State Budget $4 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Stawell Secondary College." + ], + "field_latitude": ["-37.0620328", "-37.062031"], + "field_latitude_longitude_value": ["-37.0620328,142.7892288"], + "field_latitude_value": ["-37.0620328"], + "field_longitude": ["142.7892288", "142.789230"], + "field_longitude_value": ["142.7892288"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/StawellSC-221021-feature-tile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3380"], + "field_project_code": ["D1-01-8731", "01-8731"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q4 2024", "Q2 2020"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["79-97 Patrick St"], + "field_suburb": ["Stawell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20895], + "status": [true], + "title": ["Stawell Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["29ab6464-490d-468d-9935-d07b469883e3"] + }, + "sort": ["Stawell Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22352:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/stawell-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:24:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are refurbishing the staff and community/visitors bathroom to improve amenity, cleanliness and hygiene.", + "We are upgrading an indoor learning area to be more inclusive. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 2 of the Minor Capital Works Fund, the project received $190,500", + "In Round 8 of the Inclusive Schools Fund, the project received $67,519." + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Stawell West Primary School" + ], + "field_latitude": ["-37.065765", "-37.065765"], + "field_latitude_longitude_value": ["-37.065765,142.771294"], + "field_latitude_value": ["-37.065765"], + "field_longitude": ["142.771294", "142.771294"], + "field_longitude_value": ["142.771294"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3380"], + "field_project_code": ["D1-01-4934", "01-4934", "d1-3934"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": [ + "Subject to future funding", + "Q1 2024", + "Q4 2023" + ], + "field_start_date": ["Q2 2023", "Q4 2021", "Q4 2022"], + "field_status_name": ["Planning", "Construction", "Construction"], + "field_street_address": ["80-88 Cooper St"], + "field_suburb": ["Stawell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22352], + "status": [true], + "title": ["Stawell West Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["8dba55b0-0fc0-42ef-be2d-fe8969013a40"] + }, + "sort": ["Stawell West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20460:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/stevensville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive sensory garden to support Stevensville Primary School students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $185,779 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Stevensville Primary School" + ], + "field_latitude": ["-37.73666"], + "field_latitude_longitude_value": ["-37.73666,144.78126"], + "field_latitude_value": ["-37.73666"], + "field_longitude": ["144.78126"], + "field_longitude_value": ["144.78126"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["01-5047"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["52 Kings Rd"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20460], + "status": [true], + "title": ["Stevensville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f9cda780-4346-475c-9ca2-7175b2e2cff8"] + }, + "sort": ["Stevensville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21229:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/stewarts-lane-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bHume City Council extended the kindergarten to increase the licensed capacity from 57 to 66 and removed several internal doors to improve the flow and usability of the internal storerooms and the office space.\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $43,475 has been allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Stewarts Lane Preschool." + ], + "field_latitude": ["-37.56988"], + "field_latitude_longitude_value": ["-37.56988,144.71684"], + "field_latitude_value": ["-37.56988"], + "field_longitude": ["144.71684"], + "field_longitude_value": ["144.71684"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["15-223"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["9 Stewart Lane"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21229], + "status": [true], + "title": ["Stewarts Lane Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e075e17e-b591-497c-b420-8344c8ebd560"] + }, + "sort": ["Stewarts Lane Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36783:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/stratford-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,566" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Stratford Primary School" + ], + "field_latitude": ["-37.967251"], + "field_latitude_longitude_value": ["-37.967251,147.085386"], + "field_latitude_value": ["-37.967251"], + "field_longitude": ["147.085386"], + "field_longitude_value": ["147.085386"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3862"], + "field_project_code": ["01-596"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["14 Wellsford Street"], + "field_suburb": ["Stratford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36783], + "status": [true], + "title": ["Stratford Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["38673c47-bc08-491d-a1fd-aed491af1b51"] + }, + "sort": ["Stratford Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20624:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/strathaird-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including building a new eco cubby and toilet block.", + "We installed\u00a0a new\u00a0covering for two\u00a0basketball courts. \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In the 2015\u201316 State Budget, $100,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Strathaird Primary School." + ], + "field_latitude": ["-38.054718017578125", "-38.06217"], + "field_latitude_longitude_value": [ + "-38.054718017578125,145.30390930175781" + ], + "field_latitude_value": ["-38.054718017578125"], + "field_longitude": ["145.30390930175781", "145.28609"], + "field_longitude_value": ["145.30390930175781"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3805"], + "field_project_code": ["D1-01-5463", "01-5463"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["20 Sherwood Rd"], + "field_suburb": ["Narre Warren South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20624], + "status": [true], + "title": ["Strathaird Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["07044f67-d777-4fb1-96d2-1fc13c68e150"] + }, + "sort": ["Strathaird Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19966:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/strathfieldsaye-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space, including paving, new play equipment and landscaping." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $182,934" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Strathfieldsaye Primary School" + ], + "field_latitude": ["-36.8044456"], + "field_latitude_longitude_value": ["-36.8044456,144.3531497"], + "field_latitude_value": ["-36.8044456"], + "field_longitude": ["144.3531497"], + "field_longitude_value": ["144.3531497"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["01-1211"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["9 Uxbridge Street"], + "field_suburb": ["Strathfieldsaye"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19966], + "status": [true], + "title": ["Strathfieldsaye Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0f04e4df-7f3d-4355-91ee-c1fab7bdc129"] + }, + "sort": ["Strathfieldsaye Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20132:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/strathmerton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. We are working with school leaders to ensure this work helps them achieve their educational goals and that improvements are targeted where they are needed most." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $3.686 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Strathmerton Primary School." + ], + "field_latitude": ["-35.925430297851563"], + "field_latitude_longitude_value": [ + "-35.925430297851563,145.47846984863281" + ], + "field_latitude_value": ["-35.925430297851563"], + "field_longitude": ["145.47846984863281"], + "field_longitude_value": ["145.47846984863281"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3641"], + "field_project_code": ["01-2790"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Findlay St"], + "field_suburb": ["Strathmerton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20132], + "status": [true], + "title": ["Strathmerton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5cc697e5-9bd8-4a00-ac56-4b2e1b1638c0"] + }, + "sort": ["Strathmerton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20367:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/strathmore-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bThis project is now being carried out in 2 stages. During stage 1 we upgraded Strathmore North Primary School, adding a new learning building that allows the school to offer places to an extra 100 local students. During stage 2 we will refurbish the administration block (including roof repairs) and the BER block, as well as resurface the sports courts.\u00a0", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received at least $6.62 million, which is a share in $130.1 million from the Established Areas Program.\u00a0In 2021, the school received a further $380,000 for roof repairs.", + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Strathmore North Primary School" + ], + "field_latitude": ["-37.723915", "-37.724863"], + "field_latitude_longitude_value": ["-37.723915,144.914246"], + "field_latitude_value": ["-37.723915"], + "field_longitude": ["144.914246", "144.915976"], + "field_longitude_value": ["144.914246"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3041"], + "field_project_code": ["01-4821", "d1-4821"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q4 2023", "Q2 2024"], + "field_start_date": ["Q2 2020", "Q4 2022"], + "field_status_name": ["Construction", "Construction"], + "field_street_address": ["Mascoma St"], + "field_suburb": ["Strathmore"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20367], + "status": [true], + "title": ["Strathmore North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bfb2ca1f-1372-4a7a-b9af-93d4b16b4997"] + }, + "sort": ["Strathmore North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20304:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/strathmore-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe built new administration facilities and a competition grade\u00a0sports stadium with exterior courts.\u00a0 The stadium contains specialist spaces for arts and community activities. We also refurbished the school\u2019s learning areas to better support modern teaching practices. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $5.7 million was allocated to the school. The school also received $600,000 in School Pride and Sports Funding." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Strathmore Primary School." + ], + "field_latitude": ["-37.735100"], + "field_latitude_longitude_value": ["-37.735100,144.916885"], + "field_latitude_value": ["-37.735100"], + "field_longitude": ["144.916885"], + "field_longitude_value": ["144.916885"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3041"], + "field_project_code": ["01-4612"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["14-34 Lloyd St"], + "field_suburb": ["Strathmore"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20304], + "status": [true], + "title": ["Strathmore Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["940110eb-4dc2-4243-8ea5-fb3441ee6c20"] + }, + "sort": ["Strathmore Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20858:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/strathmore-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed\u00a0a\u00a0three-storey building with general purpose classrooms and specialist facilities for science, chemistry and food technology. Students and teachers\u00a0gained specialist STEM\u00a0spaces,\u00a03D printers and laser cutters. This is\u00a0in addition to a computer laboratory and breakout areas for students to collaborate or focus on individual learning.", + "We constructed\u00a0an\u00a0arts, science and physics building. Works included break-out areas, staff workspaces and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $13.8 million was allocated to the school.", + "In the 2019\u201320 State Budget, the school received $7.337 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Strathmore Secondary College" + ], + "field_latitude": ["-37.735809", "-37.73581"], + "field_latitude_longitude_value": ["-37.735809,144.925827"], + "field_latitude_value": ["-37.735809"], + "field_longitude": ["144.925827", "144.92583"], + "field_longitude_value": ["144.925827"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Strathmore Secondary College \u2013 new three-storey building" + ], + "field_postcode": ["3041"], + "field_project_code": ["01-8345", "D1-01-8345"], + "field_project_title": [ + "Upgrade and Modernisation - New Three-Storey Building, General Purpose Classrooms, Specialist Science, Chemistry & Food Technology Facilities", + "Upgrade and Modernisation - New Arts, Science & Physics Building" + ], + "field_q_complete": ["Q2 2020", "Q3 2021"], + "field_start_date": ["Q2 2018", "Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["400 Pascoe Vale Rd"], + "field_suburb": ["Strathmore"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20858], + "status": [true], + "title": ["Strathmore Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e62b5803-a5d5-435a-bf70-0c75602bbc49"] + }, + "sort": ["Strathmore Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20687:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/strathtulloh-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Strathtulloh. It opened in 2022 and helps the growing local population get great education close to home. Kris White was appointed as the first principal of the school. The school was known by its interim name, Bridge Road (Melton), during the planning phase. We consulted with the community on the school's name from 11 June to 25 June 2021. The school is named after the suburb it is located in. Facilities Facilities include the following: an administration building, which includes library, art, food and science learning spaces a performing arts and physical education building 2 learning neighbourhoods 2 outdoor hardcourts sports field bike shed playgrounds Design consultation In 2018, we engaged local communities in Melbourne about establishing new schools. We gathered valuable insights, which served as the foundation for our concept designs. Between January and February 2020, we conducted a second round of engagement. We invited local residents to share their ideas and knowledge. This helped identify elements that would shape their new school. We received valuable feedback from the school community. We heard that the Strathtulloh Primary School community values the design and facilities at Melton Library. This was inspirational in the design of the school's new library. Families told us they also wanted accessible sports areas that would allow them to develop a strong school identity. The community asked for modern, bright, and colourful classrooms. They told us they wanted open-plan spaces that could cater to diverse learning styles, and classrooms that did not rely on technology. Our consultation received strong and consistent feedback on many of their design needs and goals. Our architects used your feedback to help shape your school's interior and its landscape design Kinder Bridge Road Children's and Community Centre is located next to Strathtulloh Primary School. This centre includes: a kindergarten maternal and child health and multipurpose community facilities. This may help local children make a smooth transition from pre-school. It may also reduce the number of drop-offs for some parents with kinder and school-aged children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school shared in $438.6 million of funding for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Strathtulloh Primary School." + ], + "field_latitude": ["-37.716624"], + "field_latitude_longitude_value": ["-37.716624,144.589025"], + "field_latitude_value": ["-37.716624"], + "field_longitude": ["144.589025"], + "field_longitude_value": ["144.589025"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/StrathtullohPS_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3338"], + "field_project_code": ["01-5583"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Wembley Av"], + "field_suburb": ["Strathtulloh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20687], + "status": [true], + "title": ["Strathtulloh Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7caf96c0-bb56-427e-9717-51b0302542fc"] + }, + "sort": ["Strathtulloh Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20526:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunbury-and-macedon-ranges-specialist-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new campus for the\u00a0school at 54A\u00a0The Heights, Sunbury. We refurbished 6 heritage-listed buildings. This will modernise the school's food technology and music\u00a0facilities, library,\u00a0staff areas, multipurpose hall, staff and student amenities and\u00a0a\u00a0meeting room. It will also upgrade areas the school uses to provide\u00a0allied health services.\u00a0", + "We modernised\u00a0and upgraded\u00a0the\u00a0Bullengarook campus (located at 705 Bacchus Marsh Road, Bullengarook)\u00a0by delivering the following buildings: Building A: a\u00a0new\u00a0administration/multipurpose hall with\u00a0offices, meeting rooms, staff and student\u00a0amenities, and\u00a0food technology and\u00a0music classrooms Building B: arts\u00a0workshop with\u00a0a kiln room and store Building C: \u00a0a\u00a0new automotive area\u00a0with\u00a0a bike store Building D: a\u00a0new materials technology space We also refurbished the\u00a0multipurpose room into a\u00a0staff lounge.", + "\u200bWe upgraded and modernised the\u00a0Sunbury Campus, located at 127\u2013143\u00a0Circular Dr, Sunbury.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $10.8 million was allocated to a new Sunbury\u00a0campus.", + "In the 2018\u201319 State Budget $4.2 million was allocated to the Bullengarook Senior Campus.", + "In the 2016\u201317 State Budget, $4.088 million was allocated to the school to improve and upgrade facilities." + ], + "field_funding_type_name": [ + "New School Campus", + "Upgrade and Modernisation", + "Planned Maintenance Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunbury nd Macedon Ranges Specialist School." + ], + "field_latitude": ["-37.5960567686413", "-37.596500"], + "field_latitude_longitude_value": [ + "-37.5960567686413,144.72973775400726" + ], + "field_latitude_value": ["-37.5960567686413"], + "field_longitude": ["144.72973775400726", "144.729660"], + "field_longitude_value": ["144.72973775400726"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["01-5218", "D1-01-5218", "D2-01-5218"], + "field_project_title": [ + "New School Campus - Sunbury", + "Upgrade and Modernisation - Bullengarook Senior Campus", + "Upgrade and Modernisation, Planned Maintenance Program - Sunbury Campus" + ], + "field_q_complete": ["Q3 2022", "Q1 2021", "Q4 2018"], + "field_start_date": ["Q2 2018", "Q2 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["127-143 Circular Dr"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20526], + "status": [true], + "title": ["Sunbury And Macedon Ranges Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3f2f3819-59c9-412b-85bb-cacb724d36e7"] + }, + "sort": ["Sunbury And Macedon Ranges Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20859:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunbury-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground, including play and fitness equipment.", + "We completed\u00a0two stages of\u00a0upgrade and refurbishment works at Sunbury\u00a0College. During Stage One a new science wing and learning areas were\u00a0built. Stage Two saw\u00a0the conversion of the existing library into a creative arts precinct. \u200b", + "We helped the school refurbish the toilets to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2016-17 State Budget, $4.8 million has been allocated to the school. In the 2015-16 State Budget, $3.586 million was allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $167,125." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunbury College." + ], + "field_latitude": ["-37.574279", "-37.574150", "-37.5736805"], + "field_latitude_longitude_value": ["-37.574279,144.728672"], + "field_latitude_value": ["-37.574279"], + "field_longitude": ["144.728672", "144.730103", "144.729027"], + "field_longitude_value": ["144.728672"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["D2-01-8350", "01-8350", "D1-01-8350"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2023", "Q3 2019", "Q3 2022"], + "field_start_date": ["Q4 2021", "Q4 2020"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["30 Racecourse Rd"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20859], + "status": [true], + "title": ["Sunbury College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["98cf7ddc-5553-43e4-84b8-b051d5f4ba6e"] + }, + "sort": ["Sunbury College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20892:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunbury-downs-secondary-college"], + "changed": ["2023-10-13T11:58:21+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0upgraded\u00a0and refurbished classrooms and facilities that were in poor condition to improve standards across the school. The works\u00a0targeted\u00a0facilities that needed it most, ensuring the school has the learning facilities it requires to deliver modern education.\u00a0\u200b", + "We performed minor building upgrades and maintenance works to site infrastructure. This is now complete.", + "We are refurbishing the middle and later years student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $3.92 million was allocated to the school.", + "$322,000 was allocated to the school in the 2016\u201317 Planned Maintenance Program.", + "In the 2022-23 State Budget the project received $499,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Planned Maintenance Program", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunbury Downs Secondary College" + ], + "field_latitude": ["-37.582489", "-37.58249", "-37.584007"], + "field_latitude_longitude_value": ["-37.582489,144.705399"], + "field_latitude_value": ["-37.582489"], + "field_longitude": ["144.705399", "144.7054", "144.704485"], + "field_longitude_value": ["144.705399"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we built next to Sunbury Downs Secondary College." + ], + "field_postcode": ["3429"], + "field_project_code": ["01-8723", "D2-01-8723", "D1-01-8723"], + "field_project_title": [ + "Upgrade and Modernisation", + "Planned Maintenance Program", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2020", "Q1 2024", "Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete", "Construction", "Planning"], + "field_street_address": ["148-174 Mitchells Lane"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20892], + "status": [true], + "title": ["Sunbury Downs Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["47dbfcea-ebf3-45ce-883c-a5307a3b72b3"] + }, + "sort": ["Sunbury Downs Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20519:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunbury-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet block to improve amenity, cleanliness and hygiene.", + "We upgraded and modernised the school, including refurbishing classrooms and facilities that were in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $498,127", + "In the 2018\u201319 State Budget $700,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunbury Heights Primary School." + ], + "field_latitude": ["-37.58114", "-37.580952"], + "field_latitude_longitude_value": ["-37.58114,144.706956"], + "field_latitude_value": ["-37.58114"], + "field_longitude": ["144.706956", "144.706345"], + "field_longitude_value": ["144.706956"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we built next to Sunbury Heights Primary School." + ], + "field_postcode": ["3429"], + "field_project_code": ["D1-01-5197", "01-5197"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q2 2020"], + "field_start_date": ["Q4 2021", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Charter Rd East"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20519], + "status": [true], + "title": ["Sunbury Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ccb4a342-589a-4447-b9f9-1ebeda1c71dc"] + }, + "sort": ["Sunbury Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19933:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunbury-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded facilities at Sunbury Primary School. Works included\u00a0refurbishing\u00a0classrooms and facilities\u00a0in poor condition. We\u00a0upgraded and modernised\u00a0the\u00a0heritage buildings and infrastructure, and\u00a0constructed\u00a0a new multi-purpose building,\u00a0a library building and a canteen.\u00a0We\u00a0also\u00a0provided associated landscaping and site works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget $3.5 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunbury Primary School" + ], + "field_latitude": ["-37.597549"], + "field_latitude_longitude_value": ["-37.597549,144.726395"], + "field_latitude_value": ["-37.597549"], + "field_longitude": ["144.726395"], + "field_longitude_value": ["144.726395"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["01-1002"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["41 The Heights"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19933], + "status": [true], + "title": ["Sunbury Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["69e9c17f-2666-4098-8f47-499c0c091f92"] + }, + "sort": ["Sunbury Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20439:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunbury-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school, including building an administration wing, refurbishing buildings and landscaping the school site. We are also creating new outdoor sports courts and play areas.", + "\u200bWe updated\u00a0the outdoor sporting facilities at the school.\u00a0 \u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $10.497 million.", + "In the 2015-16 State Budget, $12,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunbury West Primary School" + ], + "field_latitude": ["-37.577419281005859", "-37.57509"], + "field_latitude_longitude_value": [ + "-37.577419281005859,144.72607421875" + ], + "field_latitude_value": ["-37.577419281005859"], + "field_longitude": ["144.72607421875", "144.7139"], + "field_longitude_value": ["144.72607421875"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3429"], + "field_project_code": ["D1-01-5006", "01-5006"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2023", "Q3 2016"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["479-491 Elizabeth Drive"], + "field_suburb": ["Sunbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20439], + "status": [true], + "title": ["Sunbury West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["03670b13-0be8-494d-8fa5-22c9264597a1"] + }, + "sort": ["Sunbury West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21343:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sundowner-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe expanded the kindergarten to increase the number of places. These works included expanding the indoor learning space, upgrading the children\u2019s bathroom and improvement works to the existing building (such as painting, floor finishes and lighting)." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u20132020 Children's Facilities Capital Program $140,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Sundowner Kindergarten." + ], + "field_latitude": ["-37.943867"], + "field_latitude_longitude_value": ["-37.943867,145.107635"], + "field_latitude_value": ["-37.943867"], + "field_longitude": ["145.107635"], + "field_longitude_value": ["145.107635"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3169"], + "field_project_code": ["15-897"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["19 Jacobs Dr"], + "field_suburb": ["Clarinda"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21343], + "status": [true], + "title": ["Sundowner Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b0e4f8a2-4057-4ce6-97c3-b81a9c11048c"] + }, + "sort": ["Sundowner Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20910:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunshine-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We've upgraded and modernised the school's north and west campuses. We rebuilt the west campus and delivered a competition-grade gymnasium, STEM facility and performing arts centre. We also delivered a library, learning environments and administration areas. This required demolishing existing facilities to make way for new buildings. We built a dedicated STEM facility\u00a0at the north campus. We're consulting with Brimbank City Council on the use of the school's former sites and the protection of heritage-nominated buildings. We're considering demolition of some buildings at the former Graham Street campus. This won't include any buildings that the Council have nominated for the Victorian Heritage Register." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project has received a total amount of $41.299 million in funding." + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Planned Maintenance Program", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunshine College." + ], + "field_latitude": ["-37.791065"], + "field_latitude_longitude_value": ["-37.791065,144.828812"], + "field_latitude_value": ["-37.791065"], + "field_longitude": ["144.828812"], + "field_longitude_value": ["144.828812"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Sunshine College \u2013 new West Campus"], + "field_postcode": ["3020"], + "field_project_code": ["01-8790"], + "field_project_title": [ + "Upgrade and Modernisation, Planned Maintenance Program, School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Graham St"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20910], + "status": [true], + "title": ["Sunshine College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["03dc46e1-9b5a-4983-9e22-936fc838786f"] + }, + "sort": ["Sunshine College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36780:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunshine-harvester-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $189,675" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunshine Harvester Primary School" + ], + "field_latitude": ["-37.782934"], + "field_latitude_longitude_value": ["-37.782934,144.845687"], + "field_latitude_value": ["-37.782934"], + "field_longitude": ["144.845687"], + "field_longitude_value": ["144.845687"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["01-5526"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["132 Hertford Road"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36780], + "status": [true], + "title": ["Sunshine Harvester Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["90f0142f-1e00-423f-83c1-af9c0f4b5a12"] + }, + "sort": ["Sunshine Harvester Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20338:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunshine-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space. It includes water and rock features, as well as paving." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunshine Heights Primary School" + ], + "field_latitude": ["-37.79204"], + "field_latitude_longitude_value": ["-37.79204,144.817352"], + "field_latitude_value": ["-37.79204"], + "field_longitude": ["144.817352"], + "field_longitude_value": ["144.817352"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["01-4744"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["1-19 Mailey Street"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20338], + "status": [true], + "title": ["Sunshine Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["40517ab6-1baf-4370-a499-bacc3c2d9983"] + }, + "sort": ["Sunshine Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34886:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunshine-north-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-07T16:14:35+10:00"], + "field_about_project_processed": [ + "We are building a 2-room modular kindergarten in partnership with Brimbank City Council. It will provide 66 kindergarten places for the local community. It will be used while the council develops the Dempster Park Children\u2019s and Community Centre. This will replace the Sunshine North Kindergarten and Phoenix Street Children\u2019s Centre.\u00a0The kindergarten will include an outdoor play space, and one maternal and child health consulting room." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the State Government and Brimbank City Council. The Victorian Government has provided $13.35 million in funding to support 6 projects that will deliver 448 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build at Sunshine North Kindergarten" + ], + "field_latitude": ["-37.7758575"], + "field_latitude_longitude_value": ["-37.7758575,144.8383055"], + "field_latitude_value": ["-37.7758575"], + "field_longitude": ["144.8383055"], + "field_longitude_value": ["144.8383055"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["15-SNK"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kinder" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["80 Phoenix Street"], + "field_suburb": ["Sunshine North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34886], + "status": [true], + "title": ["Sunshine North Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["89292c60-3112-4f9d-abb7-c4cacd44ecfc"] + }, + "sort": ["Sunshine North Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20339:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunshine-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded and modernised facilities at the school, including refurbishing\u00a0classrooms and facilities that were in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $300,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunshine North Primary School." + ], + "field_latitude": ["-37.771500"], + "field_latitude_longitude_value": ["-37.771500,144.837555"], + "field_latitude_value": ["-37.771500"], + "field_longitude": ["144.837555"], + "field_longitude_value": ["144.837555"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["01-4745"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["65-71 Suffolk Rd"], + "field_suburb": ["Sunshine North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20339], + "status": [true], + "title": ["Sunshine North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["63768025-9f7f-4ab1-a461-a6ce01d2a296"] + }, + "sort": ["Sunshine North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20167:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunshine-primary-school"], + "changed": ["2023-12-05T10:22:26+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are significantly upgrading the school, including modernising Block A." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $11.156 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunshine Primary School" + ], + "field_latitude": ["-37.788726806640625"], + "field_latitude_longitude_value": [ + "-37.788726806640625,144.8355712890625" + ], + "field_latitude_value": ["-37.788726806640625"], + "field_longitude": ["144.8355712890625"], + "field_longitude_value": ["144.8355712890625"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the\u00a0 early learning and childcare centre \u00a0we're building next to Sunshine Primary School." + ], + "field_postcode": ["3020"], + "field_project_code": ["01-3113"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["Cnr Hampshire & Derby Rd"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20167], + "status": [true], + "title": ["Sunshine Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1ec45a2f-4880-4e7e-bd42-feff3fc93b1a"] + }, + "sort": ["Sunshine Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/30557:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/sunshine-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-02-23T12:52:34+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new early learning and childcare centre next to Sunshine Primary School in the City of Brimbank.The Victorian Government-owned centre will offer childcare and Three- and Four-Year-Old Kindergarten programs, with space for up to 130 local children each day.Between 2030 and 2032 Four-Year-Old Kindergarten will transition to Pre-Prep in the City of Brimbank and funded kindergarten hours will double from 15 to 30 hours a week.The centre will have outdoor play areas, a Maternal and Child Health consulting room, and a carpark. It will also have a room for community meetings and playgroup.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.\u00a0Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 Early Learning Centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Sunshine Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-37.790881"], + "field_latitude_longitude_value": ["-37.790881,144.831101"], + "field_latitude_value": ["-37.790881"], + "field_longitude": ["144.831101"], + "field_longitude_value": ["144.831101"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["01-3113-ELC"], + "field_project_title": [ + "New Early Learning Centre - one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Design"], + "field_street_address": ["30 Leith Avenue"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [30557], + "status": [true], + "title": [ + "Sunshine Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["70270aec-f192-4943-be0d-46401f166ffe"] + }, + "sort": [ + "Sunshine Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20550:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sunshine-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building on the upgrades completed in 2019. This includes new permanent buildings for senior and junior students, as well as upgrades to the relocatable buildings and grounds. This school is benefitting from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million.", + "We have refurbished and extended the\u00a0administration block, which\u00a0includes new staff and student amenities with an enclosed link to the refurbished library.\u00a0 We have\u00a0refitted\u00a0the central and south classroom blocks, and have\u00a0created a new flexible activity space and revised entrance for the art block\u200b. We have\u00a0upgraded the canteen and have\u00a0expanded the multipurpose room to provide flexible home crafts spaces.\u00a0 The wellbeing block has\u00a0also been refurbished, with new toilet and laundry facilities and improved student support services.\u00a0\u200b Students, staff and parents now\u00a0have better access via an improved connected network of covered walkways and bus parking cover.\u200b", + "We built a kitchen and sensory garden with a cafe. The kitchen and garden has\u00a0a curriculum focus for secondary students, with produce from the garden used in cooking classes." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10 million.", + "In the 2016\u201317 State Budget, $2.615 million was allocated to the school.", + "In 2018, $157,800 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sunshine Special Developmental School" + ], + "field_latitude": ["-37.788726806640625", "-37.803020"], + "field_latitude_longitude_value": [ + "-37.788726806640625,144.8355712890625" + ], + "field_latitude_value": ["-37.788726806640625"], + "field_longitude": ["144.8355712890625", "144.819641"], + "field_longitude_value": ["144.8355712890625"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3020"], + "field_project_code": ["D2-01-5267", "01-5267", "D1-01-5267"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2019", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q1 2018", "Q1 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Ivory Ct"], + "field_suburb": ["Sunshine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20550], + "status": [true], + "title": ["Sunshine Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3d16493c-41a4-4b30-a499-c744eeca245e"] + }, + "sort": ["Sunshine Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34233:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/surf-coast-shire-council"], + "changed": ["2023-08-09T14:42:56+10:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Surf Coast Shire Council plan to expand or upgrade kindergartens in Anglesea. This will create more kindergarten places for local 3 and 4-year-olds. The planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $110,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Surf Coast Shire Council" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3230"], + "field_project_code": ["15-SCSC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_suburb": ["Anglesea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34233], + "status": [true], + "title": ["Surf Coast Shire Council"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["1fa6d231-918e-4283-bfc1-74bdebb2ae5b"] + }, + "sort": ["Surf Coast Shire Council"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20584:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/surfside-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded 10 general purpose classrooms and demolished dated joinery and acoustic doors to allow adjacent classrooms to interact and form a more collaborative learning environment. In addition, refurbishment works were carried out to the library, corridor and student toilets.", + "We built\u00a0a sensory play space at Surfside Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $1.3 million was allocated to the school.", + "In 2019, $186,970 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Surfside Primary School" + ], + "field_latitude": ["-38.261326", "-38.26036"], + "field_latitude_longitude_value": ["-38.261326,144.541718"], + "field_latitude_value": ["-38.261326"], + "field_longitude": ["144.541718", "144.54274"], + "field_longitude_value": ["144.541718"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3226"], + "field_project_code": ["01-5354", "D1-01-5354"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2020", "Q2 2021"], + "field_start_date": ["Q2 2018", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["31-65 John Dory Dr"], + "field_suburb": ["Ocean Grove"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20584], + "status": [true], + "title": ["Surfside Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c06c237e-b285-4f80-8182-5e7cbb3480e0"] + }, + "sort": ["Surfside Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28767:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/surrey-hills-baptist-childrens-centre-inc"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T14:11:14+11:00"], + "field_about_project_processed": [ + "We are renovating the centre and its outdoor area to create extra kindergarten places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2022\u201323 Building Blocks Capacity Grant stream, $278,922 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Mount Waverley Kindergarten." + ], + "field_latitude": ["-37.83145515"], + "field_latitude_longitude_value": ["-37.83145515,145.112031"], + "field_latitude_value": ["-37.83145515"], + "field_longitude": ["145.112031"], + "field_longitude_value": ["145.112031"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3127"], + "field_project_code": ["elc-shbcci"], + "field_project_title": ["Building Blocks Capacity Grant- Expansion"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["277-281 Elgar Rd"], + "field_suburb": ["Surrey Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28767], + "status": [true], + "title": ["Surrey Hills Baptist Children's Centre Inc"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["6e4f31a7-ae64-4993-bc03-414af3610478"] + }, + "sort": ["Surrey Hills Baptist Children's Centre Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20131:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/surrey-hills-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the carpet in multiple learning areas across the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $262,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Surrey Hills Primary School." + ], + "field_latitude": ["-37.8252625"], + "field_latitude_longitude_value": ["-37.8252625,145.100949"], + "field_latitude_value": ["-37.8252625"], + "field_longitude": ["145.100949"], + "field_longitude_value": ["145.100949"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3127"], + "field_project_code": ["01-2778"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Beatrice Av"], + "field_suburb": ["Surrey Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20131], + "status": [true], + "title": ["Surrey Hills Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ed107efa-7d8b-4970-b839-169bca2ebfef"] + }, + "sort": ["Surrey Hills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33242:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sutton-avenue-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-06-06T15:12:51+10:00"], + "field_about_project_processed": [ + "We built a kindergarten at the site of the former Eastona Park Primary School in Altona North. The 2-room modular building provides 66 approved kindergarten places for local families.Facilities include:a kitchena laundryan office/administration areaan outdoor learning space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project is part of the Building Blocks Partnership between the State Government and Hobsons Bay City Council. The Victorian Government has provided $9.95 million in funding to support 5 projects that will deliver more than 370 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build of Sutton Avenue Kindergarten" + ], + "field_latitude": ["-37.83642352"], + "field_latitude_longitude_value": ["-37.83642352,144.858826"], + "field_latitude_value": ["-37.83642352"], + "field_longitude": ["144.858826"], + "field_longitude_value": ["144.858826"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3025"], + "field_project_code": ["15-SAK-ELC"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Modular Kindergarten" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["16 Sutton Avenue"], + "field_suburb": ["Altona North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33242], + "status": [true], + "title": ["Sutton Avenue Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8d7c5016-915c-41ff-aeac-68180d7d0467"] + }, + "sort": ["Sutton Avenue Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21386:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swan-hill-north-kindergarten"], + "changed": ["2023-07-25T15:07:36+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Swan Hill North Primary School. The centre offers high quality 3 and 4-year-old kindergarten and playgroup programs.\u00a0Having a co-located site may help children make a smooth transition from pre-school to primary school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Funding was allocated in Round 1 of the 2021\u201322 Building Blocks Capacity Grant stream" + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Swan Hill North Kindergarten" + ], + "field_latitude": ["-35.362113952636719"], + "field_latitude_longitude_value": [ + "-35.362113952636719,143.52342224121094" + ], + "field_latitude_value": ["-35.362113952636719"], + "field_longitude": ["143.52342224121094"], + "field_longitude_value": ["143.52342224121094"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3585"], + "field_project_code": ["15-SHN"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kindergarten" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["118 Chapman St"], + "field_suburb": ["Swan Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21386], + "status": [true], + "title": ["Swan Hill North Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3f9a60bd-9174-48cc-889e-a034a8b022a6"] + }, + "sort": ["Swan Hill North Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33026:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swan-hill-north-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Swan Hill North Primary School" + ], + "field_latitude": ["-35.331787"], + "field_latitude_longitude_value": ["-35.331787,143.546066"], + "field_latitude_value": ["-35.331787"], + "field_longitude": ["143.546066"], + "field_longitude_value": ["143.546066"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3585"], + "field_project_code": ["01-4743"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["118 Chapman Street"], + "field_suburb": ["Swan Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33026], + "status": [true], + "title": ["Swan Hill North Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["9f37fa52-81ac-4a36-9446-6bdab8901a18"] + }, + "sort": ["Swan Hill North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19951:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swan-hill-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an inclusive playground. It includes new play equipment and rubber soft fall surfacing.", + "We built\u00a0a staff resource centre, refurbished\u00a0the administration building and\u00a0conducted maintenance works at the school. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In the 2017\u201318 State Budget, $502,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Swan Hill Primary School." + ], + "field_latitude": ["-35.346424", "-35.347050"], + "field_latitude_longitude_value": ["-35.346424,143.5432978"], + "field_latitude_value": ["-35.346424"], + "field_longitude": ["143.5432978", "143.543182"], + "field_longitude_value": ["143.5432978"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3585"], + "field_project_code": ["D1-01-1142", "01-1142"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q2 2019"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["123 Gray St"], + "field_suburb": ["Swan Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19951], + "status": [true], + "title": ["Swan Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fc2e5080-cdd4-4848-93aa-ca682a89f42e"] + }, + "sort": ["Swan Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20551:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swan-hill-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will significantly upgrade the main classroom building.", + "We built an outdoor play facility for students. The area now has covered outdoor synthetic multi-sport courts.", + "We developed the middle-years yard into an engaging, inclusive and physically challenging play space for students. Additionally, we allocated\u00a0a section of the space for\u00a0a calming sensory garden environment. \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $6.348 million.", + "In the 2020\u201321 State Budget, the school received $1.645 million.", + "In 2016, $200,000 was allocated to the school as part of Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Swan Hill Specialist School" + ], + "field_latitude": ["-35.349243", "-35.362113952636719", "-35.34923"], + "field_latitude_longitude_value": ["-35.349243,143.54509"], + "field_latitude_value": ["-35.349243"], + "field_longitude": ["143.54509", "143.52342224121094", "143.54466"], + "field_longitude_value": ["143.54509"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3585"], + "field_project_code": ["D2-01-5268", "D1-01-5268", "01-5268"], + "field_project_title": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q3 2023", "Q4 2017"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["27-33 Yana St"], + "field_suburb": ["Swan Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20551], + "status": [true], + "title": ["Swan Hill Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["38d70c39-feec-4214-9c7b-ce1c98ba683a"] + }, + "sort": ["Swan Hill Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22666:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swanston-street-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are updating Swanston Street Children's Centre with new carpet and painting. We are also going to improve ventilation by repairing the sash windows." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Swanston Street Children's Centre" + ], + "field_latitude": ["-37.79623633"], + "field_latitude_longitude_value": ["-37.79623633,144.9648999"], + "field_latitude_value": ["-37.79623633"], + "field_longitude": ["144.9648999"], + "field_longitude_value": ["144.9648999"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3053"], + "field_project_code": ["15-839"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["856 Swanston St"], + "field_suburb": ["Carlton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22666], + "status": [true], + "title": ["Swanston Street Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9ce87171-f4e6-407c-a7ce-36a891d55bf6"] + }, + "sort": ["Swanston Street Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21316:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swinburne-avenue-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Macedon Ranges City Council rebuilt Swinburne Avenue Kindergarten's outdoor areas, creating spaces that support independence for all children.\u00a0 \u200b", + "In partnership with Macedon Ranges Shire Council, we upgraded Swinburne Avenue Children's Centre. The refurbishment increased indoor space, provided new children amenities, created a shared office space and introduced a meeting room that families and early childhood services can use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316 $120,000 was allocated to the kindergarten.", + "In 2019\u201320, this project was alloated $500,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": [ + "Early Learning Facility Upgrade", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Swinburne Avenue Childrens Centre" + ], + "field_latitude": ["-37.47643", "-37.47643"], + "field_latitude_longitude_value": ["-37.47643,144.58562"], + "field_latitude_value": ["-37.47643"], + "field_longitude": ["144.58562", "144.58562"], + "field_longitude_value": ["144.58562"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3437"], + "field_project_code": ["15-598", "D1-15-598"], + "field_project_title": [ + "Early Learning Facility Upgrade", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2021", "Q4 2020"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["8 Swinburne Av"], + "field_suburb": ["Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21316], + "status": [true], + "title": ["Swinburne Avenue Childrens Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8d9655f3-a3a4-49ab-b40e-fd35c739f715"] + }, + "sort": ["Swinburne Avenue Childrens Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21273:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swinburne-childrens-centre-croydon"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0Lilydale Community Childcare to\u00a0upgrade\u00a0the kindergarten, allowing it to offer more kinder\u00a0places for local children. The covered decking space was expanded to better suit indoor/outdoor children's programs. The upgrade\u00a0also included constructing new bathroom facilities and ambulant-friendly\u00a0ramps to the kindergarten outdoor space.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $117,750 has been allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Swinburne Children's Centre - Croydon." + ], + "field_latitude": ["-37.7967"], + "field_latitude_longitude_value": ["-37.7967,145.29943"], + "field_latitude_value": ["-37.7967"], + "field_longitude": ["145.29943"], + "field_longitude_value": ["145.29943"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["15-4311"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["22-24 View St"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21273], + "status": [true], + "title": ["Swinburne Children's Centre - Croydon"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c2950b4b-82c0-4215-b9c9-789bdf0e1196"] + }, + "sort": ["Swinburne Children's Centre - Croydon"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21450:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swinburne-childrens-centre-lilydale"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "This new kindergarten and community support centre was built in Yarra Ranges. The centre\u00a0gives\u00a0the Swinburne community to access a high quality learning environment for children taking their first steps in education. Community groups and families\u00a0also have access to a range of services aimed at supporting their health and general wellbeing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $575,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Swinburne Children's Centre - Lilydale." + ], + "field_latitude": ["-37.75589"], + "field_latitude_longitude_value": ["-37.75589,145.36002"], + "field_latitude_value": ["-37.75589"], + "field_longitude": ["145.36002"], + "field_longitude_value": ["145.36002"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3140"], + "field_project_code": ["ELC-SCC"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["435-437 Maroondah Hwy"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21450], + "status": [true], + "title": ["Swinburne Children's Centre - Lilydale"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c67071fe-b84c-4c2b-aa59-793aa82d1173"] + }, + "sort": ["Swinburne Children's Centre - Lilydale"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20752:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/swinburne-senior-secondary-college"], + "changed": ["2023-10-17T09:40:48+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a 2-court competition-grade gym for the school. This will replace the school's recreation centre at Fritsch Holzer Park. We are also upgrading the oval.Why was the site chosen for the project?The new 2-court competition-grade gym will be built at 120 Camberwell Road. This site, part of\u00a0Fritsch Holzer Park, is owned by the Department of Education and zoned as a campus of Swinburne Senior Secondary College. The site is roughly 2 km from the college's main campus on Burwood Road.\u00a0\u00a0The school already\u00a0uses the recreation centre at the site for PE classes.Will community groups have access to the new facilities?Yes, they\u00a0will benefit the students of Swinburne Senior Secondary College and the wider community. We will continue to update the community about the new facilities and how they will be used as the project progresses." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $11.503 million.\u00a0In 2022, the school was allocated\u00a0$3.226 million. The Commonwealth Government allocated an additional $8 million for the Fritsch Holzer Park redevelopment." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Swinburne Senior Secondary College." + ], + "field_latitude": ["-37.8282556"], + "field_latitude_longitude_value": ["-37.8282556,145.0528502"], + "field_latitude_value": ["-37.8282556"], + "field_longitude": ["145.0528502"], + "field_longitude_value": ["145.0528502"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3123"], + "field_project_code": ["01-7366"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["120 Camberwell Rd"], + "field_suburb": ["Hawthorn East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20752], + "status": [true], + "title": ["Swinburne Senior Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f717b58a-66fc-4008-b438-6f565fafaa35"] + }, + "sort": ["Swinburne Senior Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25388:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sydenham-hillside-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We will upgrade buildings and install new fencing across both campuses. We will resurface the oval and upgrade staff toilets at the Hillside campus. At the Sydenham campus, we will upgrade the soccer pitch with synthetic turf.", + "We are refurbishing toilets and showers in the Hillside campus gymnasium to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We are refurbishing the toilets in the administration building, and partially refurbishing the toilets in the gymnasium, to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $9.5 million", + "In the 2022-23 State Budget the project received $426,627 from the Minor Capital Works Fund.", + "In the 2022-23 State Budget the project received $478,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Sydenham - Hillside Primary School" + ], + "field_latitude": ["-37.702046", "-37.702046"], + "field_latitude_longitude_value": ["-37.702046,144.762327"], + "field_latitude_value": ["-37.702046"], + "field_longitude": ["144.762327", "144.762327"], + "field_longitude_value": ["144.762327"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3037"], + "field_project_code": ["D2-01-3559", "01-3559", "D1-01-3559"], + "field_project_title": [ + "Upgrade and Modernisation - Hillside and Sydenham Campuses", + "Minor Capital Works Fund - Hillside Campus", + "Minor Capital Works Fund - Sydenham Campus" + ], + "field_q_complete": ["Q2 2026", "Q4 2023", "Q2 2024"], + "field_start_date": ["Q2 2023", "Q2 2022", "Q2 2022"], + "field_status_name": ["Design", "Construction", "Design"], + "field_street_address": ["Wattle Valley Drive"], + "field_suburb": ["Sydenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25388], + "status": [true], + "title": ["Sydenham - Hillside Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ffc32462-eaf2-41fc-9d53-2cbeb693ba95"] + }, + "sort": ["Sydenham - Hillside Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20860:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/sydney-road-community-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school moved to a new leased site in 2023 that keeps it connected to its local community in Brunswick.\u00a0The new location is close to the previous site, ensuring there was minimal disruption during the move. We worked with the school to modifiy the new building to suit its approach to teaching and learning. The new site offers a more flexible learning environment, a building in better condition and the security of a lease that can run for up to 20 years. Why did Sydney Road Community School move? The school was not able to extend the lease on its previous site and spent 12 months working with the Department of Education and Training to find a new home for the school. The aim was to find a suitable new home that would keep the school connected to the local community while meeting the teaching and learning needs of students. What does the new school look like? The project team and architects worked with the school for months to plan what was needed to create a great new learning environment. The improvements to site included: refurbishing the hall (we\u00a0retained the front facade onto Glenlyon Street, provided a new access ramp, installed a mezzanine level inside the main hall area, added classrooms and upgraded facilities to suit a school environment) building the main reception at the front of the hall alongside the meeting rooms upgrading toilets and amenities transforming the main church hall into a library and shared space installing a 3-storey modular building behind the hall at the Merri Street end of the site retaining the established gum tree on the site, completing landscaping that includes fencing that climbing plants will grow across, and prioritising native planting in the landscape beds (we\u00a0used Australian indigenous plants as well as plants indigenous to the northern areas of Melbourne) creating a central outdoor learning and play space between the refurbished hall and modular classrooms integrating indoor and outdoor learning spaces, allowing the school to provide a diverse range of programs. Many options were modelled to achieve the best outcomes for Sydney Road Community School. Most important to the school was having their own site in the same local area. Modular building The modular building provides room for more students, while also maximising indoor and outdoor learning spaces. Students are able to get great education close to their homes. Sound mitigation The school\u2019s 2 music rooms are in the 3-storey modular building. One on the ground floor, and one on the first floor. There are also 2 classrooms on each level. The music rooms have been designed specifically to our Building Quality Standards Handbook (BQSH). The BQSH requires that classrooms next to music rooms can operate without interference. This means the music rooms will have sound insulation that prevents impact on neighbouring properties in Merri Street. Privacy As part of the landscaping design, chain-mesh fencing allows for climbing plants to grow across them. This is designed to provide privacy for both the school and the neighbouring properties. The VSBA will address any overlooking issues during the fit-out stage, including applying privacy film where needed to the windows at the rear of the modular building on Merri Street. Overshadowing Shadow studies show that there are no significant impacts to the residents of 1-3 Dods St apartment complex, on Merri Street or Chapel Street. The VSBA has made available the shadow studies to interested nearby residents which show the shadows from the new school building, hourly from 9am to 3pm on 22 September 2021. This is consistent with analysis that would otherwise be required under the local residential planning scheme. Community consultation In considering a new location for SRCS, the aim was to find a suitable home for the school that would keep it connected to the local community while meeting the teaching and learning needs of students. Through 2019-2021 the VSBA consulted extensively with the school community including the school\u2019s co-principals, leadership team, current and past council presidents, and departmental staff to ensure that upon choosing a new site, educational, cultural, technical and other specific student requirements could be factored into the design. The preparation of a new home for SCRS required a complex upgrade and modernisation project, on a small, leased site. The VSBA consulted experts for this type of building project, as well as technical and design specialists. This included services and acoustic engineers, a landscape architect, and an accessibility consultant. The VSBA identified the church site as a preferred location. Following consultation with the Merri-bek City Council (Council), and with support from the church the Victorian Government announced the school would move to 8 Glenlyon Road, Brunswick. With construction planned to commence in January 2021, we invited the school community to attend a face-to-face information session on Friday 3 December 2021, to hear about its exciting move to the new leased site in 2023.\u00a0 We also released designs for the school\u2019s new home online. Due to the challenges of COVID-19, we also recorded a virtual information session and shared the video link in a construction notification that was distributed on 15 December 2021 to the community. Unfortunately, it wasn\u2019t until much later that we learned this notice wasn\u2019t delivered to a number of addresses close to the new site. Due to unforeseen delays, construction did not go ahead in January as planned. A second construction notification was sent to the local community (including those residents closest to the new site), inviting them to attend an information session held on 7 April 2022. During this session, local residents discussed the new school site with the VSBA project team, the architects and the co-principals of Sydney Road Community School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $380,000 in planning funding. In the 2020\u201321 State Budget, the school received $3.42 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Sydney Road Community School" + ], + "field_latitude": ["-37.77181593780511"], + "field_latitude_longitude_value": [ + "-37.77181593780511,144.96232774661559" + ], + "field_latitude_value": ["-37.77181593780511"], + "field_longitude": ["144.96232774661559"], + "field_longitude_value": ["144.96232774661559"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "A new site for Sydney Road Community School" + ], + "field_postcode": ["3056"], + "field_project_code": ["01-8368"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["12-14 Glenlyon Road"], + "field_suburb": ["Brunswick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20860], + "status": [true], + "title": ["Sydney Road Community School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6ab46cff-e149-4813-8fd0-3c6e1a1c5883"] + }, + "sort": ["Sydney Road Community School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20406:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/syndal-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the school, including modernising Block A. We will demolish and rebuild a brand-new Block A. This new learning hub will include a administration wing, 6 general purpose classrooms and a library.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $4.426 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Syndal South Primary School." + ], + "field_latitude": ["-37.878383636474609"], + "field_latitude_longitude_value": [ + "-37.878383636474609,145.12844848632812" + ], + "field_latitude_value": ["-37.878383636474609"], + "field_longitude": ["145.12844848632812"], + "field_longitude_value": ["145.12844848632812"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3149"], + "field_project_code": ["01-4924"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["14 Montgomery Av"], + "field_suburb": ["Mount Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20406], + "status": [true], + "title": ["Syndal South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["14808a9d-13b5-4cff-b5ff-8851b7af9cad"] + }, + "sort": ["Syndal South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23320:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/szalmuk-family-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We upgraded the bathrooms in the kinder rooms for 4-year-olds and built a toilet block and disabled toilet for the Gan Gani room. We also completed the next stage in the garden design, including a ropes course and a climbing wall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021 Early Childhood Refurbishment and Minor Works grant, $500,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Szalmuk Family Early Learning Centre" + ], + "field_latitude": ["-37.87422184"], + "field_latitude_longitude_value": ["-37.87422184,145.0023711"], + "field_latitude_value": ["-37.87422184"], + "field_longitude": ["145.0023711"], + "field_longitude_value": ["145.0023711"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3183"], + "field_project_code": ["15-287"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Mayfield St"], + "field_suburb": ["St Kilda East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23320], + "status": [true], + "title": ["Szalmuk Family Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["72da692c-23f9-49cb-92d1-9e0f49b03ef7"] + }, + "sort": ["Szalmuk Family Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36768:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/talbot-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $299,741" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Talbot Primary School" + ], + "field_latitude": ["-37.16865"], + "field_latitude_longitude_value": ["-37.16865,143.703604"], + "field_latitude_value": ["-37.16865"], + "field_longitude": ["143.703604"], + "field_longitude_value": ["143.703604"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3371"], + "field_project_code": ["01-954"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["2 Rowe Street"], + "field_suburb": ["Talbot"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36768], + "status": [true], + "title": ["Talbot Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8d1bd54c-7ca5-41ba-81fc-3959783e6a55"] + }, + "sort": ["Talbot Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36657:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/talgarno-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $489,519 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Talgarno Primary School" + ], + "field_latitude": ["-36.065797"], + "field_latitude_longitude_value": ["-36.065797,147.159146"], + "field_latitude_value": ["-36.065797"], + "field_longitude": ["147.159146"], + "field_longitude_value": ["147.159146"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3691"], + "field_project_code": ["01-1954"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["14 Talgarno School Lane"], + "field_suburb": ["Talgarno"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36657], + "status": [true], + "title": ["Talgarno Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["52b8432a-046f-4363-b313-80d6513b2153"] + }, + "sort": ["Talgarno Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19982:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tallangatta-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will be upgrading this school to give students better learning opportunities.", + "We supported this bushfire-affected school by resurfacing hard-court areas, constructing an outdoor stairway, installing new basketball court fencing, conducting drainage works, reinstating entrance pathways and undertaking works on the main building and Block B." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $4.1 million", + "From the 2019\u201320 School Pride and Sports Fund the school received $251,000, and $632,000 from the Planned Maintenance Program." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tallangatta Primary School." + ], + "field_latitude": ["-36.2165412902832"], + "field_latitude_longitude_value": [ + "-36.2165412902832,147.1776123046875" + ], + "field_latitude_value": ["-36.2165412902832"], + "field_longitude": ["147.1776123046875"], + "field_longitude_value": ["147.1776123046875"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3700"], + "field_project_code": ["D1-01-1365", "01-1365"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2022"], + "field_start_date": ["Q2 2023", "Q3 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["1 Wonga Gr"], + "field_suburb": ["Tallangatta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19982], + "status": [true], + "title": ["Tallangatta Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2b117d91-3a57-4871-bc3c-8439d70ee80f"] + }, + "sort": ["Tallangatta Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20000:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tallarook-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished classrooms and facilities at the school. The works targeted facilities that needed it most, ensuring that students have access to a\u00a0modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $150,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tallarook Primary School." + ], + "field_latitude": ["-37.096741"], + "field_latitude_longitude_value": ["-37.096741,145.100525"], + "field_latitude_value": ["-37.096741"], + "field_longitude": ["145.100525"], + "field_longitude_value": ["145.100525"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3659"], + "field_project_code": ["01-1488"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["52 Main Rd"], + "field_suburb": ["Tallarook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20000], + "status": [true], + "title": ["Tallarook Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["93341c35-bf75-4443-808f-02c0d0e775b0"] + }, + "sort": ["Tallarook Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21209:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tally-ho-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The preschool completed a range of upgrades to their facilities, including the bathrooms, children's bag storage, the staff office and outdoor play space. They also created a new safe parent meeting space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $57,055 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Tally-Ho Preschool." + ], + "field_latitude": ["-37.86915"], + "field_latitude_longitude_value": ["-37.86915,145.16437"], + "field_latitude_value": ["-37.86915"], + "field_longitude": ["145.16437"], + "field_longitude_value": ["145.16437"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["15-1330"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["24 Martin Pl"], + "field_suburb": ["Glen Waverley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21209], + "status": [true], + "title": ["Tally-Ho Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8236601b-d0bf-4fc6-bd98-78bcbd429b04"] + }, + "sort": ["Tally-Ho Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22634:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tallygaroopna-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are renovating Tallygaroopna Children's Centre so it can offer funded kindergarten for three-year-olds. Upgrades will include an extra toilet and change table, and more windows to improve supervision." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $173,588 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Tallygaroopna Children's Centre" + ], + "field_latitude": ["-36.2389057"], + "field_latitude_longitude_value": ["-36.2389057,145.436604"], + "field_latitude_value": ["-36.2389057"], + "field_longitude": ["145.436604"], + "field_longitude_value": ["145.436604"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3634"], + "field_project_code": ["15-TALLYCC"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Planning"], + "field_street_address": ["33 Victoria St"], + "field_suburb": ["Tallygaroopna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22634], + "status": [true], + "title": ["Tallygaroopna Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b4ae370e-45ad-48df-b86c-ce5e2a09c4fe"] + }, + "sort": ["Tallygaroopna Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20137:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tanjil-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0the school upgrade their playground equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $65,120." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tanjil South Primary School." + ], + "field_latitude": ["-38.1189785"], + "field_latitude_longitude_value": ["-38.1189785,146.2523841"], + "field_latitude_value": ["-38.1189785"], + "field_longitude": ["146.2523841"], + "field_longitude_value": ["146.2523841"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["01-2840"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["253 Moe-Willow Grove Rd"], + "field_suburb": ["Tanjil South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20137], + "status": [true], + "title": ["Tanjil South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["82e4ce17-55fe-49fb-90e2-7b8f86d22886"] + }, + "sort": ["Tanjil South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20703:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/taradale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe upgraded and modernised\u00a0Taradale Primary School, including refurbishing\u00a0classrooms and facilities\u00a0in poor condition.\u00a0\u00a0", + "We helped\u00a0upgrade the school's\u00a0playground equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $281,000 was allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $62,120" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Taradale Primary School" + ], + "field_latitude": ["-37.1413", "-37.1410136"], + "field_latitude_longitude_value": ["-37.1413,144.35106"], + "field_latitude_value": ["-37.1413"], + "field_longitude": ["144.35106", "144.3506696"], + "field_longitude_value": ["144.35106"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3447"], + "field_project_code": ["01-614", "D1-01-614"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2019", "Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["98 High Street"], + "field_suburb": ["Taradale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20703], + "status": [true], + "title": ["Taradale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9374a2b7-a417-415b-88d6-65072beed979"] + }, + "sort": ["Taradale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19935:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tarnagulla-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the school, including modernising Block A and relocatable classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.862 million, with a further $112,000 in 2023." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tarnagulla Primary School." + ], + "field_latitude": ["-36.775455474853516"], + "field_latitude_longitude_value": [ + "-36.775455474853516,143.83244323730469" + ], + "field_latitude_value": ["-36.775455474853516"], + "field_longitude": ["143.83244323730469"], + "field_longitude_value": ["143.83244323730469"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3551"], + "field_project_code": ["01-1023"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["51 Stanley St"], + "field_suburb": ["Tarnagulla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19935], + "status": [true], + "title": ["Tarnagulla Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1e2fd2f1-34da-4a53-aa15-439cb574e649"] + }, + "sort": ["Tarnagulla Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20975:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tarneit-p-9-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school's first stage P-6 was\u00a0built from $10 million allocated in the 2011\u201312 State Budget. The senior part of the school for Years 7\u20139, the second and final $10 million stage of the school, has now been completed. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2011\u201312 State Budget, $10 million was allocated to this project. In the 2015\u201316 State Budget, an additional $10 million was allocated to this project." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tarneit P-9 College." + ], + "field_latitude": ["-37.837849"], + "field_latitude_longitude_value": ["-37.837849,144.6782176"], + "field_latitude_value": ["-37.837849"], + "field_longitude": ["144.6782176"], + "field_longitude_value": ["144.6782176"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-8914"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["21-23 Brinbrook St"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20975], + "status": [true], + "title": ["Tarneit P-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["99c183db-cd2e-4111-8cf2-e9be41905cb1"] + }, + "sort": ["Tarneit P-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34299:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tarneit-plains-primary-school-interim-name"], + "changed": ["2023-07-31T14:55:40+10:00"], + "created": ["2023-07-31T14:49:10+10:00"], + "field_about_project_processed": [ + "We are planning a school in the City of Melton to help the growing local population get a great education close to home." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2022\u201323 State Budget provided $236.7 million to acquire land for 15 future schools, including Tarneit Plains Primary School." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Tarneit Plains Primary School (interim name)" + ], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-5616"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_status_name": ["Planning"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34299], + "status": [true], + "title": ["Tarneit Plains Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b3eaf6c9-e3a1-4aec-99ba-760d0234d5c3"] + }, + "sort": ["Tarneit Plains Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20956:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tarneit-rise-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bTarneit Rise\u00a0Primary School (formerly Tarneit West Primary School interim name) is a\u00a0new P-6 school that opened in Term 1, 2018. It caters for\u00a0up to 475 students.\u200b It was a nominated finalist at\u00a0the 2018\u00a0Victorian School Design Awards in the 'Best School\u00a0Project - Above $5 million' category.\u00a0\u00a0\u200b", + "We are building an inclusive playground, including new play equipment, rubber soft fall and shade sails.", + "We helped the school construct a new playground.", + "\u200bThe school received\u00a0additional funding (Shared Facilities Fund) for\u00a0lighting for the school's netball courts, and for\u00a0a new synthetic soccer pitch that won't become water-logged or muddy during heavy rain.\u00a0 \u00a0 This has helped to meet the fast-growing demand for soccer and netball facilities in the Tarneit area.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $13 million was allocated to this project.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In the 2020 Minor Capital Works Fund the school was allocated $84,665.", + "As part of the Shared Facilities Fund, the school received a further $1.25 million in funding." + ], + "field_funding_type_name": [ + "New School", + "Inclusive Schools Fund", + "Minor Capital Works Fund", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the build of Tarneit Rise Primary School" + ], + "field_latitude": ["-37.83711", "-37.8361469", "-37.8361469"], + "field_latitude_longitude_value": ["-37.83711,144.66494"], + "field_latitude_value": ["-37.83711"], + "field_longitude": ["144.66494", "144.6657838", "144.6657838"], + "field_longitude_value": ["144.66494"], + "field_mappintype_name": [ + "New school", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": [ + "01-8881", + "D3-01-8881", + "D2-01-8881", + "D1-01-8881" + ], + "field_project_title": [ + "New School", + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund", + "Shared Facilities Fund" + ], + "field_q_complete": ["Q1 2018", "Q1 2024", "Q4 2021", "Q4 2019"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": [ + "Complete", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["51-71 Hummingbird Blvd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20956], + "status": [true], + "title": ["Tarneit Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f65cdba-7c10-4e17-b50d-db6f223d43ef"] + }, + "sort": ["Tarneit Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20946:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tarneit-senior-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building the final stage of the school, including a new classroom wing which will allow the school to offer places to an extra 300 local students.", + "The school first opened its doors for Term 1, 2012. The funding from the 2016\u201317 State Budget built\u00a0Stage 2 of the new school, which\u00a0provided the school with a library, extra classrooms, an administration building, a stadium, an auditorium, performing arts spaces, food technology rooms and a cafe.\u200b This expanded the capacity of the school to meet its growing enrolments. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.806 million.", + "In the 2016\u201317 State Budget, $11.6 million has been allocated to this project." + ], + "field_funding_type_name": [ + "New School", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tarneit Senior College." + ], + "field_latitude": ["-37.8332705", "-37.83327"], + "field_latitude_longitude_value": ["-37.8332705,144.6803617"], + "field_latitude_value": ["-37.8332705"], + "field_longitude": ["144.6803617", "144.68036"], + "field_longitude_value": ["144.6803617"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["D1-01-8854", "01-8854"], + "field_project_title": [ + "New School - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2024", "Q4 2018"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["861 Leakes Rd"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20946], + "status": [true], + "title": ["Tarneit Senior College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["48bc7645-39a0-4014-816e-565dbd1db0d0"] + }, + "sort": ["Tarneit Senior College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21258:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tarralla-kindergarten-association-incorporated"], + "changed": ["2023-07-25T12:47:10+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment. The space is now more inclusive for children of all abilities. The landscaping better reflects the surrounding natural area.\u00a0", + "We expanded the kindergarten in preparation for the roll-out of subsidised kindergarten for three-year-olds. This project will increase the kindergarten's capacity by creating an additional 33 place kindergarten room, expanding an existing room and creating much-needed storage. These works will also improve access to local and responsive early childhood services for vulnerable children and their families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $177,190 was allocated to this project.", + "In Round 2 of the 2020\u201321 Building Blocks Capacity Grants $900,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Building Blocks Capacity Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Tarralla Kindergarten Association Incorporated." + ], + "field_latitude": ["-37.812282562255859"], + "field_latitude_longitude_value": [ + "-37.812282562255859,145.25251770019531" + ], + "field_latitude_value": ["-37.812282562255859"], + "field_longitude": ["145.25251770019531"], + "field_longitude_value": ["145.25251770019531"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["D1-15-388", "15-388"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds", + "Building Blocks Capacity Grant - Expansion" + ], + "field_q_complete": ["Q2 2023", "Q1 2022"], + "field_start_date": ["Q3 2022", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["38 Gracedale Av"], + "field_suburb": ["Ringwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21258], + "status": [true], + "title": ["Tarralla Kindergarten Association Incorporated"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0be7a6a8-39ea-4165-9dcf-6a44889e7ad5"] + }, + "sort": ["Tarralla Kindergarten Association Incorporated"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20294:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tate-street-primary-school-geelong"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the student toilet block to improve amenity, cleanliness and hygiene.", + "We built\u00a0an\u00a0architect-designed modular building at\u00a0Tate Street Primary School Geelong to replace the classroom wing with new classrooms.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $106,447 from the Minor Capital Works Fund.", + "In the 2017\u201318 State Budget, $1,503,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tate Street Primary School Geelong" + ], + "field_latitude": ["-38.166053", "-38.16675"], + "field_latitude_longitude_value": ["-38.166053,144.379195"], + "field_latitude_value": ["-38.166053"], + "field_longitude": ["144.379195", "144.37824"], + "field_longitude_value": ["144.379195"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["D1-01-4398", "01-4398"], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q1 2023", "Q4 2018"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Tate St"], + "field_suburb": ["Geelong East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20294], + "status": [true], + "title": ["Tate Street Primary School Geelong"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["788c6b93-ca68-48ce-a637-0932d342dd86"] + }, + "sort": ["Tate Street Primary School Geelong"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19995:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tatura-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe delivered\u00a0a new architect-designed modular building to Tatura Primary School to replace Block A with new classrooms and administration facilities.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $2.54 million was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tatura Primary School" + ], + "field_latitude": ["-36.44466"], + "field_latitude_longitude_value": ["-36.44466,145.22967"], + "field_latitude_value": ["-36.44466"], + "field_longitude": ["145.22967"], + "field_longitude_value": ["145.22967"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3616"], + "field_project_code": ["01-1441"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["28-40 Albert Street"], + "field_suburb": ["Tatura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19995], + "status": [true], + "title": ["Tatura Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8834aa57-000d-4fc3-8055-f1b9f667d07e"] + }, + "sort": ["Tatura Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20090:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tawonga-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the staff and parent car park and complete driveway improvement works.", + "We\u00a0built an all-weather sensory environment for students, complete with seating, new accessible bubbler taps, outdoor musical instruments, play panel, water play and mural.", + "We redeveloped\u200b an unused indoor space into an inclusive zone that supports student re-engagement.\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $65,120.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund.", + "In 2016, $129,400 was allocated to the school as part of\u00a0 Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tawonga Primary School." + ], + "field_latitude": ["-36.6835778", "-36.68367", "-36.68367"], + "field_latitude_longitude_value": ["-36.6835778,147.1380335"], + "field_latitude_value": ["-36.6835778"], + "field_longitude": ["147.1380335", "147.13784", "147.13784"], + "field_longitude_value": ["147.1380335"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3697"], + "field_project_code": ["D2-01-2282", "D1-01-2282", "01-2282"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund \u2013 Round 5", + "Inclusive Schools Fund \u2013 Round 2" + ], + "field_q_complete": ["Q1 2022", "Q1 2021", "Q1 2018"], + "field_start_date": ["Q4 2020", "Q4 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["Kiewa Valley Hwy"], + "field_suburb": ["Tawonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20090], + "status": [true], + "title": ["Tawonga Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f58be068-ba99-41fa-ab27-f60ccbe211d1"] + }, + "sort": ["Tawonga Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21226:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/taylor-drive-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Hume City Council extended the preschhool to increase its licensed capacity to 33 children.\u00a0\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $33,825 has been allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Taylor Drive Preschool." + ], + "field_latitude": ["-37.68892"], + "field_latitude_longitude_value": ["-37.68892,144.88865"], + "field_latitude_value": ["-37.68892"], + "field_longitude": ["144.88865"], + "field_longitude_value": ["144.88865"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3043"], + "field_project_code": ["15-200"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["91 Taylor Dr"], + "field_suburb": ["Gladstone Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21226], + "status": [true], + "title": ["Taylor Drive Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8c712bd2-2950-4908-bf8e-15bf1e036eba"] + }, + "sort": ["Taylor Drive Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20547:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/taylors-lakes-primary-school"], + "changed": ["2023-08-10T16:56:51+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a competition-grade gym and upgrading the external netball court surfaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $7.526 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Taylors Lakes Primary School." + ], + "field_latitude": ["-37.69873046875"], + "field_latitude_longitude_value": [ + "-37.69873046875,144.78337097167969" + ], + "field_latitude_value": ["-37.69873046875"], + "field_longitude": ["144.78337097167969"], + "field_longitude_value": ["144.78337097167969"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3038"], + "field_project_code": ["01-5258"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["21-35 Chichester Drive"], + "field_suburb": ["Taylors Lakes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20547], + "status": [true], + "title": ["Taylors Lakes Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0b560696-8173-45f6-9787-d78c093e4684"] + }, + "sort": ["Taylors Lakes Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20909:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/taylors-lakes-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the sports facilities. This included: refurbishing the gym\u00a0 upgrading drainage and resurfacing\u00a0hard courts improving\u00a0fencing and landscaping around the futsal/soccer area next to the north oval.", + "We upgraded the gymnasium to a multipurpose hall.", + "We\u00a0built a multi-purpose space for teaching staff, specialists, students and their families to work together to create the best outcomes for students with special needs. The consultation space includes a timber ramp, concrete pavement and a gallery." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.82 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $364,165.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Taylors Lakes Secondary College." + ], + "field_latitude": ["-37.69873046875", "-37.7066787", "-37.70741"], + "field_latitude_longitude_value": [ + "-37.69873046875,144.78337097167969" + ], + "field_latitude_value": ["-37.69873046875"], + "field_longitude": ["144.78337097167969", "144.792563", "144.794402"], + "field_longitude_value": ["144.78337097167969"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3038"], + "field_project_code": ["D1-01-8787", "D2-01-8787", "01-8787"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2022", "Q3 2022", "Q1 2020"], + "field_start_date": ["Q4 2020", "Q4 2020", "Q4 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["1-39 Parmelia Dr"], + "field_suburb": ["Taylors Lakes"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20909], + "status": [true], + "title": ["Taylors Lakes Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8e46324b-efac-44d2-b245-a9b2159fdcf0"] + }, + "sort": ["Taylors Lakes Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20070:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/teesdale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school, including refurbishing\u00a0classrooms and facilities\u00a0in poor condition. Our work\u00a0targeted facilities that most\u00a0needed upgrading, ensuring that the school has\u00a0what it needs to\u00a0deliver\u00a0modern education and achieve\u00a0its\u00a0longer-term plans.", + "We upgraded the outdoor sports field to improve student play space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $300,000 was allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $93,125." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Teesdale Primary School." + ], + "field_latitude": ["-38.029575", "-38.0290058502713"], + "field_latitude_longitude_value": ["-38.029575,144.055023"], + "field_latitude_value": ["-38.029575"], + "field_longitude": ["144.055023", "144.056859599924"], + "field_longitude_value": ["144.055023"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3328"], + "field_project_code": ["01-2065", "D1-01-2065"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2020", "Q2 2022"], + "field_start_date": ["Q2 2018", "Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Main Rd"], + "field_suburb": ["Teesdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20070], + "status": [true], + "title": ["Teesdale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d4024e05-1d9c-4ef4-add4-a007dbce0c3c"] + }, + "sort": ["Teesdale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20930:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/templestowe-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to the school\u00a0to replace the Resource Centre. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures.\u00a0 The school is benefitting from the Permanent Modular School Buil\u200bdings Program.", + "We are refurbishing the student toilets in C Block to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $3,245,000.", + "In the 2022\u201323 State Budget the project received $355,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Templestowe College" + ], + "field_latitude": ["-37.76751", "-37.767428"], + "field_latitude_longitude_value": ["-37.76751,145.12163"], + "field_latitude_value": ["-37.76751"], + "field_longitude": ["145.12163", "145.122306"], + "field_longitude_value": ["145.12163"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3107"], + "field_project_code": ["01-8823", "D1-01-8823"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2019", "Q1 2024"], + "field_start_date": ["Q2 2018", "Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["7 Cypress Av"], + "field_suburb": ["Templestowe Lower"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20930], + "status": [true], + "title": ["Templestowe College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["92df0c08-dc62-4dc8-b4d2-7900e66b0d56"] + }, + "sort": ["Templestowe College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20437:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/templestowe-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and expanded the school, allowing it to enrol an extra 125 local students. This included: building\u00a0a\u00a0new state-of-the-art Science, Technology, Engineering, Arts and Mathematics (STEAM) facility refurbishing and upgrading the library and administration area and\u00a0the toilet block external landscaping works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.448 million in planning funding. In the 2020\u201321 State Budget, the school received at least $11.729 million from a pool of more than $85 million to expand seven schools in high-growth areas." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Templestowe Heights Primary School." + ], + "field_latitude": ["-37.7642936706543"], + "field_latitude_longitude_value": [ + "-37.7642936706543,145.11213684082031" + ], + "field_latitude_value": ["-37.7642936706543"], + "field_longitude": ["145.11213684082031"], + "field_longitude_value": ["145.11213684082031"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3107"], + "field_project_code": ["01-5004"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["276-300 High St"], + "field_suburb": ["Templestowe Lower"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20437], + "status": [true], + "title": ["Templestowe Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["864853ca-402a-4494-aa66-b1aae818c083"] + }, + "sort": ["Templestowe Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20487:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/templestowe-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor sensory area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Templestowe Park Primary School" + ], + "field_latitude": ["-37.7558"], + "field_latitude_longitude_value": ["-37.7558,145.14227"], + "field_latitude_value": ["-37.7558"], + "field_longitude": ["145.14227"], + "field_longitude_value": ["145.14227"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3106"], + "field_project_code": ["01-5129"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["399-409 Church Rd"], + "field_suburb": ["Templestowe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20487], + "status": [true], + "title": ["Templestowe Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e2d4a310-d891-4675-9e79-efecc8a27d6b"] + }, + "sort": ["Templestowe Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20518:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/templeton-primary-school"], + "changed": ["2023-08-07T11:38:43+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school.\u00a0We're building a new double-level learning and specialist building, partially refurbishing the administration area and completing connected landscaping.This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $9.189 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Templeton Primary School." + ], + "field_latitude": ["-37.859894850008"], + "field_latitude_longitude_value": [ + "-37.859894850008,145.227452699992" + ], + "field_latitude_value": ["-37.859894850008"], + "field_longitude": ["145.227452699992"], + "field_longitude_value": ["145.227452699992"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3152"], + "field_project_code": ["01-5196"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Crestdale Rd"], + "field_suburb": ["Wantirna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20518], + "status": [true], + "title": ["Templeton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4053c7e7-2e02-4c0c-99d7-247562201849"] + }, + "sort": ["Templeton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20211:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tempy-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded internal areas and installed irrigation at Tempy Primary School.\u00a0\u200b \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $65,000 has been allocated to the school." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tempy Primary School" + ], + "field_latitude": ["-35.34379"], + "field_latitude_longitude_value": ["-35.34379,142.42764"], + "field_latitude_value": ["-35.34379"], + "field_longitude": ["142.42764"], + "field_longitude_value": ["142.42764"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3489"], + "field_project_code": ["01-3654"], + "field_project_title": ["School Pride and Sports Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["13 Harrison Street"], + "field_suburb": ["Tempy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20211], + "status": [true], + "title": ["Tempy Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["78179d3a-5924-4c30-8d9a-6bf01256aa01"] + }, + "sort": ["Tempy Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20714:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/terang-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced an older building containing asbestos with a new architecturally-designed permanent modular building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $1.771 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Terang College." + ], + "field_latitude": ["-38.246282"], + "field_latitude_longitude_value": ["-38.246282,142.921395"], + "field_latitude_value": ["-38.246282"], + "field_longitude": ["142.921395"], + "field_longitude_value": ["142.921395"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3264"], + "field_project_code": ["01-6236"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q2 2020"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["45 Strong St"], + "field_suburb": ["Terang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20714], + "status": [true], + "title": ["Terang College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c6556cab-14e4-4e88-ab0d-fe354fe34d9c"] + }, + "sort": ["Terang College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20936:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/alpine-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a new school for outdoor education in Don Valley." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. Further funding of $6.5 million in the 2018\u201319 State Budget has been allocated to the school." + ], + "field_funding_type_name": ["New School Campus"], + "field_landing_page_summary": [ + "Learn more about the improvements at The Alpine School." + ], + "field_latitude": ["-37.027740"], + "field_latitude_longitude_value": ["-37.027740,147.283997"], + "field_latitude_value": ["-37.027740"], + "field_longitude": ["147.283997"], + "field_longitude_value": ["147.283997"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3898"], + "field_project_code": ["01-8837"], + "field_project_title": ["New School Campus - Haining Farm"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Great Alpine Rd"], + "field_suburb": ["Dinner Plain"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20936], + "status": [true], + "title": ["The Alpine School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9c89bbab-35ee-4f74-9089-9e93689e7b97"] + }, + "sort": ["The Alpine School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20094:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/basin-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0upgraded school facilities,\u00a0including: building new classrooms providing a\u00a0gymnasium with competition-grade\u200b basketball and netball court \u200bnew administration, reception and sick bay facilities upgrading The Basin Community House with new consulting suites, computer and art rooms, and kitchen facilities.\u00a0\u200b\u200b\u200b \u200b", + "We redeveloped areas of the existing garden/playground to create an active play and fitness trail and an inclusive playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $1.5 million has been allocated to the school. In the 2015\u201316 State Budget, $5.7 million was allocated to the school. The school also received $630,000 in School Pride and Sports Funding.", + "In 2019, $161,837 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at The Basin Primary School." + ], + "field_latitude": ["-37.85001", "-37.85001"], + "field_latitude_longitude_value": ["-37.85001,145.3089699"], + "field_latitude_value": ["-37.85001"], + "field_longitude": ["145.3089699", "145.30897"], + "field_longitude_value": ["145.3089699"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3154"], + "field_project_code": ["01-2329", "D1-01-2329"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2018", "Q4 2020"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Cnr Liverpool Road & Mountain Hwy"], + "field_suburb": ["The Basin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20094], + "status": [true], + "title": ["The Basin Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9c26fd72-2859-456f-97ca-ffdccd68baf2"] + }, + "sort": ["The Basin Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21430:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/eliston-family-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe supported\u00a0City of Casey to\u00a0build\u00a0The Eliston Family & Community Centre which\u00a0provides early education, maternal,\u00a0child health and\u00a0family services, supported playgroups, occasional care, community meeting spaces and counselling." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019-2020 Children's Facilities Capital Program $2,000,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at The Eliston Family & Community Centre" + ], + "field_latitude": ["-38.122695"], + "field_latitude_longitude_value": ["-38.122695,145.330440"], + "field_latitude_value": ["-38.122695"], + "field_longitude": ["145.330440"], + "field_longitude_value": ["145.330440"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["ELC-EICC"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["40S Eliston Ave"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21430], + "status": [true], + "title": ["The Eliston Family & Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c55a6d2b-3265-49d2-808f-4b9cf838b4a9"] + }, + "sort": ["The Eliston Family & Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20907:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/grange-p-12-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the college, as the first stage of the school's master plan.\u00a0 We refurbished facilities at the Deloraine (secondary) campus to provide a contemporary science and technology learning centre, a sports science academy and performing arts facilities, and built a new rugby pitch.", + "We created an outdoor sensory garden that can be accessed by students and local community groups. The area\u00a0includes turf mounds, plants and recycled timber bench seats along pathways." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $7 million was allocated to schools across the state for planning, including The Grange P\u201312 College. In the 2019\u201320 State Budget, the school received $9.5 million.", + "In 2018, $110,500 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at The Grange P-12 College" + ], + "field_latitude": ["-37.85686"], + "field_latitude_longitude_value": ["-37.85686,144.67416"], + "field_latitude_value": ["-37.85686"], + "field_longitude": ["144.67416"], + "field_longitude_value": ["144.67416"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-8783", "D1-01-8783"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2022", "Q4 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["30 Deloraine Dr"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20907], + "status": [true], + "title": ["The Grange P-12 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c883f3f6-7571-4d99-a4b6-09aeaef7746b"] + }, + "sort": ["The Grange P-12 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21366:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/the-herd-intergenerational-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe helped Uniting AgeWell refurbish their Mornington facility to create The Herd\u00a0Intergenerational Learning Centre. The centre houses a 66-place kindergarten alongside the\u00a0aged care facility, allowing young children and older residents to come together for activities such as art, music, lunch or storytelling. The children gain an extended family, and\u00a0learn about ageing and accepting people with disabilities. The aged-care residents benefit from the physical activity of playing with the children, while enjoying the spirit that children bring to their home environment.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $500,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at The Herd Intergenerational Learning Centre." + ], + "field_latitude": ["-38.21945106"], + "field_latitude_longitude_value": ["-38.21945106,145.0456859"], + "field_latitude_value": ["-38.21945106"], + "field_longitude": ["145.0456859"], + "field_longitude_value": ["145.0456859"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3931"], + "field_project_code": ["15-ILC"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["67 Tanti Av"], + "field_suburb": ["Mornington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21366], + "status": [true], + "title": ["The Herd Intergenerational Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["950a13f0-6d21-4f2c-b9f0-baa7cc2161a2"] + }, + "sort": ["The Herd Intergenerational Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21412:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/korayn-birralee-family-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0Greater Geelong City Council build\u00a0a new integrated children\u2019s centre providing kindergarten places in northern Geelong.\u00a0 This\u00a0centre was previously known as\u00a0Purnell Road Child & Family Centre\u00a0while\u00a0in planning.\u00a0 The centre provides kindergarten, long day care, maternal and child health, consulting rooms, specialist family support and a toy library, in a location that complements other local services and facilitates the transition to school. Existing early childhood facilities in Corio were\u00a0consolidated at the centre, addressing ageing infrastructure.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $1,600,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at The Korayn Birralee Family Centre." + ], + "field_latitude": ["-38.073100"], + "field_latitude_longitude_value": ["-38.073100,144.351250"], + "field_latitude_value": ["-38.073100"], + "field_longitude": ["144.351250"], + "field_longitude_value": ["144.351250"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3214"], + "field_project_code": ["ELC-26"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["138-152 Purnell Rd"], + "field_suburb": ["Corio"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21412], + "status": [true], + "title": ["The Korayn Birralee Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["296a9533-8507-473a-99fb-a2429f80ddac"] + }, + "sort": ["The Korayn Birralee Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20941:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/lakes-south-morang-p-9-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school has expanded from a P\u20139 school to a P\u201312 college. We have provided new furniture, lockers and equipment for four science and laboratory spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2019\u201320 School Pride and Sports Fund the school received $200,000." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at The Lakes South Morang College." + ], + "field_latitude": ["-37.6350185"], + "field_latitude_longitude_value": ["-37.6350185,145.075458"], + "field_latitude_value": ["-37.6350185"], + "field_longitude": ["145.075458"], + "field_longitude_value": ["145.075458"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3752"], + "field_project_code": ["01-8846"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["80 Jardier Tce"], + "field_suburb": ["South Morang"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20941], + "status": [true], + "title": ["The Lakes South Morang College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5ff9f9ec-498a-483d-a1f7-7a7a02862546"] + }, + "sort": ["The Lakes South Morang College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25396:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/matron-swinton-child-care-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We refurbished the centre to make it safer and more appealing to local families. We added shade cover to the indoor/outdoor learning space so that the kids can use it year-round. We also replaced the flooring, the bathroom benches and the art sinks." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Grant, $152,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at The Matron Swinton Child Care Centre" + ], + "field_latitude": ["-38.3697005207945"], + "field_latitude_longitude_value": [ + "-38.3697005207945,142.465523261428" + ], + "field_latitude_value": ["-38.3697005207945"], + "field_longitude": ["142.465523261428"], + "field_longitude_value": ["142.465523261428"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["15-5369"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["13-15 Lipook Ct"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25396], + "status": [true], + "title": ["The Matron Swinton Child Care Centre"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["46f9c346-740b-40f6-820b-1d79a278bebe"] + }, + "sort": ["The Matron Swinton Child Care Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20505:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/patch-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade the main classroom wing.", + "We are upgrading the ecosystem engineering and landscaping to improve storm water flow management." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $6.483 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $253,625" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at The Patch Primary School" + ], + "field_latitude": ["-37.892418", "-37.8926452"], + "field_latitude_longitude_value": ["-37.892418,145.392841"], + "field_latitude_value": ["-37.892418"], + "field_longitude": ["145.392841", "145.3932082"], + "field_longitude_value": ["145.392841"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3792"], + "field_project_code": ["D1-01-5173", "01-5173"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2025", "Q2 2026"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Design"], + "field_street_address": ["53 Kallista-Emerald Road"], + "field_suburb": ["The Patch"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20505], + "status": [true], + "title": ["The Patch Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2e686aae-4df1-4e6d-a68a-bce71eaad343"] + }, + "sort": ["The Patch Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22617:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/range-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor areas to provide safer playing areas and to restore garden beds and vegetation." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u20132021 Building Blocks Improvement Grant, $265,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at The Range Children's Centre" + ], + "field_latitude": ["-37.85731884"], + "field_latitude_longitude_value": ["-37.85731884,144.8809523"], + "field_latitude_value": ["-37.85731884"], + "field_longitude": ["144.8809523"], + "field_longitude_value": ["144.8809523"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3016"], + "field_project_code": ["15-1415"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["87 Kororoit Creek Rd"], + "field_suburb": ["Williamstown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22617], + "status": [true], + "title": ["The Range Children's Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e4f7de30-b0a1-48cc-aa3a-e3f428bd3e64"] + }, + "sort": ["The Range Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34242:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/sale-integrated-centre-children-and-families-interim-name" + ], + "changed": ["2023-08-17T21:24:11+10:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Wellington Shire Council plan a new early learning centre in Sale. This will create more kindergarten places for local 3 and 4-year-olds and may include other community health and wellbeing spaces. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for The Sale Integrated Centre for Children and Families (interim name)" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["15-SICCF"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["Gibsons Road"], + "field_suburb": ["Sale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34242], + "status": [true], + "title": [ + "The Sale Integrated Centre for Children and Families (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["0e575361-93da-4b25-b514-25c55e0c56c7"] + }, + "sort": [ + "The Sale Integrated Centre for Children and Families (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24596:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ymca-ballarat"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping the YMCA of Ballarat\u00a0plan for the future. They\u2019ll assess their 84 existing services to find out the best place for a new centre. This will also help them to know where they could expand their services in the future. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Grant - Planning stream, $97,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning project of the YMCA of Ballarat" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-YBAL"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24596], + "status": [true], + "title": ["The YMCA of Ballarat"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4ed077df-72be-4106-b685-faba96f014d2"] + }, + "sort": ["The YMCA of Ballarat"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34293:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/thewlis-integrated-child-and-family-centre-interim-name" + ], + "changed": ["2023-07-31T09:49:17+10:00"], + "created": ["2023-07-31T09:43:45+10:00"], + "field_about_project_processed": [ + "We are partnering with Cardinia Shire Council to build an early learning centre. It will have 4 kindergarten rooms and additional spaces for maternal and child health services, playgroups and community programs. This will allow the centre to offer 132 kinder places to local 3 and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2023 Building Blocks Capacity Building Grants, $9,000,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of Thewlis Integrated Child and Family Centre (interim name)" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3810"], + "field_project_code": ["15-TICFC"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q2 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Planning"], + "field_suburb": ["Pakenham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34293], + "status": [true], + "title": [ + "Thewlis Integrated Child and Family Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["1b0b43e3-faca-478c-b71f-752a42c16584"] + }, + "sort": ["Thewlis Integrated Child and Family Centre (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21073:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thomas-carr-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are helping the school build a 2-storey VCE Centre, incorporating general learning areas and other associated spaces. The works will also refurbish another building to create a science, technology, engineering, arts and maths (STEAM) hub." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $1 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Thomas Carr College." + ], + "field_latitude": ["-37.8477206"], + "field_latitude_longitude_value": ["-37.8477206,144.7022046"], + "field_latitude_value": ["-37.8477206"], + "field_longitude": ["144.7022046"], + "field_longitude_value": ["144.7022046"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["02-1962"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["35 Thomas Carr Dr"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21073], + "status": [true], + "title": ["Thomas Carr College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0b3a8e11-1f16-48dd-a257-c825fdeda0df"] + }, + "sort": ["Thomas Carr College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20581:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thomas-chirnside-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the senior playground.", + "We carried out toilet repairs and upgraded the playground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $66,120", + "In the 2019-20 School Pride and Sports Fund the school was allocated $317,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Thomas Chirnside Primary School" + ], + "field_latitude": ["-37.9034399", "-37.903205"], + "field_latitude_longitude_value": ["-37.9034399,144.6372983"], + "field_latitude_value": ["-37.9034399"], + "field_longitude": ["144.6372983", "144.637883"], + "field_longitude_value": ["144.6372983"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-5343", "D1-01-5343"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2022", "Q2 2022"], + "field_start_date": ["Q4 2020", "Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["85 Walls Road"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20581], + "status": [true], + "title": ["Thomas Chirnside Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["75c9454e-c8db-485d-ae1d-7f6d7e62418b"] + }, + "sort": ["Thomas Chirnside Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20369:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thomastown-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe delivered\u00a0a new architect-designed modular building to the\u00a0school to replace the classroom block with new classrooms, a library and an art and craft room.\u200b\u00a0 \u200b Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs.\u00a0They are sustainable and innovatively designed, with a comparable lifespan to bricks and mortar structures. The project at the school is part of the\u00a0Permanent Modular School Buildings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2,100,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Thomastown East Primary School." + ], + "field_latitude": ["-37.68012"], + "field_latitude_longitude_value": ["-37.68012,145.0249"], + "field_latitude_value": ["-37.68012"], + "field_longitude": ["145.0249"], + "field_longitude_value": ["145.0249"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3074"], + "field_project_code": ["01-4827"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["82 Cedar St"], + "field_suburb": ["Thomastown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20369], + "status": [true], + "title": ["Thomastown East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["66ea2968-0a0d-40d0-9cd8-7173e5c1dec8"] + }, + "sort": ["Thomastown East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36661:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thomastown-meadows-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are replacing roof sheeting and guttering on the multi-purpose room. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $493,324 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Thomastown Meadows Primary School" + ], + "field_latitude": ["-37.682589"], + "field_latitude_longitude_value": ["-37.682589,144.993096"], + "field_latitude_value": ["-37.682589"], + "field_longitude": ["144.993096"], + "field_longitude_value": ["144.993096"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3074"], + "field_project_code": ["01-5134"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["13-21 Diplomat Drive"], + "field_suburb": ["Thomastown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36661], + "status": [true], + "title": ["Thomastown Meadows Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["98c25c3e-4026-4e98-8caf-930f89654b51"] + }, + "sort": ["Thomastown Meadows Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21456:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thomastown-primary-school-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new kindergarten at Thomastown Primary School. The creation of 2 kindergarten rooms gives\u00a0children access to high quality learning environments from their first footsteps into education to the end of primary school. The kindergarten's consultation room will provide local families with a wide range of services including maternal and child health." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Thomastown Primary School Kindergarten." + ], + "field_latitude": ["-37.68181"], + "field_latitude_longitude_value": ["-37.68181,145.01196"], + "field_latitude_value": ["-37.68181"], + "field_longitude": ["145.01196"], + "field_longitude_value": ["145.01196"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3074"], + "field_project_code": ["ELC-TTPSK"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Spring St"], + "field_suburb": ["Thomastown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21456], + "status": [true], + "title": ["Thomastown Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["06b506aa-ed59-469e-bf33-408117ef4f30"] + }, + "sort": ["Thomastown Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33010:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thompsons-west-primary-school-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are building a new primary school in Clyde North. It will open in 2025 with places for up to 650 students. This will help the growing local population get a great education close to home.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Thompsons West Primary School (interim name)" + ], + "field_latitude": ["-38.102214"], + "field_latitude_longitude_value": ["-38.102214,145.337831"], + "field_latitude_value": ["-38.102214"], + "field_longitude": ["145.337831"], + "field_longitude_value": ["145.337831"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-TWPS"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["75 Welsummer Drive"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33010], + "status": [true], + "title": ["Thompsons West Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["22a9c0a8-61aa-4bc7-86be-00dd754a3bf6"] + }, + "sort": ["Thompsons West Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20912:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thornbury-high-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We continued works on upgrades delivered to the students in 2020. We built a STEAM (science, technology, engineering, arts and maths) centre.", + "We upgraded and modernised the school to improve functionality and\u00a0bring facilities into line with contemporary teaching and learning needs. We built a sports hall and performing arts centre with basketball court, change rooms, gym, staff workspaces, a drama studio and workshop spaces.", + "We built an inclusive outdoor learning, play and athletic space designed to support the needs of all learners. It is the latest initiative in a long-running partnership that builds acceptance of diversity in mainstream education and the wider community.\u200b The space includes: a new performance space improved green spaces with increased shade and seating areas\u00a0 new garden beds \u00a0accessible walkways." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $14.901 million.", + "In the 2017\u201318 State Budget Update, $5 million was allocated to the school.", + "In Round 3 of the Inclusive Schools Fund, $200,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Thornbury High School." + ], + "field_latitude": ["-37.758449554443359", "-37.75689"], + "field_latitude_longitude_value": [ + "-37.758449554443359,145.00572204589844" + ], + "field_latitude_value": ["-37.758449554443359"], + "field_longitude": ["145.00572204589844", "145.02424"], + "field_longitude_value": ["145.00572204589844"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Thornbury High School." + ], + "field_postcode": ["3071"], + "field_project_code": ["D2-01-8797", "D1-01-8797", "01-8797"], + "field_project_title": [ + "Upgrade and Modernisation - STEAM Centre", + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q1 2020", "Q4 2018"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["238 Collins St"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20912], + "status": [true], + "title": ["Thornbury High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["69fb8d7c-bb95-4db5-a7da-f41490ca282a"] + }, + "sort": ["Thornbury High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33833:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thornbury-high-school-kindergarten-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Thornbury High School. It will provide additional kindergarten places for the local community.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Thornbury High School Kindergarten (interim name)" + ], + "field_latitude": ["-37.75649469"], + "field_latitude_longitude_value": ["-37.75649469,145.0252135"], + "field_latitude_value": ["-37.75649469"], + "field_longitude": ["145.0252135"], + "field_longitude_value": ["145.0252135"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3071"], + "field_project_code": ["15-THSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["238 Collins Street"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33833], + "status": [true], + "title": ["Thornbury High School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["47612f10-ca81-42b1-abf5-0560c214635b"] + }, + "sort": ["Thornbury High School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24236:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thornbury-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T13:24:28+11:00"], + "field_about_project_processed": [ + "We upgraded the entire outdoor space, making it more engaging for 3 and 4-year-olds and better able to support all their needs and abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $197,800 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Thornbury Kindergarten" + ], + "field_latitude": ["-37.75356567"], + "field_latitude_longitude_value": ["-37.75356567,145.0110111"], + "field_latitude_value": ["-37.75356567"], + "field_longitude": ["145.0110111"], + "field_longitude_value": ["145.0110111"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3071"], + "field_project_code": ["15-957"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["8C Newcastle St"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24236], + "status": [true], + "title": ["Thornbury Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1554549f-bed9-44c2-87e0-b3af312629b2"] + }, + "sort": ["Thornbury Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20229:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thornbury-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are refurbishing the student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We built\u00a0an inclusive playground. It has new play equipment and rubber soft fall surfacing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2022-23 State Budget the project received $409,627 from the Minor Capital Works Fund.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": [ + "Planning", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Thornbury Primary School" + ], + "field_latitude": ["-37.755425", "-37.7554059"], + "field_latitude_longitude_value": ["-37.755425,144.996748"], + "field_latitude_value": ["-37.755425"], + "field_longitude": ["144.996748", "144.9962222"], + "field_longitude_value": ["144.996748"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3071"], + "field_project_code": ["D2-01-3889", "D1-01-3889", "01-3889"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": [ + "Subject to future funding", + "Q4 2023", + "Q2 2023" + ], + "field_start_date": ["Q2 2023", "Q2 2022", "Q2 2021"], + "field_status_name": ["Planning", "Construction", "Complete"], + "field_street_address": ["16-22 Hutton Street"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20229], + "status": [true], + "title": ["Thornbury Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["30607f11-191d-41ae-b7e6-9efb192bb7c3"] + }, + "sort": ["Thornbury Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24245:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thornhill-park-childrens-and-community-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T17:05:29+11:00"], + "field_about_project_processed": [ + "We partnered with Melton City Council to build an integrated children's centre. The centre offers 4 kindergarten rooms. It also has a maternal child health and allied health services.The kindergarten is next door to Thornhill Park Primary School.\u00a0Having a kindergarten and school together may help local children make a smooth transition into primary school. It can also make drop-off time simpler for some families.The kindergarten provides 132 kindergarten places to the community. It helps local children get 2 years of high-quality, funded kindergarten.\u00a0This centre was previously known as Rockbank Murray Road Children's and Community Centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "We are helping fund this project as part of the Melton City Council Building Blocks Partnership." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Thornhill Park Children\u2019s and Community Centre" + ], + "field_latitude": ["-37.71427652"], + "field_latitude_longitude_value": ["-37.71427652,144.6290448"], + "field_latitude_value": ["-37.71427652"], + "field_longitude": ["144.6290448"], + "field_longitude_value": ["144.6290448"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3335"], + "field_project_code": ["15-RMRCC"], + "field_project_title": ["Building Blocks Capacity Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["18 Tower St"], + "field_suburb": ["Thornhill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24245], + "status": [true], + "title": ["Thornhill Park Children\u2019s and Community Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8a87ecc4-da02-4b53-9650-7bdd1d8c396a"] + }, + "sort": ["Thornhill Park Children’s and Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20698:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/thornhill-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in the City of Melton. It opened in 2023, helping the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Darryl Spiteri\u00a0was appointed as the first principal of the school. The school was previously known by its interim name, Rockbank Murray Road Primary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 to 8 July 2022. The school is named after the suburb it is located in. Facilities Facilities include the following: an administration building with a library, staff offices and amenities 2 learning neighbourhood buildings. These include general purpose classrooms, and flexible and collaborative teaching spaces a specialist learning neighbourhood building for subjects such as food technology and science a community hub with a competition-grade gymnasium, canteen, music and drama space 2 outdoor hardcourts a sports field a bike shed. Kindergarten We partnered Melton City Council to build\u00a0Thornhill Park Children\u2019s and Community Centre. The centre provides kindergarten, maternal child health and allied health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Thornhill Park Primary School." + ], + "field_latitude": ["-37.71489"], + "field_latitude_longitude_value": ["-37.71489,144.626284"], + "field_latitude_value": ["-37.71489"], + "field_longitude": ["144.626284"], + "field_longitude_value": ["144.626284"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/ThornhillPS_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3335"], + "field_project_code": ["01-5595"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["61 Baxterpark Dr"], + "field_suburb": ["Thornhill Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20698], + "status": [true], + "title": ["Thornhill Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bb0c7b09-1ca1-4318-a64e-a91bb23cf631"] + }, + "sort": ["Thornhill Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21245:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/through-road-early-learning"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed the enclosed veranda into a childhood educational space with new amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $300,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Through Road Early Learning" + ], + "field_latitude": ["-37.839069366455078"], + "field_latitude_longitude_value": [ + "-37.839069366455078,145.07295227050781" + ], + "field_latitude_value": ["-37.839069366455078"], + "field_longitude": ["145.07295227050781"], + "field_longitude_value": ["145.07295227050781"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3124"], + "field_project_code": ["15-3125"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["171 Through Rd"], + "field_suburb": ["Camberwell"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21245], + "status": [true], + "title": ["Through Road Early Learning"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f02eeba9-622f-4ecd-8146-c0e08ad131ac"] + }, + "sort": ["Through Road Early Learning"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20627:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/timbarra-p-9-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0upgraded\u00a0the college by transforming old classrooms into modern learning environments. We\u00a0delivered new STEM (science, technology, engineering and maths) facilities to students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $290,000. In 2020, the school received $2.61 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Timbarra P-9 College" + ], + "field_latitude": ["-38.01609"], + "field_latitude_longitude_value": ["-38.01609,145.32073"], + "field_latitude_value": ["-38.01609"], + "field_longitude": ["145.32073"], + "field_longitude_value": ["145.32073"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3806"], + "field_project_code": ["01-5479"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["159-197 Parkhill Dr"], + "field_suburb": ["Berwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20627], + "status": [true], + "title": ["Timbarra P-9 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["de7460b9-6008-434b-b598-815557e925b6"] + }, + "sort": ["Timbarra P-9 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21426:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Timbertop-Childrens-and-Community-Centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have built a new integrated children's centre\u00a0for the Aintree community. This\u00a0high quality learning environment offers kindergarten for\u00a03 and 4-year-olds. The centre will also offer a range of services to meet\u00a0community\u00a0needs." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $790,000 was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Timbertop Children's & Community Centre." + ], + "field_latitude": ["-37.7221559111667"], + "field_latitude_longitude_value": [ + "-37.7221559111667,144.66604308789388" + ], + "field_latitude_value": ["-37.7221559111667"], + "field_longitude": ["144.66604308789388"], + "field_longitude_value": ["144.66604308789388"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3335"], + "field_project_code": ["ELC-ACCH"], + "field_project_title": ["Integrated Children\u2019s Centre"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Timbertop Parade"], + "field_suburb": ["Aintree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21426], + "status": [true], + "title": ["Timbertop Children's & Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["15609e61-9ab6-4985-b752-55ad87ce50d4"] + }, + "sort": ["Timbertop Children's & Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20721:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/timboon-p-12-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the student and staff toilets in the Building and Construction building and the Library to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We installed shade sails and resurfaced asphalt tennis courts with artificial turf for staff for student and community use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $131,397 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $475,665." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Timboon P\u201312 School." + ], + "field_latitude": ["-38.484056", "-38.4840523810354"], + "field_latitude_longitude_value": ["-38.484056,142.975889"], + "field_latitude_value": ["-38.484056"], + "field_longitude": ["142.975889", "142.979434005837"], + "field_longitude_value": ["142.975889"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3268"], + "field_project_code": ["D1-01-6260", "01-6260"], + "field_project_title": [ + "Minor Capital Works Fund \u2013\u00a02022\u201323 State Budget", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2024", "Q2 2023"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Bailey St"], + "field_suburb": ["Timboon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20721], + "status": [true], + "title": ["Timboon P\u201312 School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["16555626-417f-4dba-b010-937eea19107c"] + }, + "sort": ["Timboon P–12 School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19965:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/timor-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the sports court. It has improved conditions and safety for students and the community.\u00a0", + "We refurbished the school entry way, staff office facilities, classrooms and provided new cupboards and desks.\u00a0\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $85,125.", + "In the 2016\u201317 State Budget, $90,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Timor Primary School." + ], + "field_latitude": ["-36.9845036", "-36.98433"], + "field_latitude_longitude_value": ["-36.9845036,143.7122701"], + "field_latitude_value": ["-36.9845036"], + "field_longitude": ["143.7122701", "143.712"], + "field_longitude_value": ["143.7122701"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3465"], + "field_project_code": ["D1-01-1207", "01-1207"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["395 Bet Bet Creek Rd"], + "field_suburb": ["Timor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19965], + "status": [true], + "title": ["Timor Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3c158a38-f107-4f2b-ba13-43485c9b06c7"] + }, + "sort": ["Timor Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20470:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tinternvale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded fencing, security and lighting to make the school site secure, and create a clear boundary to the adjacent public bike path and bushland." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $296,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tinternvale Primary School." + ], + "field_latitude": ["-37.8185421001571"], + "field_latitude_longitude_value": [ + "-37.8185421001571,145.265239549938" + ], + "field_latitude_value": ["-37.8185421001571"], + "field_longitude": ["145.265239549938"], + "field_longitude_value": ["145.265239549938"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3135"], + "field_project_code": ["01-5075"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Tintern Av"], + "field_suburb": ["Ringwood East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20470], + "status": [true], + "title": ["Tinternvale Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5d9f7015-56ea-4e36-9417-5c866960ea56"] + }, + "sort": ["Tinternvale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21103:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tombolo-academy"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported this new specialist secondary school to upgrade and refurbish their campus. These works will allow students with physical disabilities to access the entire school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $800,000." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Tombolo Academy." + ], + "field_latitude": ["-37.9383483"], + "field_latitude_longitude_value": ["-37.9383483,145.0234859"], + "field_latitude_value": ["-37.9383483"], + "field_longitude": ["145.0234859"], + "field_longitude_value": ["145.0234859"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3188"], + "field_project_code": ["02-2232"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["453 Bluff Rd"], + "field_suburb": ["Hampton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21103], + "status": [true], + "title": ["Tombolo Academy"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a13b0377-eb5b-473c-807a-27aa19e9dc9e"] + }, + "sort": ["Tombolo Academy"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19968:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tooborac-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including the refurbishment and extension of the main classroom building.", + "\u200bWe've completed the upgrades to this school. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $1.117 million.", + "In the 2016\u201317 State Budget, $60,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tooborac Primary School" + ], + "field_latitude": ["-37.0397551", "-37.03976"], + "field_latitude_longitude_value": ["-37.0397551,144.7985014"], + "field_latitude_value": ["-37.0397551"], + "field_longitude": ["144.7985014", "144.7985"], + "field_longitude_value": ["144.7985014"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3522"], + "field_project_code": ["D1-01-1225", "01-1225"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["5185 Northern Highway"], + "field_suburb": ["Tooborac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19968], + "status": [true], + "title": ["Tooborac Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["634e078f-49ea-4c02-9882-3ecc0b8ef6b2"] + }, + "sort": ["Tooborac Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33027:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/toolern-vale-and-district-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Toolern Vale and District Primary school" + ], + "field_latitude": ["-37.606275"], + "field_latitude_longitude_value": ["-37.606275,144.594231"], + "field_latitude_value": ["-37.606275"], + "field_longitude": ["144.594231"], + "field_longitude_value": ["144.594231"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3337"], + "field_project_code": ["01-5414"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["361 Creamery Road"], + "field_suburb": ["Toolern Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33027], + "status": [true], + "title": ["Toolern Vale and District Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["567f86a6-0d29-48e0-a58b-84ff3e8e110e"] + }, + "sort": ["Toolern Vale and District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20881:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/toongabbie-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor sports courts. We installed poles so students can play netball or basketball. We also improved drainage." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $244,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Toongabbie Primary School." + ], + "field_latitude": ["-38.0600754775236"], + "field_latitude_longitude_value": [ + "-38.0600754775236,146.624709457002" + ], + "field_latitude_value": ["-38.0600754775236"], + "field_longitude": ["146.624709457002"], + "field_longitude_value": ["146.624709457002"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3856"], + "field_project_code": ["01-856"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Victoria St"], + "field_suburb": ["Toongabbie"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20881], + "status": [true], + "title": ["Toongabbie Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6f50b2df-1d4b-4c62-a510-313c402f82d7"] + }, + "sort": ["Toongabbie Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20088:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/toora-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's\u00a0play spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $55,715." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Toora Primary School." + ], + "field_latitude": ["-38.6639013"], + "field_latitude_longitude_value": ["-38.6639013,146.3275637"], + "field_latitude_value": ["-38.6639013"], + "field_longitude": ["146.3275637"], + "field_longitude_value": ["146.3275637"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3962"], + "field_project_code": ["01-2253"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["5 Harriet St"], + "field_suburb": ["Toora"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20088], + "status": [true], + "title": ["Toora Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9dfac90f-2e9d-4cf3-a09e-02b733393299"] + }, + "sort": ["Toora Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36773:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tooradin-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-06T09:28:45+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 9 of the Inclusive Schools Fund, the project received $221,262" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tooradin Primary School" + ], + "field_latitude": ["-38.207631"], + "field_latitude_longitude_value": ["-38.207631,145.378493"], + "field_latitude_value": ["-38.207631"], + "field_longitude": ["145.378493"], + "field_longitude_value": ["145.378493"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3980"], + "field_project_code": ["01-1503"], + "field_project_title": ["Inclusive Schools Fund - Round 9"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["Bayview Road"], + "field_suburb": ["Tooradin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36773], + "status": [true], + "title": ["Tooradin Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7049ba03-672d-416e-a34c-d5664781c7f3"] + }, + "sort": ["Tooradin Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25389:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/toorloo-arm-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $243,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Toorloo Arm Primary School" + ], + "field_latitude": ["-37.852539"], + "field_latitude_longitude_value": ["-37.852539,148.05097"], + "field_latitude_value": ["-37.852539"], + "field_longitude": ["148.05097"], + "field_longitude_value": ["148.05097"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3909"], + "field_project_code": ["01-3968"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["315 Lake Tyers Beach Road"], + "field_suburb": ["Lake Tyers Beach"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25389], + "status": [true], + "title": ["Toorloo Arm Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ba4b78ff-59c2-4a92-9852-dd75c0035cd8"] + }, + "sort": ["Toorloo Arm Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33828:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/tootgarook-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Tootgarook Primary School. It will provide additional kindergarten places for the local community.\u00a0This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Tootgarook Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-38.369477"], + "field_latitude_longitude_value": ["-38.369477,144.857321"], + "field_latitude_value": ["-38.369477"], + "field_longitude": ["144.857321"], + "field_longitude_value": ["144.857321"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3941"], + "field_project_code": ["15-TPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["Carmichael Street"], + "field_suburb": ["Tootgarook"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33828], + "status": [true], + "title": ["Tootgarook Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c62ae610-efe6-41bb-81e9-7e78dc415086"] + }, + "sort": ["Tootgarook Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24960:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Topirum-Primary-School"], + "changed": ["2023-10-26T10:19:19+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Clyde North. It will open in 2024 and help the growing local population get a great education close to home.It will be able to enrol up to 525 students when the school is complete.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school is open for enrolments for students in Prep to Grade 6. The 2024 school zones are available at\u00a0findmyschool.vic.gov.auFor enrolment queries please email topirum.ps@education.vic.gov.au" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Topirum Primary School" + ], + "field_latitude": ["-38.10867"], + "field_longitude": ["\u00a0145.383599"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/AlexanderBoulevard_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Topirum Primary School\u00a0was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Topirum\u00a0(pronounced\u00a0 top-pur-um ) is a Bunurong word meaning star. We used\u00a0Alexander Boulevard Primary School\u00a0as an interim name while the school was being planned and designed.", + "Marc de Ley\u00a0has been appointed as principal of the new school. Marc has been an educator in government schools for more than 20 years. Most recently he was principal of Courtenay Gardens Primary School. He is thrilled to be the foundation principal of Topirum Primary School . He is looking forward to working with the community to establish a thriving school that serves the young people of the Clyde North area.", + "Your new school will include: an administration and library building 2 learning neighbourhoods a community hub with indoor multi-use court, canteen and arts/music spaces hard courts a sports field a carpark Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Bunurong Land Council Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding", + "We're building Topirum Primary School Kindergarten at the school. I t will open in 2025, one year after the school has opened. \u00a0 Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families." + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation", + "New kindergarten" + ], + "field_paragraph_body": [ + "Alexander Boulevard Primary School (interim name) - Introducing Marc de Lay \u00a0" + ], + "field_postcode": ["3978"], + "field_project_code": ["01-5598"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["451 Hardys Rd"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24960], + "status": [true], + "title": ["Topirum Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["08363e06-7b08-48a4-a8dd-3d36e523bd04"] + }, + "sort": ["Topirum Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33839:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/topirum-primary-school-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a permanent 2-room kindergarten at the new Topirum Primary School.It will open in 2025, one year after the school has opened, and will provide 66 kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Topirum Primary School Kindergarten." + ], + "field_latitude": ["-38.10959464"], + "field_latitude_longitude_value": ["-38.10959464,145.3844464"], + "field_latitude_value": ["-38.10959464"], + "field_longitude": ["145.3844464"], + "field_longitude_value": ["145.3844464"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3978"], + "field_project_code": ["15-ABPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_status_name": ["Construction"], + "field_street_address": ["451 Hardys Rd"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33839], + "status": [true], + "title": ["Topirum Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["36a87394-70fd-4401-9699-b109a65a738d"] + }, + "sort": ["Topirum Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20662:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/torquay-coast-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school (formerly Torquay North Primary School) opened in term 1, 2018, built to accommodate 400 students.\u00a0 We designed the school with the local community in mind, allowing\u00a0it\u00a0to\u00a0be a gathering place for local families and residents to enjoy community, arts, sports and recreation programs.\u00a0 This was\u00a0a public private partnership, delivered by the Learning Communities Victoria consortium. Partners included A\u200bmber as sponsor, ClarkeHopkinsClarke as architect, Watpac as builder, Spotless as facilities manager and YMCA and CERES as community partners. Facilities We designed the school to support contemporary approaches to teaching and learning, and to foster a strong sense of community. \u2018Learning communities\u2019 allow the school to create a variety of spaces and settings to best suit different activities and maximise the learning experience for students. This environment encourages students to\u00a0deeply engage with, and take ownership of, their learning. It includes spaces for informal and quiet reflection, hands-on learning, presentations, formal or direct instruction and outdoor learning. While students predominantly work in their grade groupings, there are\u00a0a variety of collaborative opportunities for them to engage with other learners. Other key facilities include: \u200ban early learning centre run by the YMCA to\u00a0help make students\u2019 transition to primary education easier a multi-purpose space that will be used by the school during the day, and by the YMCA to deliver before and after school care and other community programs. For more information about the services YMCA\u00a0provide for Torquay Coast Primary School students\u200b\u00a0go to\u00a0surfcoast.ymca.org.au\u200b an expanded gym built to Netball Victoria standards embedded environmental sustainability education via the CERES ResourceSmart Schools program initiative a canteen. Parents have opportunities to participate in school life and support learning through a parent helpers program.\u200b Enrolments For questions about enrolments, please contact the principal, Darren Roskosch, on the school phone number\u00a003 5218 5600. State-wide school zone maps are available at\u00a0findmyschool.vic.gov.au.", + "We expanded the bike shed, and constructed concrete bike paths and line marking to support the bicycle education program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for the Public Private Partnership Project across regional and metropolitan Victoria.", + "In the 2020 Minor Capital Works Fund, the school was allocated $237,625." + ], + "field_funding_type_name": ["New School", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the build of Torquay Coast Primary School." + ], + "field_latitude": ["-38.30503", "-38.3050309"], + "field_latitude_longitude_value": ["-38.30503,144.33947"], + "field_latitude_value": ["-38.30503"], + "field_longitude": ["144.33947", "144.3394714"], + "field_longitude_value": ["144.33947"], + "field_mappintype_name": ["New school", "School upgrade"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3228"], + "field_project_code": ["01-5556", "D1-01-5556"], + "field_project_title": ["New School", "Minor Capital Works Fund"], + "field_q_complete": ["Q1 2018", "Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["25 Stretton Dr"], + "field_suburb": ["Torquay"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20662], + "status": [true], + "title": ["Torquay Coast Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8bd6e65d-8325-43e0-a370-87dd2f124932"] + }, + "sort": ["Torquay Coast Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22623:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/torquay-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a fit-for-purpose kindergarten room with kitchenette and bathroom that connects with outdoor decking. We also relocated the children's library and provided extra office and meeting space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $397,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Torquay Early Learning Centre" + ], + "field_latitude": ["-38.32286792"], + "field_latitude_longitude_value": ["-38.32286792,144.3151219"], + "field_latitude_value": ["-38.32286792"], + "field_longitude": ["144.3151219"], + "field_longitude_value": ["144.3151219"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3228"], + "field_project_code": ["15-5294"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["2 Pimelea Way"], + "field_suburb": ["Torquay"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22623], + "status": [true], + "title": ["Torquay Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["44bea672-75e9-4afd-9cdd-5471afb0c4a7"] + }, + "sort": ["Torquay Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20188:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/torquay-p-6-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the college. This included modernising classrooms, painting, carpeting and landscaping, as well as adding new doorways and\u00a0outdoor learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $1.9 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Torquay P-6 College." + ], + "field_latitude": ["-38.321869"], + "field_latitude_longitude_value": ["-38.321869,144.312714"], + "field_latitude_value": ["-38.321869"], + "field_longitude": ["144.312714"], + "field_longitude_value": ["144.312714"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3228"], + "field_project_code": ["01-3368"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2020"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["45-55 Grossmans Rd"], + "field_suburb": ["Torquay"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20188], + "status": [true], + "title": ["Torquay P-6 College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["69f141e7-062d-4786-aad7-d782586d66ad"] + }, + "sort": ["Torquay P-6 College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21357:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/toun-nun-integrated-child-and-family-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are partnering with Cardinia Shire Council to build an integrated children's centre which will offer four kindergarten rooms as well as maternal child health and allied health services. The kindergarten will provide an additional 132 kindergarten places to the community and help local children access two years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream, the children's centre received $4,000,000." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Brunt Road Integrated Child and Family Centre" + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3809"], + "field_project_code": ["15-BRIC"], + "field_project_title": [ + "Building Blocks Capacity Grant \u2013 Integrated Children's Centre" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["46 Fairweather Pde"], + "field_suburb": ["Officer"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21357], + "status": [true], + "title": ["Toun-nun Integrated Child and Family Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c55a1b80-81f8-4ef0-b7bd-54e575c63c9a"] + }, + "sort": ["Toun-nun Integrated Child and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20861:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/trafalgar-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded facilities at the school, supporting the school to ensure that the building works were in line with the needs of their community and suit the school's vision for the future. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$2.3 million was allocated to the school in the 2016\u201317 State Budget update." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Trafalgar High School." + ], + "field_latitude": ["-38.2175299"], + "field_latitude_longitude_value": ["-38.2175299,146.17198"], + "field_latitude_value": ["-38.2175299"], + "field_longitude": ["146.17198"], + "field_longitude_value": ["146.17198"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3824"], + "field_project_code": ["01-8395"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["School Rd"], + "field_suburb": ["Trafalgar"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20861], + "status": [true], + "title": ["Trafalgar High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3336a28b-7c39-42be-8e31-230f1670f6eb"] + }, + "sort": ["Trafalgar High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22347:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/trafalgar-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:23:56+11:00"], + "field_about_project_processed": [ + "We are refurbishing the student bathroom to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $495,397" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Trafalgar Primary School" + ], + "field_latitude": ["-38.214764"], + "field_latitude_longitude_value": ["-38.214764,146.15987"], + "field_latitude_value": ["-38.214764"], + "field_longitude": ["146.15987"], + "field_longitude_value": ["146.15987"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3824"], + "field_project_code": ["01-2185"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["84 School Road"], + "field_suburb": ["Trafalgar"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22347], + "status": [true], + "title": ["Trafalgar Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["5063dbb7-c221-420d-9e12-767f1cc4a749"] + }, + "sort": ["Trafalgar Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21454:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/trafalgar-primary-school-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "A new kindergarten was delivered to the school. The addition of 2 relocatable kindergarten rooms has\u00a0enabled the Trafalgar community to access high quality learning environments from their first steps in education, through to the end of primary school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $1,800,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Trafalgar Primary School - Early Learning Centre." + ], + "field_latitude": ["-38.21753"], + "field_latitude_longitude_value": ["-38.21753,146.17198"], + "field_latitude_value": ["-38.21753"], + "field_longitude": ["146.17198"], + "field_longitude_value": ["146.17198"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3824"], + "field_project_code": ["ELC-TPC"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["School Rd"], + "field_suburb": ["Trafalgar"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21454], + "status": [true], + "title": ["Trafalgar Primary School - Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["de32aa68-8e1d-435b-a065-be828d914429"] + }, + "sort": ["Trafalgar Primary School - Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20322:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/traralgon-kosciuszko-street-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We\u00a0demolished Block A, which contains asbestos, and replaced it with a new permanent modular building. The new building\u00a0features general purpose classrooms and new amenities. \u200b\u200b\u200bOur modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures. The school\u00a0is benefitting from the\u00a0Permanent Modular School Buil\u200bdings Program." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2019\u201320 State Budget, the school received $2.890 million." + ], + "field_funding_type_name": [ + "Planning", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Traralgon (Kosciuszko Street) Primary School." + ], + "field_latitude": ["-38.199268"], + "field_latitude_longitude_value": ["-38.199268,146.515364"], + "field_latitude_value": ["-38.199268"], + "field_longitude": ["146.515364"], + "field_longitude_value": ["146.515364"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["D1-01-4699", "01-4699"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Subject to future funding", "Q4 2020"], + "field_start_date": ["Q2 2023", "Q2 2019"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["36 Kosciuszko St"], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20322], + "status": [true], + "title": ["Traralgon (Kosciuszko Street) Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1a9b7254-8e7d-4137-99e1-8244716ace29"] + }, + "sort": ["Traralgon (Kosciuszko Street) Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20323:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/traralgon-liddiard-road-primary-school"], + "changed": ["2023-08-23T12:34:12+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe\u00a0delivered\u00a0a new architect-designed modular building to the\u00a0school to replace Block A with a new student library and toilet block.", + "We have\u00a0upgraded the school. These works provide the school with contemporary learning spaces that are better suited to modern teaching methods and meeting student needs for the 21st century.\u200b", + "We replaced the perimeter fencing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $1,577,000 was allocated to the school.", + "In the 2016\u201317 State Budget Update, $790,000 was allocated to the school. A further $46,000 was allocated in planned maintenance.", + "In Round 2 of the Minor Capital Works Fund, the project received $371,868." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Traralgon (Liddiard Road) Primary School." + ], + "field_latitude": ["-38.20145", "-38.20145", "-38.201551"], + "field_latitude_longitude_value": ["-38.20145,146.55318"], + "field_latitude_value": ["-38.20145"], + "field_longitude": ["146.55318", "146.55318", "146.551488"], + "field_longitude_value": ["146.55318"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["01-4700", "D1-01-4700", "D2-01-4700"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q4 2018", "Q4 2018", "Q3 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["148 Liddiard Rd"], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20323], + "status": [true], + "title": ["Traralgon (Liddiard Road) Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c6b86cbf-32a1-45f3-8942-fc0829edcbbb"] + }, + "sort": ["Traralgon (Liddiard Road) Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20309:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/traralgon-stockdale-road-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a competition-grade gymnasium at the\u00a0school. We are also building new art facilities, a learning centre, toilets, and we are upgrading the staff centre and classrooms. This ensures students are learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $10.03 million, with a further $584,421 in 2023." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Traralgon (Stockdale Road) Primary School." + ], + "field_latitude": ["-38.1902132"], + "field_latitude_longitude_value": ["-38.1902132,146.5240874"], + "field_latitude_value": ["-38.1902132"], + "field_longitude": ["146.5240874"], + "field_longitude_value": ["146.5240874"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["01-4652"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["7 Stockdale Rd"], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20309], + "status": [true], + "title": ["Traralgon (Stockdale Road) Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["40e6efd6-a6e8-49a4-8ce8-2b79ddebfdac"] + }, + "sort": ["Traralgon (Stockdale Road) Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20918:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/traralgon-college-and-latrobe-special-developmental-school-regeneration" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are repairing the roof, replacing the gutters and undertaking internal ceiling remediation works at the school's East Campus. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We modernised Traralgon College. We upgraded and modernised the Grey St Senior Campus.As part of stage 2 works, we built a new administration building, library, years 9 and 10 building and a science building.", + "The Victorian Government is investing in the Traralgon Education Regeneration Project to provide all local students with the modern, safe and nurturing education facilities they deserve. We modernised Traralgon College's senior campus with a new VCE centre which features state-of-the-art facilities including new classrooms, a maker space, and presentation space. We have worked with Traralgon's education and broader community to develop the master plan\u00a0for this\u00a0project, ensuring we meet the needs of current and future students.\u00a0\u200b\u200b\u200bTo better understand local priorities for improvements, especially for Traralgon College and Latrobe Special Developmental School, we consulted people in the Traralgon community from 15 October to 5 November 2018. There was community support for the school regeneration projects outlined on this page.\u00a0You can contact us for a copy of the report detailing what we heard during this time. Together, we will create a vision of what can be achieved in Traralgon, while maintaining current strengths and responding to concerns about change. \u00a0", + "We relocated and rebuilt\u00a0a new school for Latrobe Special Developmental School. It will accommodate 88 students in a space that caters to their diverse needs and provides what they need to thrive in an ever-more complex world. We have worked with the school and broader community to develop the exciting master plan for this project. Students and teachers will benefit from state-of-the-art facilities, including spaces for STEM, music and food tech. Our rebuild will also include an outdoor sensory garden, adventure play area and playing fields." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $194,363 from the Minor Capital Works Fund.", + "In the 2020\u201321 State Budget, the school received $13.376 million.", + "In the 2018\u201319 State Budget, $6 million was allocated to modernising Latrobe Special Developmental School and Traralgon College.", + "In the 2018\u201319 State Budget, $6 million was allocated to modernising Latrobe Special Developmental School and Traralgon College. In 2020 a further $13.7 million in funding was allocated to Latrobe Special Developmental School." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Traralgon College and Latrobe Special Developmental School Regeneration." + ], + "field_latitude": [ + "-38.19142459", + "-38.201938629150391", + "-38.191240424028464", + "-38.20532730414104" + ], + "field_latitude_longitude_value": ["-38.19142459,146.5194895"], + "field_latitude_value": ["-38.19142459"], + "field_longitude": [ + "146.5194895", + "146.51446533203125", + "146.51943036441799", + "146.53200302682185" + ], + "field_longitude_value": ["146.5194895"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": [ + "D3-01-8803", + "D1-01-8803", + "01-8803", + "D2-01-8803" + ], + "field_project_title": [ + "Minor Capital Works Fund \u2013\u00a0Traralgon College - East Campus", + "Upgrade and Modernisation - Stage 2 - Traralgon College - Senior Campus", + "Upgrade and Modernisation - Stage 1 - Traralgon College - Senior Campus", + "Upgrade and Modernisation - Latrobe Special Developmental School" + ], + "field_q_complete": ["Q1 2024", "Q3 2023", "Q1 2022", "Q3 2022"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q2 2018"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_suburb": ["Traralgon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20918], + "status": [true], + "title": [ + "Traralgon College and Latrobe Special Developmental School Regeneration" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f7710d87-245f-4a78-9799-d80744ba0d3e"] + }, + "sort": [ + "Traralgon College and Latrobe Special Developmental School Regeneration" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20077:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/traralgon-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced and upgraded the school's septic system.", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $190,665.", + "In Round 9 of the Inclusive Schools Fund, the project received $299,835" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Traralgon South Primary School." + ], + "field_latitude": ["-38.2978257", "-38.297258"], + "field_latitude_longitude_value": ["-38.2978257,146.5409868"], + "field_latitude_value": ["-38.2978257"], + "field_longitude": ["146.5409868", "146.540146"], + "field_longitude_value": ["146.5409868"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["01-2114", "D1-01-2114"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q2 2022", "Q4 2025"], + "field_start_date": ["Q4 2020", "Q4 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["13\u201319 Keith Morgan Dr"], + "field_suburb": ["Traralgon South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20077], + "status": [true], + "title": ["Traralgon South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9dc839d6-c2c0-45ed-b05b-999510136a88"] + }, + "sort": ["Traralgon South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19955:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/trawalla-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build an outdoor inclusive learning space, including paving and softfall in a landscaped environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $14,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Trawalla Primary School." + ], + "field_latitude": ["-37.4379"], + "field_latitude_longitude_value": ["-37.4379,143.469423"], + "field_latitude_value": ["-37.4379"], + "field_longitude": ["143.469423"], + "field_longitude_value": ["143.469423"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3373"], + "field_project_code": ["01-1150"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["11 Trawalla Rd"], + "field_suburb": ["Trawalla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19955], + "status": [true], + "title": ["Trawalla Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6591c5c4-a747-4919-8df6-017ca5cbe13d"] + }, + "sort": ["Trawalla Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21328:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/trentham-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0helped the kindergarten expand\u00a0and\u00a0improve\u00a0the learning environment they offer\u00a03 and 4-year-olds of\u00a0all abilities. This will allow the kinder to\u00a0provide additional long daycare places, as well as meet\u00a0future demand for kindergarten and other early childhood services in the area. The upgrade will also create new opportunities for other children's and family services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u201319 Children's Facilities Capital Program Major Grants, $305,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Trentham Kindergarten." + ], + "field_latitude": ["-37.38828"], + "field_latitude_longitude_value": ["-37.38828,144.32718"], + "field_latitude_value": ["-37.38828"], + "field_longitude": ["144.32718"], + "field_longitude_value": ["144.32718"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3458"], + "field_project_code": ["15-767"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["6 Bridge St"], + "field_suburb": ["Trentham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21328], + "status": [true], + "title": ["Trentham Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cf5ef024-8418-47a4-a679-59df468be2a8"] + }, + "sort": ["Trentham Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21119:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/trinity-college-colac-inc"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to build\u00a0a new\u00a0library, IT labs, server room, careers office, associated staff offices and student toilets.\u200b\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$500,000 was allocated to the school as part of Round 3 of the Non-Government Schools Grants Program." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Trinity College Colac Inc." + ], + "field_latitude": ["-38.351559"], + "field_latitude_longitude_value": ["-38.351559,143.577911"], + "field_latitude_value": ["-38.351559"], + "field_longitude": ["143.577911"], + "field_longitude_value": ["143.577911"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3250"], + "field_project_code": ["02-495"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["119 Hart St"], + "field_suburb": ["Colac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21119], + "status": [true], + "title": ["Trinity College Colac Inc"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["40f258c5-9f56-41e7-afdd-6ad544139afc"] + }, + "sort": ["Trinity College Colac Inc"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21387:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/truganina-community-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are partnering with Wyndham City Council to build an integrated children's centre which will offer 3 kindergarten rooms as well as maternal child health and allied health services. The kindergarten will provide 99 kindergarten places to the community and help local children access 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Grant \u2013 Planning stream, $150,000 was allocated to this project. In Round 1 of the 2021\u201322 Building Blocks Grants Capacity Building stream, the centre received $3,000,000." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Truganina Community Centre." + ], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-TCC"], + "field_project_title": [ + "Building Blocks \u2013 Integrated Children's Centre" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21387], + "status": [true], + "title": ["Truganina Community Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["071dd366-9bcc-464d-8644-cb287ca784f3"] + }, + "sort": ["Truganina Community Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20319:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tucker-road-bentleigh-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We constructed a building with state-of-the-art classrooms and a modern administration area. The school also gained wet areas in classrooms, new toilets, and a staff work area.", + "We have built a new gymnasium/netball court which\u00a0includes amenities such as change rooms, toilets and storage as well as new administration offices.\u00a0 The facilites have an\u00a0environmentally sustainable focus, taking advantage of natural daylight and connection to the external environment to reduce energy consumption." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $451,700. In 2020, the school received $4.52 million.", + "In the 2016-17 State Budget, $3 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tucker Road Bentleigh Primary School" + ], + "field_latitude": ["-37.93408", "-37.93408"], + "field_latitude_longitude_value": ["-37.93408,145.04818"], + "field_latitude_value": ["-37.93408"], + "field_longitude": ["145.04818", "145.04818"], + "field_longitude_value": ["145.04818"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3204"], + "field_project_code": ["D1-01-4687", "01-4687"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2021", "Q3 2018"], + "field_start_date": ["Q2 2019", "Q4 2017"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["16 Tucker Rd"], + "field_suburb": ["Bentleigh"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20319], + "status": [true], + "title": ["Tucker Road Bentleigh Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b39bb2a0-9f0d-438a-b029-dd444eeaa710"] + }, + "sort": ["Tucker Road Bentleigh Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20377:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tullamarine-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered\u00a0a new architect-designed modular building to the school to replace Blocks A and B with new classrooms, administration facilities and student toilets. Our modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs.\u00a0 They are sustainable and innovatively designed, with a comparable lifespan to bricks and mortar structures The project at the\u00a0school is part of the\u00a0Permanent Modular School Buildings Program.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $4,570,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tullamarine Primary School" + ], + "field_latitude": ["-37.70751"], + "field_latitude_longitude_value": ["-37.70751,144.87834"], + "field_latitude_value": ["-37.70751"], + "field_longitude": ["144.87834"], + "field_longitude_value": ["144.87834"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3043"], + "field_project_code": ["01-4852"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Broadmeadows Rd"], + "field_suburb": ["Tullamarine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20377], + "status": [true], + "title": ["Tullamarine Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["96a6f229-35d7-4e8d-8d61-6f4dbf50925b"] + }, + "sort": ["Tullamarine Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20660:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tulliallan-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school serves families in the suburb of Cranbourne North. The school has been built to accommodate up to 475 students, and was delivered by the Learning Communities Victoria\u00a0consortium. The school opened for students, Prep to Year 6 in Term 1, 2017. \u200b \u200b Students are eligible to enrol in this school if it is the nearest government school to where the student lives. Kathy Sharp\u00a0has been appointed as the\u00a0principal of the\u00a0school.\u200b Facilities The school\u00a0was designed with the local community in mind and\u00a0is a gathering place for local families and residents to enjoy community, arts, sports and recreation programs.\u200b Facilities include:\u200b an Early Learning Centre run by the YMCA that facilitates the\u00a0transition between early childhood learning to primary education an additional multi-purpose space that\u00a0can be\u00a0used by the school during school hours and by the YMCA out of school hours to provide a range of community services and programs an expanded gymnasium built to Netball Victoria standards embedded environmental sustainability education via the CERES ResourceSmart Schools program initiative additional classrooms for students in this high growth area\u200b\u200b conference and meeting rooms for local community use.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for the Public Private Partnership Project across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Tulliallan Primary School." + ], + "field_latitude": ["-38.08175"], + "field_latitude_longitude_value": ["-38.08175,145.32615"], + "field_latitude_value": ["-38.08175"], + "field_longitude": ["145.32615"], + "field_longitude_value": ["145.32615"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["01-5553"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["89 Wheelers Park Dr"], + "field_suburb": ["Cranbourne North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20660], + "status": [true], + "title": ["Tulliallan Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["321fc7e5-f61c-40ce-aec4-37300a242797"] + }, + "sort": ["Tulliallan Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23300:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tunstall-square-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:06:34+11:00"], + "field_about_project_processed": [ + "We are delivering a modular kindergarten room to create 28 additional kindergarten places for 3-year-olds in the local area. The expansion also includes a bathroom and kitchen, and increases the size of the outdoor play space for the children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021-22 Building Blocks Capacity Building Grant, $744,700 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Tunstall Square Kindergarten" + ], + "field_latitude": ["-37.79497353"], + "field_latitude_longitude_value": ["-37.79497353,145.1703618"], + "field_latitude_value": ["-37.79497353"], + "field_longitude": ["145.1703618"], + "field_longitude_value": ["145.1703618"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3109"], + "field_project_code": ["15-451"], + "field_project_title": [ + "Building Blocks Capacity Building Grant - Expansion" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["77 Tunstall Rd"], + "field_suburb": ["Doncaster"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23300], + "status": [true], + "title": ["Tunstall Square Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c64ad8c9-7684-45bf-863c-59a52d9acf62"] + }, + "sort": ["Tunstall Square Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34333:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/turner-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-08-01T16:05:01+10:00"], + "field_about_project_processed": [ + "We\u2019re upgrading Turner Street Kindergarten. We\u2019re adding a new kitchen, lunchroom, bathroom and toilets. We\u2019ll also expand the teaching and learning areas. This upgrade will create an extra 8 kindergarten places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received $500,000 as part of the Building Blocks Partnership between the State Government and Merri-Bek City Council. The Victorian Government has provided $10.7 million to support 11 projects that will create 329 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about the build at Turner Street Kindergarten." + ], + "field_latitude": ["-37.73604649"], + "field_latitude_longitude_value": ["-37.73604649,144.9459393"], + "field_latitude_value": ["-37.73604649"], + "field_longitude": ["144.9459393"], + "field_longitude_value": ["144.9459393"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["15-310"], + "field_project_title": ["Building Blocks Capacity Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Construction"], + "field_street_address": ["38 Turner Street"], + "field_suburb": ["Pascoe Vale South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34333], + "status": [true], + "title": ["Turner Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c4c5ffe9-2dab-4443-ac7b-af8ac52111f7"] + }, + "sort": ["Turner Street Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28963:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/turningpoint-child-care"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We renovated the outdoor area. It is now a versatile space for play-based learning in a sensory-rich setting. Children of all needs and interests can enjoy interactive play experiences. These include a sustainable mud-play kitchen area and a sensory play area. We have also upgraded garden beds, installed water tanks and added more storage sheds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $51,909 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Turningpoint Child Care" + ], + "field_latitude": ["-38.13672233"], + "field_latitude_longitude_value": ["-38.13672233,145.3070815"], + "field_latitude_value": ["-38.13672233"], + "field_longitude": ["145.3070815"], + "field_longitude_value": ["145.3070815"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3977"], + "field_project_code": ["15-5423"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["1785 South Gippsland Hwy"], + "field_suburb": ["Cranbourne East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28963], + "status": [true], + "title": ["Turningpoint Child Care"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["0128e10e-026d-4387-9592-1f77344b275c"] + }, + "sort": ["Turningpoint Child Care"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22641:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/twin-hills-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We built a new deck and pergola to provide rain and sun protection, giving the children more play spaces to enjoy during all kinds of weather." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $80,391 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Twin Hills Preschool" + ], + "field_latitude": ["-37.76614912"], + "field_latitude_longitude_value": ["-37.76614912,145.1151496"], + "field_latitude_value": ["-37.76614912"], + "field_longitude": ["145.1151496"], + "field_longitude_value": ["145.1151496"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3107"], + "field_project_code": ["15-TWINH"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["39 Mayfair Ave"], + "field_suburb": ["Templestowe Lower"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22641], + "status": [true], + "title": ["Twin Hills Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d49884f5-3178-4732-8d71-6a1026d42f3f"] + }, + "sort": ["Twin Hills Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20199:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tyabb-railway-station-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a covered multi-purpose space with tactile sensory equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tyabb Railway Station Primary School" + ], + "field_latitude": ["-38.26224"], + "field_latitude_longitude_value": ["-38.26224,145.19222"], + "field_latitude_value": ["-38.26224"], + "field_longitude": ["145.19222"], + "field_longitude_value": ["145.19222"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3913"], + "field_project_code": ["01-3544"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["88 The Cr"], + "field_suburb": ["Tyabb"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20199], + "status": [true], + "title": ["Tyabb Railway Station Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cf138af5-52cd-49d7-9293-0a91e2e55552"] + }, + "sort": ["Tyabb Railway Station Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20083:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tyers-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Tyers Primary School was\u00a0allocated funding to upgrade facilities.\u00a0 \u200bThe school was\u00a0supported by the Authority to make sure that the building works were in line with the needs of the school community and that they fit in with the school's vision for the future.\u00a0\u200b\u200b", + "We upgraded the oval to provide a safe, level playing field usable in all weather. We resurfaced with natural turf, and installed a drainage system and irrigation.", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$100,000 was allocated to the school in the 2016-17 State Budget update.", + "In the 2020 Minor Capital Works Fund, the school was allocated $487,125.", + "In Round 9 of the Inclusive Schools Fund, the project received $284,641" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Tyers Primary School." + ], + "field_latitude": ["-38.14828", "-38.1489748398804", "-38.149113"], + "field_latitude_longitude_value": ["-38.14828,146.47373"], + "field_latitude_value": ["-38.14828"], + "field_longitude": ["146.47373", "146.479568208934", "146.477545"], + "field_longitude_value": ["146.47373"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3844"], + "field_project_code": ["01-2182", "D1-01-2182", "D2-01-2182"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q2 2018", "Q1 2023", "Q4 2025"], + "field_start_date": ["Q4 2020", "Q4 2023"], + "field_status_name": ["Complete", "Complete", "Planning"], + "field_street_address": ["Main Rd"], + "field_suburb": ["Tyers"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20083], + "status": [true], + "title": ["Tyers Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3ba3cd20-e427-46c5-8658-90f133ebc47b"] + }, + "sort": ["Tyers Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20707:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tylden-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade their outdoor multipurpose court and improve the physical education space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $105,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tylden Primary School." + ], + "field_latitude": ["-37.3251194"], + "field_latitude_longitude_value": ["-37.3251194,144.4090162"], + "field_latitude_value": ["-37.3251194"], + "field_longitude": ["144.4090162"], + "field_longitude_value": ["144.4090162"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3444"], + "field_project_code": ["01-621"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["11 Clowes St"], + "field_suburb": ["Tylden"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20707], + "status": [true], + "title": ["Tylden Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e62b7a77-c2f0-4fc0-91d7-7a0198568e6f"] + }, + "sort": ["Tylden Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20599:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/tyrrell-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an outdoor sensory garden that focuses on stimulating the senses, connecting students to themselves and their learning environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019, $183,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Tyrrell College" + ], + "field_latitude": ["-35.50922"], + "field_latitude_longitude_value": ["-35.50922,142.85284"], + "field_latitude_value": ["-35.50922"], + "field_longitude": ["142.85284"], + "field_longitude_value": ["142.85284"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3533"], + "field_project_code": ["01-5403"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Sutcliff St"], + "field_suburb": ["Sea Lake"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20599], + "status": [true], + "title": ["Tyrrell College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["85f0d9d7-0c0f-419c-b682-1f8aae586b79"] + }, + "sort": ["Tyrrell College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22635:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/undera-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are upgrading the exterior ramp, stairs and handrails and addressing important maintenance issues such as pest control." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $112,500 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Undera Kindergarten" + ], + "field_latitude": ["-36.27598614"], + "field_latitude_longitude_value": ["-36.27598614,145.2193068"], + "field_latitude_value": ["-36.27598614"], + "field_longitude": ["145.2193068"], + "field_longitude_value": ["145.2193068"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["15-UNDERAK"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["55 Anderson St"], + "field_suburb": ["Undera"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22635], + "status": [true], + "title": ["Undera Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7db41250-ea4b-49e1-9307-177c7d217222"] + }, + "sort": ["Undera Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20038:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/undera-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade its playground, with new inclusive play equipment, 'soft-fall' surfacing and shade sails.", + "We completed some general maintenance at the school as well as installing a new rebound wall, automatic door and an honour roll.\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $168,665", + "In the 2016-17 State Budget, $62,000 has been allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Undera Primary School" + ], + "field_latitude": ["-36.2761332", "-36.27641"], + "field_latitude_longitude_value": ["-36.2761332,145.2188884"], + "field_latitude_value": ["-36.2761332"], + "field_longitude": ["145.2188884", "145.21879"], + "field_longitude_value": ["145.2188884"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3629"], + "field_project_code": ["D1-01-1771", "01-1771"], + "field_project_title": [ + "Minor Capital Works Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["45-55 Anderson Street"], + "field_suburb": ["Undera"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20038], + "status": [true], + "title": ["Undera Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["201f82b7-0701-427c-a85c-b9db178c65e9"] + }, + "sort": ["Undera Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21414:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/underbool-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Mildura Rural City Council have\u00a0refurbished\u00a0Underbool Kindergarten, including\u00a0introducing\u00a0an integrated kinder program with long day care service.\u00a0 This\u00a0project extended\u00a0the building with an addition of a multipurpose space.\u00a0The\u00a0bathroom and wet areas have\u00a0also\u00a0been upgraded.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2015\u201316, $50,000 was allocated to the kindergarten." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Underbool Kindergarten" + ], + "field_latitude": ["-35.17042"], + "field_latitude_longitude_value": ["-35.17042,141.8109399"], + "field_latitude_value": ["-35.17042"], + "field_longitude": ["141.8109399"], + "field_longitude_value": ["141.8109399"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3509"], + "field_project_code": ["ELC-28"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["43 Cotter Street"], + "field_suburb": ["Underbool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21414], + "status": [true], + "title": ["Underbool Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e821df34-c940-45d0-9c3f-d8eccb2c6012"] + }, + "sort": ["Underbool Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20226:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/underbool-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the\u00a0school. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $705,000." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Underbool Primary School." + ], + "field_latitude": ["-35.1703049"], + "field_latitude_longitude_value": ["-35.1703049,141.8140894"], + "field_latitude_value": ["-35.1703049"], + "field_longitude": ["141.8140894"], + "field_longitude_value": ["141.8140894"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3509"], + "field_project_code": ["01-3819"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["67 Cotter St"], + "field_suburb": ["Underbool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20226], + "status": [true], + "title": ["Underbool Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["039d8d4e-4558-4673-803c-97b0fdcfd8b0"] + }, + "sort": ["Underbool Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20415:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/university-park-primary-school"], + "changed": ["2023-07-12T14:39:41+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will be upgrading the school entrance and administration building. We will also upgrade classrooms, storage areas and toilets.", + "We upgraded a school bathroom to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $7.4 million", + "In the 2020 Minor Capital Works Fund, the school was allocated $500,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at University Park Primary School." + ], + "field_latitude": ["-37.7551335054302"], + "field_latitude_longitude_value": [ + "-37.7551335054302,144.803104948077" + ], + "field_latitude_value": ["-37.7551335054302"], + "field_longitude": ["144.803104948077"], + "field_longitude_value": ["144.803104948077"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3021"], + "field_project_code": ["D1-01-4945", "01-4945"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2026", "Q3 2023"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["Lister St"], + "field_suburb": ["St Albans"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20415], + "status": [true], + "title": ["University Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7a6861b2-a9e8-4980-abe2-c210ac827131"] + }, + "sort": ["University Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22637:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/unwin-street-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "This grant helped the preschool replace the flooring and paint the centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $50,380 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Unwin Street Preschool" + ], + "field_latitude": ["-36.31247341"], + "field_latitude_longitude_value": ["-36.31247341,145.0439058"], + "field_latitude_value": ["-36.31247341"], + "field_longitude": ["145.0439058"], + "field_longitude_value": ["145.0439058"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3620"], + "field_project_code": ["15-765"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["6 Unwin St"], + "field_suburb": ["Kyabram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22637], + "status": [true], + "title": ["Unwin Street Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["40e7c432-0291-4737-868d-1b940011994d"] + }, + "sort": ["Unwin Street Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21278:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/upfield-kindergartendallas-brooks-community-primary-school" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refreshed the wall and floor finishes. These refreshments create a more inviting space for children, families and kindergarten staff.", + "We delivered a new modular building to Upfield Kindergarten at Dallas Brooks Community Primary School in preparation for the roll-out of subsidised kindergarten for three-year-olds.The building provides families with an additional 33 kindergarten places. It improves the quality of their learning environment and helps local children access two years of high-quality funded kindergarten.", + "We refurbished\u00a0the ramp and play space connected to the new modular building. This integrates the outdoor spaces around the building to provide one continuous and connected kindergarten for three and four-year-olds.", + "Dallas Brooks Primary School increased\u00a0the capacity of the kindergarten to 33, by adding another panel into the modular construction.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $52,294 was allocated to the project.", + "In Round 2 of the 2020\u201321 Building Blocks Capacity Building Grant, $1,195,000 was allocated to the project.", + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $129,500 was allocated to this project.", + "As part of the 2016-2017 Children's Facilities Capital Program Major Grants, $100,773 has been allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Capacity Grant", + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Upfield Kindergarten@Dallas Brooks Community Primary School" + ], + "field_latitude": [ + "-37.671241760253906", + "-37.67314398", + "-37.6731399" + ], + "field_latitude_longitude_value": [ + "-37.671241760253906,144.93663024902344" + ], + "field_latitude_value": ["-37.671241760253906"], + "field_longitude": ["144.93663024902344", "144.9413474", "144.94129"], + "field_longitude_value": ["144.93663024902344"], + "field_mappintype_name": [ + "Early childhood", + "Early childhood", + "Early childhood" + ], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Explore more about kindergartens"], + "field_postcode": ["3047"], + "field_project_code": [ + "D3-15-4549", + "D1-15-4549", + "D2-15-4549", + "15-4549" + ], + "field_project_title": [ + "Building Blocks Improvement Grant", + "Building Blocks Capacity Grant - Modular", + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2023", "Q1 2022", "Q1 2022", "Q1 2018"], + "field_start_date": ["Q4 2022", "Q4 2020", "Q3 2021"], + "field_status_name": ["Complete", "Complete", "Complete", "Complete"], + "field_street_address": ["2 King St"], + "field_suburb": ["Dallas"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21278], + "status": [true], + "title": [ + "Upfield Kindergarten@Dallas Brooks Community Primary School" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b2708fe1-62d1-47a9-af4c-3a98e439c22a"] + }, + "sort": ["Upfield Kindergarten@Dallas Brooks Community Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21194:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upper-ferntree-gully-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0Upper Ferntree Gully Preschool upgrade\u00a0their facilities, with\u00a0an accessible adult bathroom and improved\u00a0children's bathroom. A\u00a0new accessible entry foyer for their internal playroom has also been created." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $169,950.00 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Upper Ferntree Gully Preschool" + ], + "field_latitude": ["-37.89376"], + "field_latitude_longitude_value": ["-37.89376,145.31346"], + "field_latitude_value": ["-37.89376"], + "field_longitude": ["145.31346"], + "field_longitude_value": ["145.31346"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["15-1164"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1 Rollings Road"], + "field_suburb": ["Upper Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21194], + "status": [true], + "title": ["Upper Ferntree Gully Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["371cf68f-7934-4087-8c6c-909dd859ca7d"] + }, + "sort": ["Upper Ferntree Gully Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20237:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upper-ferntree-gully-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped build\u00a0an oral language and sensory play space, consisting of an outdoor area connected to a classroom. There is\u00a0decking, a sand and water area, and accessible benches and ledges at different heights." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Upper Ferntree Gully Primary School" + ], + "field_latitude": ["-37.895604"], + "field_latitude_longitude_value": ["-37.895604,145.314325"], + "field_latitude_value": ["-37.895604"], + "field_longitude": ["145.314325"], + "field_longitude_value": ["145.314325"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3156"], + "field_project_code": ["01-3926"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Talaskia Rd"], + "field_suburb": ["Upper Ferntree Gully"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20237], + "status": [true], + "title": ["Upper Ferntree Gully Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["0fcfd092-4f3f-4cf5-be19-0562ecc03dc2"] + }, + "sort": ["Upper Ferntree Gully Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19970:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upper-plenty-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an outdoor inclusive learning space. It is a landscaped environment with new sensory equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $163,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Upper Plenty Primary School" + ], + "field_latitude": ["-37.4244718"], + "field_latitude_longitude_value": ["-37.4244718,145.0575731"], + "field_latitude_value": ["-37.4244718"], + "field_longitude": ["145.0575731"], + "field_longitude_value": ["145.0575731"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3756"], + "field_project_code": ["01-1244"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Clarkes Road"], + "field_suburb": ["Upper Plenty"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19970], + "status": [true], + "title": ["Upper Plenty Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e8415378-2980-419d-8de5-f6e20a44843a"] + }, + "sort": ["Upper Plenty Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25390:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upper-sandy-creek-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are rebuilding the student toilet block in a new location to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $288,897 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Upper Sandy Creek Primary School" + ], + "field_latitude": ["-36.355178"], + "field_latitude_longitude_value": ["-36.355178,147.112896"], + "field_latitude_value": ["-36.355178"], + "field_longitude": ["147.112896"], + "field_longitude_value": ["147.112896"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3695"], + "field_project_code": ["01-3145"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["1037 Sandy Creek Road"], + "field_suburb": ["Sandy Creek"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25390], + "status": [true], + "title": ["Upper Sandy Creek Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["172e5232-4896-478c-b57e-ffb41875e7b2"] + }, + "sort": ["Upper Sandy Creek Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20865:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upper-yarra-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the library and Block A. In this stage we will: refurbish the library, demolish part of Block A provide some landscaping build a new toilet block build a new learning centre upgrade the sports court. This development builds on the upgrades\u00a0completed in 2020, and further progresses the Lilydale District and Yarra Valley Education Plan\u00a0which\u00a0is revitalising local secondary education.\u00a0", + "As part of the\u00a0Lilydale District and Yarra Valley Education Plan\u00a0\u200bwe refurbished the Integrated Technology Learning Building and demolished part of Block A.", + "As part of the\u00a0Lilydale District and Yarra Valley Education Plan\u00a0we began modernising and upgrading the school.\u00a0 In this stage, we built contemporary learning spaces, including flexible use indoor and outdoor spaces. We also created a state-of-the-art science and technology building and completed landscaping works. The modernisation ensures the school is equipped for\u00a0modern\u00a0learning that supports students\u00a0intellectually, and gives them hands-on opportunities that will help them learn throughout school and beyond. The new facilities also encourage\u00a0social engagement among students, parents/carers and teachers, and can be shared\u00a0across the six schools in\u00a0the education plan." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6 million. In 2022, the school was allocated $1.58 million.", + "In 2020, the school received $4.13 million to deliver the next stage of the upgrade.", + "In the 2018\u201319 State Budget, $6.2 million was allocated to the school as part of the Lilydale and Upper Yarra Education Plan." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Upper Yarra Secondary College" + ], + "field_latitude": ["-37.780097961425781", "-37.790878", "-37.792591"], + "field_latitude_longitude_value": [ + "-37.780097961425781,145.61306762695312" + ], + "field_latitude_value": ["-37.780097961425781"], + "field_longitude": ["145.61306762695312", "145.624893", "145.624405"], + "field_longitude_value": ["145.61306762695312"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Upgrades at Upper Yarra Secondary College", + "Upper Yarra Secondary College \u2013 upgrades", + "Upper Yarra Secondary College \u2013 new facilities" + ], + "field_postcode": ["3797"], + "field_project_code": ["D2-01-8410", "D1-01-8410", "01-8410"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q3 2022", "Q1 2021"], + "field_start_date": ["Q4 2020", "Q2 2020", "Q2 2018"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["81-89 Little Yarra Rd"], + "field_suburb": ["Yarra Junction"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20865], + "status": [true], + "title": ["Upper Yarra Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2a696f23-8ab7-4bc6-b664-f8a581eda45f"] + }, + "sort": ["Upper Yarra Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20866:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upwey-high-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised Upwey High School over three stages. Stage 1 We opened the multipurpose building in March 2020. The building includes, a competition-grade gymnasium with four courts, administration wing and performing art facilities with recording space. The wider community can use these facilities outside of school hours. This was funded in the 2017\u201318 State Budget\u200b. Stage 2 In stage two, we built an\u00a0art, science, and technology building and demolished the old stadium. This was funded in the 2018\u201319 State Budget.\u200b\u200b Stage 3 We completed two building refurbishments. They included: refurbishing\u00a0the former administration area to become a new learning support area refurbishing\u00a0Block C to include a new home economics and technology wing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This includes funding for Upwey High School. In the 2017\u201318 State Budget, $10 million was allocated to the school. In the 2018\u201319 State Budget, the school received $13.9 million to complete Stage 2 of the school master plan. In the 2019-20 State Budget, the school received $2.7 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Upwey High School" + ], + "field_latitude": ["-37.904579"], + "field_latitude_longitude_value": ["-37.904579,145.335236"], + "field_latitude_value": ["-37.904579"], + "field_longitude": ["145.335236"], + "field_longitude_value": ["145.335236"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3158"], + "field_project_code": ["01-8415"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["1451 Burwood Highway"], + "field_suburb": ["Upwey"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20866], + "status": [true], + "title": ["Upwey High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fd48e5d6-099f-4e35-be6f-9976e6832187"] + }, + "sort": ["Upwey High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20299:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upwey-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced the playgrounds with new ones featuring soft-fall surfaces and shade sails." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $353,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Upwey Primary School." + ], + "field_latitude": ["-37.9029138"], + "field_latitude_longitude_value": ["-37.9029138,145.332792"], + "field_latitude_value": ["-37.9029138"], + "field_longitude": ["145.332792"], + "field_longitude_value": ["145.332792"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3158"], + "field_project_code": ["01-4530"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Darling Av"], + "field_suburb": ["Upwey"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20299], + "status": [true], + "title": ["Upwey Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["df028b7a-3c9f-4e54-a68b-9b923b972a01"] + }, + "sort": ["Upwey Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20393:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/upwey-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive outdoor learning space. This landscaped area includes new play equipment and seating." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Upwey South Primary School" + ], + "field_latitude": ["-37.913435"], + "field_latitude_longitude_value": ["-37.913435,145.3267811"], + "field_latitude_value": ["-37.913435"], + "field_longitude": ["145.3267811"], + "field_longitude_value": ["145.3267811"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3158"], + "field_project_code": ["01-4894"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["91 Morris Road"], + "field_suburb": ["Upwey"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20393], + "status": [true], + "title": ["Upwey South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["da659315-af7b-4920-b393-89362d3f79f6"] + }, + "sort": ["Upwey South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20351:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/valkstone-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We've completed the second stage of upgrading and modernising this school.\u200b\u200b We built a new learning area in Block B. We refurbished the eastern part of the school\u2019s Block A building, including: the library, art room, eight general-purpose classrooms, computer areas. \u200b The new spaces will improve connections between indoor and outdoor spaces and provide easier access to toilets and amenities. They will also help teachers interact with students and accommodate growth in student number\u200bs.", + "We completed Stage 1 which rebuilt\u00a0four classrooms and the administration facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $3.7 million was allocated to the school. In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This includes funding for Valkstone Primary School.", + "In the 2017\u201318 State Budget, $3.7 million was allocated to the school. In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This includes funding for Valkstone Primary School." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Valkstone Primary School" + ], + "field_latitude": ["-37.91361", "-37.91361"], + "field_latitude_longitude_value": ["-37.91361,145.0526999"], + "field_latitude_value": ["-37.91361"], + "field_longitude": ["145.0526999", "145.0526999"], + "field_longitude_value": ["145.0526999"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3165"], + "field_project_code": ["01-4778", "D1-01-4778"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q4 2018", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Valkstone Street"], + "field_suburb": ["Bentleigh East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20351], + "status": [true], + "title": ["Valkstone Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7ec00cb0-8d21-4e2c-a35c-db21a55a9b21"] + }, + "sort": ["Valkstone Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25471:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/vermont-primary-school-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-10T12:57:43+10:00"], + "field_about_project_processed": [ + "We upgraded the outdoor environment and landscaping to make it more inclusive for children of all abilities and to better reflect the surrounding natural environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 Building Blocks Inclusion Grants, $200,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Vermont Primary School Kindergarten." + ], + "field_latitude": ["-37.83689733"], + "field_latitude_longitude_value": ["-37.83689733,145.1940576"], + "field_latitude_value": ["-37.83689733"], + "field_longitude": ["145.1940576"], + "field_longitude_value": ["145.1940576"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3133"], + "field_project_code": ["15-VPSK"], + "field_project_title": [ + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Nurlendi Rd"], + "field_suburb": ["Vermont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25471], + "status": [true], + "title": ["Vermont Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["8b5433c3-11c0-4b4e-b66c-c68576b1ccca"] + }, + "sort": ["Vermont Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20867:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/vermont-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing the upgrade of the school by building a competition-grade gym.", + "We delivered\u00a0a new architect-designed modular building to the school to replace Block C.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $650,000 in planning funding. In the 2020\u201321 State Budget, the school received $5.85 million.", + "In Round 3 of the program, the school was allocated $4,873,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Vermont Secondary College" + ], + "field_latitude": ["-37.835887908935547", "-37.844330"], + "field_latitude_longitude_value": [ + "-37.835887908935547,145.21467590332031" + ], + "field_latitude_value": ["-37.835887908935547"], + "field_longitude": ["145.21467590332031", "145.201508"], + "field_longitude_value": ["145.21467590332031"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3133"], + "field_project_code": ["D1-01-8420", "01-8420"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2023", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["27-63 Morack Rd"], + "field_suburb": ["Vermont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20867], + "status": [true], + "title": ["Vermont Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1b8f8a96-b445-486a-8c51-d59b3e04a852"] + }, + "sort": ["Vermont Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20447:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/vermont-south-special-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising this school. It will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. This will help ensure students have the learning environments they need to achieve their full potential.", + "We built an outdoor learning space with accessible play equipment for students. The new equipment consists of an inclusive carousel, an all-abilities climbing frame, a balance beam, a track ride, a large in-ground trampoline, a nest swing, a spica. In addition, we also installed\u00a0tables and bench seating for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.108 million.", + "In 2018, $188,978 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Vermont South Special School" + ], + "field_latitude": ["-37.855312347412109", "-37.85114"], + "field_latitude_longitude_value": [ + "-37.855312347412109,145.18975830078125" + ], + "field_latitude_value": ["-37.855312347412109"], + "field_longitude": ["145.18975830078125", "145.180596"], + "field_longitude_value": ["145.18975830078125"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3133"], + "field_project_code": ["D1-01-5025", "01-5025"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q4 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["22-30 Livingstone Rd"], + "field_suburb": ["Vermont South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20447], + "status": [true], + "title": ["Vermont South Special School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["55e1e823-6e31-445e-b78c-b9c3ba2b7c17"] + }, + "sort": ["Vermont South Special School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25273:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/verney-road-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-23T15:47:12+10:00"], + "field_about_project_processed": [ + "We are modernising the former Wanganui Park Secondary College to create a new home for Verney Road School. The new campus will be ready by 2026. Students will have more space and better learning opportunities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $23.782 million. In the 2021-22 State Budget, this project received $1 million for planning." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Verney Road School" + ], + "field_latitude": ["-36.367444"], + "field_latitude_longitude_value": ["-36.367444,145.415292"], + "field_latitude_value": ["-36.367444"], + "field_longitude": ["145.415292"], + "field_longitude_value": ["145.415292"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["01-5153"], + "field_project_title": ["Upgrade and Modernisation - Stage 1"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["2 Verney Road"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25273], + "status": [true], + "title": ["Verney Road School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["77d13b93-55ff-4b76-9a01-5f694f1b50db"] + }, + "sort": ["Verney Road School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20464:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/victoria-road-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Victoria Road Primary School (previously\u00a0Lilydale West Primary School). We refurbished student toilets, general purpose classrooms, collaborative spaces and staff work space in the main classroom wing (Building A). We also built two new general-purpose classrooms.", + "We built an indoor/outdoor learning hub." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2.11 million was allocated to the school.", + "In 2019, $139,797 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Victoria Road Primary School" + ], + "field_latitude": ["-37.75634", "-37.75572"], + "field_latitude_longitude_value": ["-37.75634,145.33913"], + "field_latitude_value": ["-37.75634"], + "field_longitude": ["145.33913", "145.33684"], + "field_longitude_value": ["145.33913"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3140"], + "field_project_code": ["01-5057", "D1-01-5057"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2019", "Q1 2022"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Victoria Rd"], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20464], + "status": [true], + "title": ["Victoria Road Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c302a748-6b36-4662-bfc8-f3a910395ac6"] + }, + "sort": ["Victoria Road Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21457:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victoria-university-childrens-centre-footscray-nicholson" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe upgraded the centre. This upgrade will create extra places for children and staff moving from the Footscray Park centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $240,750 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Victoria University Children's Centre - Footscray Nicholson." + ], + "field_latitude": ["-37.804970"], + "field_latitude_longitude_value": ["-37.804970,144.898300"], + "field_latitude_value": ["-37.804970"], + "field_longitude": ["144.898300"], + "field_longitude_value": ["144.898300"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3011"], + "field_project_code": ["ELC-VU"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Victoria University Nicholson Campus, Albert St" + ], + "field_suburb": ["Footscray"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21457], + "status": [true], + "title": [ + "Victoria University Children's Centre - Footscray Nicholson" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["203a0f93-c353-4e30-8f33-6f01fea7efe1"] + }, + "sort": ["Victoria University Children's Centre - Footscray Nicholson"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20961:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/victoria-university-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed\u00a0a\u00a0major upgrade and modernisation\u00a0of the school's Cairnlea campus. This\u00a0included\u00a0a new building for food technology and performing arts, which\u00a0incorporates a theatre, music rooms and a canteen/cafe. We\u00a0also constructed new technology, science and maths facilities, including\u00a0multimedia studios\u00a0and spaces for collaborative learning. A new 'learning village'\u00a0incorporates modern classrooms with a central library, as well as\u00a0sports\u00a0fields and hard courts.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $7 million was allocated to schools across the state for planning, including Victoria University Secondary College. In the 2019-20 State Budget, the school received $23.946 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Victoria University Secondary College" + ], + "field_latitude": ["-37.74039"], + "field_latitude_longitude_value": ["-37.74039,144.7846999"], + "field_latitude_value": ["-37.74039"], + "field_longitude": ["144.7846999"], + "field_longitude_value": ["144.7846999"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3023"], + "field_project_code": ["01-8891"], + "field_project_title": [ + "Upgrade and Modernisation - Cairnlea Campus" + ], + "field_q_complete": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr Ken Jordan Rd and Nobel Banks Dve"], + "field_suburb": ["Cairnlea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20961], + "status": [true], + "title": ["Victoria University Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a4948929-5901-4c22-a5c3-bb70bb021c4a"] + }, + "sort": ["Victoria University Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20986:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/victorian-academy-teaching-and-leadership"], + "changed": ["2023-09-20T20:41:24+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership is a statutory authority to deliver a new Australian-first program of advanced professional learning for high-performing teachers in government, Catholic and Independent schools.The Victorian Academy of Teaching and Leadership is based in a purpose-designed CBD site at 41 St Andrews Place, East Melbourne, and the existing site in North Melbourne. Additional sites in 7 regional centres ensure rural and regional teachers and leaders are able to access high-quality professional learning regardless of their location.The CBD site, as the Academy's home, has been upgraded and modernised. We transformed the Victorian Heritage Register-listed building into a state-of-the-art, contemporary adult learning and teaching facility. The Academy supports a blended model of on-site and online learning, enabling the state's most exceptional teachers and school leaders to enhance their professional practice and connect with each other. The Academy's CBD centre also provides presentation and function spaces to host conferences, visiting professors and academics.The Academy\u2019s regional centres will ensure that school leaders and our most exceptional teachers and school leaders from rural and regional areas can connect remotely with their statewide counterparts, beaming into other Academy centres and schools to share their expertise and undertake professional learning together. Find out more about the regional centres:BairnsdaleBallaratBendigoGeelongMilduraMoeShepparton" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional centres." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn more about the build of Victorian Academy of Teaching and Leadership." + ], + "field_latitude": ["-37.81238345"], + "field_latitude_longitude_value": ["-37.81238345,144.9761336"], + "field_latitude_value": ["-37.81238345"], + "field_longitude": ["144.9761336"], + "field_longitude_value": ["144.9761336"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/VATL-221021-feature-tile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3002"], + "field_project_code": ["01-VATL"], + "field_project_title": ["New Academy"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["41 St Andrews Pl"], + "field_suburb": ["East Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20986], + "status": [true], + "title": ["Victorian Academy of Teaching and Leadership"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["44446c74-4ffc-4c77-9df6-b8a00b89d2e3"] + }, + "sort": ["Victorian Academy of Teaching and Leadership"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35095:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victorian-academy-teaching-and-leadership-bairnsdale" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-20T10:22:02+10:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership helps great teachers become exceptional. It offers advanced professional learning for high-performing teachers and leaders in government, Catholic and Independent schools. The Academy has 2 Melbourne centres and 7 across regional Victoria. This gives city, rural and regional staff the same opportunities to share their skills and raise new standards of teaching.The Bairnsdale centre is in the heart of the city. The renovated, state-of-the art building has:2 learning studios equipped for a range of presentation stylesa design-thinking spacea remote-learning studio.\u00a0You can view the other Victorian Academy of Teaching and Leadership centres:\u00a0BallaratBendigoGeelongMelbourne\u00a0MilduraMoeShepparton" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional sites." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn about the build of this Victorian Academy of Teaching and Leadership site" + ], + "field_latitude": ["-37.82649993"], + "field_latitude_longitude_value": ["-37.82649993,147.6300052"], + "field_latitude_value": ["-37.82649993"], + "field_longitude": ["147.6300052"], + "field_longitude_value": ["147.6300052"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["VATL-06"], + "field_project_title": ["New Academy Site"], + "field_q_complete": ["Q3 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["179 Main Street"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35095], + "status": [true], + "title": [ + "Victorian Academy of Teaching and Leadership - Bairnsdale" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b9260fe5-49db-4d3c-ba38-5a22fbe1e7a4"] + }, + "sort": ["Victorian Academy of Teaching and Leadership - Bairnsdale"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35091:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victorian-academy-teaching-and-leadership-ballarat" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-20T10:22:02+10:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership helps great teachers become exceptional. It offers advanced professional learning for high-performing teachers and leaders in government, Catholic and Independent schools. The Academy has 2 Melbourne centres and 7 across regional Victoria. This gives city, rural and regional staff the same opportunities to share their skills and raise new standards of teaching.The Ballarat centre is in the city\u2019s historic central business district. It operates from a late 20th century building previously used by TAFE and the Victorian Department of Education. The space includes:a learning studioa design-thinking space\u00a04 remote learning studios.You can view the other Victorian Academy of Teaching and Leadership centres:\u00a0BairnsdaleBendigoGeelongMelbourne\u00a0MilduraMoeShepparton" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional sites." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn about the build of this Victorian Academy of Teaching and Leadership site" + ], + "field_latitude": ["-37.56053642"], + "field_latitude_longitude_value": ["-37.56053642,143.8593761"], + "field_latitude_value": ["-37.56053642"], + "field_longitude": ["143.8593761"], + "field_longitude_value": ["143.8593761"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["VATL-02"], + "field_project_title": ["New Academy Site"], + "field_q_complete": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["36 Camp Street"], + "field_suburb": ["Ballarat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35091], + "status": [true], + "title": ["Victorian Academy of Teaching and Leadership - Ballarat"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["cdb5923a-2336-4ddc-8099-0b261a7e1334"] + }, + "sort": ["Victorian Academy of Teaching and Leadership - Ballarat"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35092:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victorian-academy-teaching-and-leadership-bendigo" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-20T10:22:02+10:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership helps great teachers become exceptional. It offers advanced professional learning for high-performing teachers and leaders in government, Catholic and Independent schools. The Academy has 2 Melbourne centres and 7 across regional Victoria. This gives city, rural and regional staff the same opportunities to share their skills and raise new standards of teaching.We\u2019ve set up a temporary centre for Bendigo. This light-filled, fresh and modern building is located centrally opposite Rosalind Park. The space includes a learning studio for 25 people and 3 small meeting rooms. It will move to a larger, state-of-the-art permanent home in 2024. This centre will have multiple learning studios and a design-thinking space.You can view the other Victorian Academy of Teaching and Leadership centres:\u00a0BairnsdaleBallaratGeelongMelbourne\u00a0MilduraMoeShepparton" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional sites." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn about the build of this Victorian Academy of Teaching and Leadership site" + ], + "field_latitude": ["-36.75867648"], + "field_latitude_longitude_value": ["-36.75867648,144.2800765"], + "field_latitude_value": ["-36.75867648"], + "field_longitude": ["144.2800765"], + "field_longitude_value": ["144.2800765"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["VATL-03"], + "field_project_title": ["New Academy Site"], + "field_q_complete": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["48 Pall Mall"], + "field_suburb": ["Bendigo"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35092], + "status": [true], + "title": ["Victorian Academy of Teaching and Leadership - Bendigo"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a5fce9c1-8002-4386-9e1e-077fd10f2012"] + }, + "sort": ["Victorian Academy of Teaching and Leadership - Bendigo"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35093:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victorian-academy-teaching-and-leadership-geelong" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-20T10:22:02+10:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership helps great teachers become exceptional. It offers advanced professional learning for high-performing teachers and leaders in government, Catholic and Independent schools. The Academy has 2 Melbourne centres and 7 across regional Victoria. This gives city, rural and regional staff the same opportunities to share their skills and raise new standards of teaching.The Geelong centre is a beautifully restored, mid-century building. It has large state-of-the-art learning spaces. It also has smaller studios for online and hybrid workshops.\u00a0You can view the other Victorian Academy of Teaching and Leadership centres:\u00a0BairnsdaleBallaratBendigoMelbourne\u00a0MilduraMoeShepparton" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional sites." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn about the build of this Victorian Academy of Teaching and Leadership site" + ], + "field_latitude": ["-38.14857586"], + "field_latitude_longitude_value": ["-38.14857586,144.3539342"], + "field_latitude_value": ["-38.14857586"], + "field_longitude": ["144.3539342"], + "field_longitude_value": ["144.3539342"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3220"], + "field_project_code": ["VATL-04"], + "field_project_title": ["New Academy Site"], + "field_q_complete": ["Q1 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["5A Little Ryrie Street"], + "field_suburb": ["Geelong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35093], + "status": [true], + "title": ["Victorian Academy of Teaching and Leadership - Geelong"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b57ab9fb-46c0-44dd-b2a3-b8d9278a9ed7"] + }, + "sort": ["Victorian Academy of Teaching and Leadership - Geelong"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35097:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victorian-academy-teaching-and-leadership-mildura" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-20T10:22:02+10:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership helps great teachers become exceptional. It offers advanced professional learning for high-performing teachers and leaders in government, Catholic and Independent schools. The Academy has 2 Melbourne centres and 7 across regional Victoria. This gives city, rural and regional staff the same opportunities to share their skills and raise new standards of teaching.The Mildura centre is near Ornamental Lakes Park. The renovated, state-of-the-art building has:2 learning studios that can be used for cabaret and theatre-style presentationsa design-thinking space2 remote learning studios.\u00a0You can view the other Victorian Academy of Teaching and Leadership centres:\u00a0BairnsdaleBallaratBendigoGeelongMelbourne\u00a0MoeShepparton" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional sites." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn about the build of this Victorian Academy of Teaching and Leadership site" + ], + "field_latitude": ["-34.18655785"], + "field_latitude_longitude_value": ["-34.18655785,142.16771"], + "field_latitude_value": ["-34.18655785"], + "field_longitude": ["142.16771"], + "field_longitude_value": ["142.16771"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3500"], + "field_project_code": ["VATL-08"], + "field_project_title": ["New Academy Site"], + "field_q_complete": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["97 Seventh Street"], + "field_suburb": ["Mildura"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35097], + "status": [true], + "title": ["Victorian Academy of Teaching and Leadership - Mildura"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a68cbcb6-f7e8-4a92-a8ab-928f49821c09"] + }, + "sort": ["Victorian Academy of Teaching and Leadership - Mildura"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35094:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/victorian-academy-teaching-and-leadership-moe"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-20T10:22:02+10:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership helps great teachers become exceptional. It offers advanced professional learning for high-performing teachers and leaders in government, Catholic and Independent schools. The Academy has 2 Melbourne centres and 7 across regional Victoria. This gives city, rural and regional staff the same opportunities to share their skills and raise new standards of teaching.The Moe centre is in the town\u2019s central business district. The renovated space includes:2 multi-purpose learning studios\u00a0a design-thinking space3 remote learning studios.You can view the other Victorian Academy of Teaching and Leadership centres:\u00a0BairnsdaleBallaratBendigoGeelongMelbourne\u00a0MilduraShepparton" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional sites." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn about the build of this Victorian Academy of Teaching and Leadership site" + ], + "field_latitude": ["-38.17411176"], + "field_latitude_longitude_value": ["-38.17411176,146.2631744"], + "field_latitude_value": ["-38.17411176"], + "field_longitude": ["146.2631744"], + "field_longitude_value": ["146.2631744"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["VATL-05"], + "field_project_title": ["New Academy Site"], + "field_q_complete": ["Q2 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["32 Kirk Street"], + "field_suburb": ["Moe"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35094], + "status": [true], + "title": ["Victorian Academy of Teaching and Leadership - Moe"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2730f00e-e229-48bf-9ae1-1cf58721e539"] + }, + "sort": ["Victorian Academy of Teaching and Leadership - Moe"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35096:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victorian-academy-teaching-and-leadership-shepparton" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-20T10:22:02+10:00"], + "field_about_project_processed": [ + "The Victorian Academy of Teaching and Leadership helps great teachers become exceptional. It offers advanced professional learning for high-performing teachers and leaders in government, Catholic and Independent schools. The Academy has 2 Melbourne centres and 7 across regional Victoria. This gives city, rural and regional staff the same opportunities to share their skills and raise new standards of teaching.The Shepparton centre is near Victoria Park Lake. It's a short walk to the central business district. The renovated space has:\u00a02 multipurpose learning studios\u00a0a design-thinking space2 small meeting rooms.\u00a0You can view the other Victorian Academy of Teaching and Leadership centres:\u00a0BairnsdaleBallaratBendigoGeelongMelbourne\u00a0MilduraMoe" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The Academy has received $33.814 million to develop its CBD and 7 regional sites." + ], + "field_funding_type_name": ["New Academy"], + "field_landing_page_summary": [ + "Learn about the build of this Victorian Academy of Teaching and Leadership site" + ], + "field_latitude": ["-36.38501749"], + "field_latitude_longitude_value": ["-36.38501749,145.3994812"], + "field_latitude_value": ["-36.38501749"], + "field_longitude": ["145.3994812"], + "field_longitude_value": ["145.3994812"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["VATL-07"], + "field_project_title": ["New Academy Site"], + "field_q_complete": ["Q3 2023"], + "field_status_name": ["Complete"], + "field_street_address": ["17 Sobraon Street"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35096], + "status": [true], + "title": [ + "Victorian Academy of Teaching and Leadership - Shepparton" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ff9bfda7-516d-473f-974e-b2338526de81"] + }, + "sort": ["Victorian Academy of Teaching and Leadership - Shepparton"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20222:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/victorian-college-deaf"], + "changed": ["2023-07-25T12:56:45+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the college. It will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million.\u00a0We are planning this major upgrade with the school and Deaf Children Australia, who will continue to share the St Kilda Rd site. This will help ensure students have the learning environments they need to achieve their full potential." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $10 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Victorian College For The Deaf" + ], + "field_latitude": ["-37.815460205078125"], + "field_latitude_longitude_value": [ + "-37.815460205078125,144.9671630859375" + ], + "field_latitude_value": ["-37.815460205078125"], + "field_longitude": ["144.9671630859375"], + "field_longitude_value": ["144.9671630859375"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3004"], + "field_project_code": ["01-3774"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design"], + "field_street_address": ["597 St Kilda Road"], + "field_suburb": ["Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20222], + "status": [true], + "title": ["Victorian College For The Deaf"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["da2a9f1c-5958-40c3-9a07-fd3069109bad"] + }, + "sort": ["Victorian College For The Deaf"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20753:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/victorian-college-arts-secondary-school-albert-park-college" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building state-of-the-art performance and rehearsal spaces for students from the Victorian College of the Arts Secondary School and Albert Park College.\u00a0 This will be the first stage of a creative facility that can be shared with the wider community.\u00a0 We are working with the schools and Gasworks Arts Park. Why was this location chosen? The Department of Education considers factors such as the proximity and accessibility of surrounding schools, the availability of a suitable site, and the ability to co-locate complementary facilities when identifying new school sites. Land within the vicinity of both Albert Park College and the Victorian College of the Arts Secondary School were considered for the project. The Gasworks Park site was determined as the preferred site for the new creative facility for the schools. Multinet Gas, a utility company, previously owned the site. The Minister for Education purchased the site for the development of these proposed education facilities. The land has no heritage implications. Where is the building located and what was the site previously used for? The corner of Pickle and Richardson Street, Albert Park. In the past, the existing site housed gas valves and served as a site for Multinet Gas infrastructure. Multinet Gas decommissioned equipment in early 2022, and land was handed over to the Department of Education in mid-2022. Will the walls around the old Multinet Gas site be retained? All walls built prior to 1950 will be integrated into the design, unaltered. We will look to use the existing 1850\u2019s fa\u00e7ade of the Old Gasworks Site to form internal aspects of the new performing arts centre. Some walls constructed after 1950 will be adjusted to suit the new school building. The department will not be building on or modifying structures on public land within Gasworks Park. When will construction start and finish? And how will the community be notified? We are hoping to appoint a builder in the coming months. Site preparation works will begin shortly after, followed by initial demolition works. Once a builder has been appointed, we will circulate a construction letter to the neighbouring community to provide greater information and an updated timeline, where possible. The current forecast date for completion is Term 4, 2024. Will there be parking on site? There is no parking provided on site. The proximity of both schools to the performance and rehearsal space means that most students will be able to walk or use public transport. The facility will be easily accessed via public transport and off-street parking is available in the immediate vicinity. How do I keep up to date with the project? This project page will be updated with further information as the project progresses. Subscribe to our mailing list to stay up to date with the latest information on the project." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, this project received $1.25 million. In 2020, this project received $11.25 million. In the 2021\u201322 State Budget, the project received $15.364 million. A further $2.125 million was allocated in 2022." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Victorian College Of The Arts Secondary School & Albert Park College." + ], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3206"], + "field_project_code": ["01-7384"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Design"], + "field_suburb": ["Albert Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20753], + "status": [true], + "title": [ + "Victorian College Of The Arts Secondary School & Albert Park College" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a3cfc03f-2615-43d1-8eeb-03f5dfd8adb4"] + }, + "sort": [ + "Victorian College Of The Arts Secondary School & Albert Park College" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21168:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/victory-christian-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school construct a new building that gives it the modern learning spaces it needs to accommodate its growing number of secondary students.\u00a0 The new facilities include science and technology labs, a food technology room, multiple general learning areas and collaborative spaces, staff offices and toilets.", + "We supported the school to build\u00a0a new 2-storey Years 9\u201310 complex which\u00a0includes learning areas, science and art facilities, storage and amenities. As part of the project, the adjacent sports oval was also refurbished.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2021\u201322 capital funding program for non-government schools, the school received $2.2 million.", + "As part of the 2017\u201318 Capital Funding Program for Non-Government Schools, $2,024,179 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": [ + "Non-Government Schools Capital Fund", + "Non-Government Schools Capital Fund" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Victory Christian College." + ], + "field_latitude": ["-36.7825475408667", "-36.782837"], + "field_latitude_longitude_value": [ + "-36.7825475408667,144.313915999011" + ], + "field_latitude_value": ["-36.7825475408667"], + "field_longitude": ["144.313915999011", "144.312943"], + "field_longitude_value": ["144.313915999011"], + "field_mappintype_name": [ + "Non-government grant", + "Non-government grant" + ], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["D1-03-1946", "03-1946"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2021-22", + "Non-Government Schools Capital Fund" + ], + "field_q_complete": ["Q1 2023", "Q2 2019"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["6 Kairn Rd"], + "field_suburb": ["Strathdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21168], + "status": [true], + "title": ["Victory Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["70e0ead2-d478-4fca-9349-1ba5a7a46ea0"] + }, + "sort": ["Victory Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21166:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/victory-lutheran-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported the school to construct a Years 3\u20134 learning hub, drama facility and multi-purpose hall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Under the 2020\u201321 capital funding program for non-government schools, the school received $1.485 million." + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Victory Lutheran College" + ], + "field_latitude": ["-36.1169653"], + "field_latitude_longitude_value": ["-36.1169653,146.8466334"], + "field_latitude_value": ["-36.1169653"], + "field_longitude": ["146.8466334"], + "field_longitude_value": ["146.8466334"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["03-1937"], + "field_project_title": [ + "Non-Government Schools Capital Fund - 2020-21" + ], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["28 Drage Road"], + "field_suburb": ["WODONGA"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21166], + "status": [true], + "title": ["Victory Lutheran College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c9d340dd-55ff-412a-9f47-144d87a8eae5"] + }, + "sort": ["Victory Lutheran College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20924:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/viewbank-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bWe upgraded the school. This major modernisation project included\u00a0constructing a two-storey performing arts centre that\u00a0provides the school with a theatre, as well as music and drama teaching facilities. We\u00a0also upgraded science, technology, engineering, arts and mathematics (STEAM) learning areas.\u200b\u200b", + "We are refurbishing the student toilets in the canteen and Block A, and making minor repairs to windows in Block G toilets, to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $11.5 million was allocated to the school.", + "In the 2022\u201323 State Budget the project received $495,627 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Viewbank College" + ], + "field_latitude": ["-37.74098", "-37.741196"], + "field_latitude_longitude_value": ["-37.74098,145.08644"], + "field_latitude_value": ["-37.74098"], + "field_longitude": ["145.08644", "145.08659"], + "field_longitude_value": ["145.08644"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["01-8812", "D1-01-8812"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2018", "Q4 2023"], + "field_start_date": ["Q1 2017", "Q2 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["Warren Rd"], + "field_suburb": ["Rosanna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20924], + "status": [true], + "title": ["Viewbank College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7485477c-b947-4dbe-a576-8766ca1fd914"] + }, + "sort": ["Viewbank College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20391:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/viewbank-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing to improve the school.\u00a0We are building a new administration building and demolishing old facilities. We are also moving 3 and installing 5 new relocatable buildings. This will create a new learning precinct for Viewbank Primary School.", + "We removed buildings containing asbestos and delivered a new modular building to the school. The new building\u00a0replaced the northern classroom building and features general purpose classrooms, withdrawal spaces, staff toilets and an accessible toilet. \u200b\u200b\u200bOur modular facilities require less time for planning and construction, resulting in reduced disruption to students, staff and teaching programs. They are sustainable and innovatively designed, with a comparable lifespan to bricks and \u200bmortar structures." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $6.954 million.", + "In the 2019\u201320 State Budget, the school received $3.817 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Viewbank Primary School." + ], + "field_latitude": ["-37.733495", "-37.73473"], + "field_latitude_longitude_value": ["-37.733495,145.08972"], + "field_latitude_value": ["-37.733495"], + "field_longitude": ["145.08972", "145.08999"], + "field_longitude_value": ["145.08972"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["D1-01-4892", "01-4892"], + "field_project_title": [ + "Upgrade and Modernisation", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2023", "Q3 2020"], + "field_start_date": ["Q2 2021", "Q2 2019"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Nevin Pde"], + "field_suburb": ["Viewbank"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20391], + "status": [true], + "title": ["Viewbank Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6a1c211f-ec67-4945-b8b9-1115de7c37c2"] + }, + "sort": ["Viewbank Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20722:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/virtual-school-victoria"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0an inclusive student-centred IT learning space, with a range of core breakout spaces and a flexible design to enable a variety of group sizes and purposes. This\u00a0includes new doors, floors, glazed screens and internal walls." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $152,100 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Virtual School Victoria" + ], + "field_latitude": ["-37.76204"], + "field_latitude_longitude_value": ["-37.76204,145.025701"], + "field_latitude_value": ["-37.76204"], + "field_longitude": ["145.025701"], + "field_longitude_value": ["145.025701"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3071"], + "field_project_code": ["01-6261"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q1 2020"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["315 Clarendon St"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20722], + "status": [true], + "title": ["Virtual School Victoria"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["90020730-f208-411d-a62e-b50585be0676"] + }, + "sort": ["Virtual School Victoria"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20598:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/waaia-yalca-south-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school. This included: improving\u00a0building insulation and air flow building accessibility ramps to the main block upgrading the toilets landscaping works, with new garden beds and benches.", + "We refurbished\u00a0student bathrooms and staff offices at the school.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $778,000.", + "In the 2016\u201317 State Budget, $60,000 was allocated to the school from the School Pride and Sports Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund", + "Planned Maintenance Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Waaia Yalca South Primary School." + ], + "field_latitude": ["-36.0515283", "-36.05055"], + "field_latitude_longitude_value": ["-36.0515283,145.3287767"], + "field_latitude_value": ["-36.0515283"], + "field_longitude": ["145.3287767", "145.32843"], + "field_longitude_value": ["145.3287767"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3637"], + "field_project_code": ["D1-01-5401", "01-5401"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Pride and Sports Fund, Planned Maintenance Program" + ], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["1 Cowan St"], + "field_suburb": ["Waaia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20598], + "status": [true], + "title": ["Waaia Yalca South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5b0d03ba-03bf-48b5-8c4b-5f3a174a2846"] + }, + "sort": ["Waaia Yalca South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20724:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wahgunyah-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We restored the original school building, which has historic significance for the school and local community." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $456,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wahgunyah Primary School." + ], + "field_latitude": ["-36.0126849"], + "field_latitude_longitude_value": ["-36.0126849,146.392279"], + "field_latitude_value": ["-36.0126849"], + "field_longitude": ["146.392279"], + "field_longitude_value": ["146.392279"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3687"], + "field_project_code": ["01-644"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Elizabeth St"], + "field_suburb": ["Wahgunyah"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20724], + "status": [true], + "title": ["Wahgunyah Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6db3954f-9197-4441-be49-1d6f74171b41"] + }, + "sort": ["Wahgunyah Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23318:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wahroonga-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We are renovating the kitchen and kitchenette. We will also install skylights. These modern kitchen areas will be more sustainable and used for a variety of new learning activities. They will be accessible to children of all abilities.", + "We upgraded the office space at Wahroonga Preschool. We created space for private meetings and upgraded the staff break room. These works provide modern spaces for staff and families. They have improved safety across the centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $70,000 was allocated to the project.", + "In Round 1 of the 2021 Early Childood Refurbishment and Minor Works grant, $157,161 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wahroonga Preschool INC" + ], + "field_latitude": ["-37.69222566"], + "field_latitude_longitude_value": ["-37.69222566,145.1253396"], + "field_latitude_value": ["-37.69222566"], + "field_longitude": ["145.1253396"], + "field_longitude_value": ["145.1253396"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["D1-15-432", "15-432"], + "field_project_title": [ + "Building Blocks Improvement Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2024", "Q3 2023"], + "field_start_date": ["Q4 2022", "Q1 2022"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["66 Wahroonga Cres"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23318], + "status": [true], + "title": ["Wahroonga Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["827c9afe-e052-4808-854a-2fd65a760cba"] + }, + "sort": ["Wahroonga Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24970:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Walcom-Ngarrwa-Secondary-College"], + "changed": ["2023-10-26T10:43:04+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new secondary school in Werribee. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 550 students when the first stage of the school is complete.Nganboo Borron School will be located next to the school.Subscribe\u00a0to our mailing list for updates.Enrolments are openIn its first year of operation, Walcom Ngarrwa Secondary College will open to Year 7 students only, and progress by year level thereafter. The 2024 school zones are available at findmyschool.vic.gov.au.\u00a0For all enrolment queries please email Bradley.Moyle@education.vic.gov.au or call 0447 906 221.You can learn more about the school through their website.Learn more about the Year 6-7 placement process." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Walcom Ngarrwa Secondary College." + ], + "field_latitude": ["-37.906094"], + "field_longitude": ["\u00a0144.602639"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/LollypopCreekSS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Walcom Ngarrwa Secondary College was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Walcom Ngarrwa\u00a0(pronounced wel-cum nar-wa ) are\u00a0Wadawurrung words\u00a0meaning steps to knowledge. We\u00a0used\u00a0Lollypop Creek Secondary School\u00a0as an\u00a0interim name while the school was being planned and designed.", + "Bradley Moyle was appointed as principal of the new school.\u00a0 Brad has over 20 years\u2019 experience as a leader in primary, P\u201312 and secondary schools. He is passionate about equipping today's students to be the leaders and community members of tomorrow. As the foundation principal of Walcom Ngarrwa Secondary College , Brad looks forward to working with the Werribee community to support all learners to be their best.", + "When the school opens in Term 1, 2024, it will include: a design, arts, technology and science (DATS) building a learning neighbourhood hard courts a carpark. We are also delivering a community hub. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Wadawurrung Traditional Owners Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_paragraph_body": [ + "Lollypop Creek Secondary School (interim name) - Introducing Brad Moyle", + "Lollypop Creek Secondary School (interim name) \u2013 construction update" + ], + "field_postcode": ["3030"], + "field_project_code": ["01-7996"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["20 Frome Cr"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24970], + "status": [true], + "title": ["Walcom Ngarrwa Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a90c7177-5360-4cd4-ace2-1d91f2afc2f1"] + }, + "sort": ["Walcom Ngarrwa Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20168:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wales-street-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's tired old facilities by transforming administration areas in Block A into specialist STEM, withdrawal and collaboration learning spaces.\u00a0 As part of this, we relocated\u00a0the administration areas\u00a0to Block B,\u00a0making them more functional\u00a0for staff." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $4.1 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wales Street Primary School." + ], + "field_latitude": ["-37.76329"], + "field_latitude_longitude_value": ["-37.76329,145.00891"], + "field_latitude_value": ["-37.76329"], + "field_longitude": ["145.00891"], + "field_longitude_value": ["145.00891"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3071"], + "field_project_code": ["01-3139"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2021"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Wales St"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20168], + "status": [true], + "title": ["Wales Street Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a4602390-e5d2-4cbd-8773-94604c53a20f"] + }, + "sort": ["Wales Street Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33672:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wallan-east-primary-school-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-04T12:20:13+10:00"], + "field_about_project_processed": [ + "We are planning a school in Mitchell Shire to help the growing local population get a great education close to home." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2021\u201322 State Budget provided $276.4 million to acquire land for 14 future schools, including Wallan East Primary School." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Wallan East Primary School (interim name)" + ], + "field_latitude": ["-37.43700242"], + "field_latitude_longitude_value": ["-37.43700242,144.9863967"], + "field_latitude_value": ["-37.43700242"], + "field_longitude": ["144.9863967"], + "field_longitude_value": ["144.9863967"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3756"], + "field_project_code": ["01-5605"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_status_name": ["Planning"], + "field_street_address": ["Wallara Waters Boulevard"], + "field_suburb": ["Wallan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33672], + "status": [true], + "title": ["Wallan East Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["4da08943-57df-44a9-94b2-5d5b59af045f"] + }, + "sort": ["Wallan East Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35951:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wallan-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-10-25T17:02:08+11:00"], + "field_about_project_processed": [ + "We improved the outdoor learning space at Wallan Kindergarten. We built an all-weather structure for the sandpit. We also upgraded the sandpit, fort, and bike path. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 Building Blocks Improvement Grant round, $50,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wallan Kindergarten." + ], + "field_latitude": ["-37.41442023"], + "field_latitude_longitude_value": ["-37.41442023,144.9810228"], + "field_latitude_value": ["-37.41442023"], + "field_longitude": ["144.9810228"], + "field_longitude_value": ["144.9810228"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3756"], + "field_project_code": ["15-710"], + "field_project_title": [ + "Building Blocks Improvement Grant - Minor Improvement" + ], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["42 Bentinck Street"], + "field_suburb": ["Wallan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35951], + "status": [true], + "title": ["Wallan Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["8c4003fc-a3c8-48e4-88ee-4db135838e22"] + }, + "sort": ["Wallan Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20729:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wallan-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a competition-grade gym and learning spaces for the school. We are also completing landscaping, including creating a new sports half-court." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $6.738 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wallan Primary School." + ], + "field_latitude": ["-37.4162483215332"], + "field_latitude_longitude_value": [ + "-37.4162483215332,144.97859191894531" + ], + "field_latitude_value": ["-37.4162483215332"], + "field_longitude": ["144.97859191894531"], + "field_longitude_value": ["144.97859191894531"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3756"], + "field_project_code": ["01-664"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["46-48 Queen St"], + "field_suburb": ["Wallan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20729], + "status": [true], + "title": ["Wallan Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["783480e2-0883-4092-986f-157f92b89ab7"] + }, + "sort": ["Wallan Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20911:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wallan-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive indoor learning space.", + "\u200bWe have built\u00a0a new senior centre, lecture theatre, and seminar room at the school. We've also\u00a0refurbished\u00a0the home economics area.", + "We upgraded the\u00a0oval by\u00a0installing\u00a0four light towers,\u00a0goal posts and a cricket pitch." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $136,000.", + "In the 2015\u201316 State Budget, $5 million was allocated to the school. $46,000 was allocated from the Shared Facilities Fund.", + "This school received $685,000 from the Shared Facilities Fund." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Shared Facilities Fund", + "Upgrade and Modernisation", + "Shared Facilities Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wallan Secondary College" + ], + "field_latitude": ["-37.4167081", "-37.41822"], + "field_latitude_longitude_value": ["-37.4167081,144.9806714"], + "field_latitude_value": ["-37.4167081"], + "field_longitude": ["144.9806714", "144.98057"], + "field_longitude_value": ["144.9806714"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Wallan Secondary College." + ], + "field_postcode": ["3756"], + "field_project_code": ["D2-01-8791", "01-8791", "D1-01-8791"], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation, Shared Facilities Fund", + "Shared Facilities Fund" + ], + "field_q_complete": ["Q1 2023", "Q1 2018", "Q3 2019"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["100 Duke St"], + "field_suburb": ["Wallan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20911], + "status": [true], + "title": ["Wallan Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5dce7a9b-9337-4bf1-be75-f595686db1e2"] + }, + "sort": ["Wallan Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33834:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wallan-secondary-college-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Wallan Secondary College. This will provide additional kindergarten places for the local community.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Wallan Secondary College Kindergarten (interim name)" + ], + "field_latitude": ["-37.418393"], + "field_latitude_longitude_value": ["-37.418393,144.981473"], + "field_latitude_value": ["-37.418393"], + "field_longitude": ["144.981473"], + "field_longitude_value": ["144.981473"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3756"], + "field_project_code": ["15-WSCK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["100 Duke Street"], + "field_suburb": ["Wallan"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33834], + "status": [true], + "title": ["Wallan Secondary College Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["a5135350-54e7-4873-9a02-37bcc3cf9862"] + }, + "sort": ["Wallan Secondary College Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/23314:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wallaroo-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-21T13:40:54+11:00"], + "field_about_project_processed": [ + "We are upgrading the outdoor area with a new play space, sensory wall and fencing. We are also updating the building fa\u00e7ade and landscaping at the front entrance. Inside, we're installing skylights to brighten up the main rooms, and refurbishing the bathroom to improve functionality.", + "We are upgrading the outdoor environment and landscaping to make it more inclusive for children of all abilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021 Early Childood Refurbishment and Minor Works grant, $330,750 was allocated to this project.", + "In the 2021\u201322Building Blocks Inclusion Grants, $195,980 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wallaroo Preschool" + ], + "field_latitude": ["-38.29813288"], + "field_latitude_longitude_value": ["-38.29813288,145.1743691"], + "field_latitude_value": ["-38.29813288"], + "field_longitude": ["145.1743691"], + "field_longitude_value": ["145.1743691"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3915"], + "field_project_code": ["15-628", "D1-15-628"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant - Buildings and Playgrounds" + ], + "field_q_complete": ["Q1 2024", "Q2 2024"], + "field_start_date": ["Q1 2022", "Q3 2022"], + "field_status_name": ["Design", "Planning"], + "field_street_address": ["6 Wallaroo Pl"], + "field_suburb": ["Hastings"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [23314], + "status": [true], + "title": ["Wallaroo Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["fc93e75b-3c43-496d-9d1e-2bfbadd2ba28"] + }, + "sort": ["Wallaroo Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22307:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wallaroo-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:55+11:00"], + "field_about_project_processed": [ + "We are building an inclusive outdoor learning space, including shade structure and kitchen garden." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wallaroo Primary School" + ], + "field_latitude": ["-38.29789"], + "field_latitude_longitude_value": ["-38.29789,145.172749"], + "field_latitude_value": ["-38.29789"], + "field_longitude": ["145.172749"], + "field_longitude_value": ["145.172749"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3915"], + "field_project_code": ["01-5202"], + "field_project_title": ["Inclusive Schools Fund - Round 7"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["Stalwart Avenue"], + "field_suburb": ["Hastings"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22307], + "status": [true], + "title": ["Wallaroo Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["6fc3a018-2ea9-4fa5-9ecb-e30e0ebcadd1"] + }, + "sort": ["Wallaroo Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20187:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wallington-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will be upgrading classroom and learning spaces, including in the main building.", + "We are building an inclusive playground, including new play equipment and soft fall.", + "We\u00a0installed\u00a0a new blackwater treatment system for\u00a0the school oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $2.1 million", + "In Round 7 of the Inclusive Schools Fund, the project received $180,440.", + "In the 2018\u201319 State Budget $400,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wallington Primary School." + ], + "field_latitude": ["-38.217881", "-38.218102"], + "field_latitude_longitude_value": ["-38.217881,144.506853"], + "field_latitude_value": ["-38.217881"], + "field_longitude": ["144.506853", "144.507675"], + "field_longitude_value": ["144.506853"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3222"], + "field_project_code": ["D2-01-3345", "D1-01-3345", "01-3345"], + "field_project_title": [ + "Upgrade and Modernisation - Classrooms and Learning Spaces", + "Inclusive Schools Fund - Round 7", + "Upgrade and Modernisation - Oval" + ], + "field_q_complete": ["Q4 2025", "Q4 2023", "Q1 2020"], + "field_start_date": ["Q2 2023", "Q4 2021", "Q2 2018"], + "field_status_name": ["Design", "Construction", "Complete"], + "field_street_address": ["608-610 Wallington Rd"], + "field_suburb": ["Wallington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20187], + "status": [true], + "title": ["Wallington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4bec7118-eb47-45d5-9b41-0b04e69f3355"] + }, + "sort": ["Wallington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21415:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/walter-and-eliza-hall-institute"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bWe allocated funding to the institute\u00a0to\u00a0build\u00a0an early childhood education and care facility at\u00a0its Parkville campus. This innovative\u00a05-storey, purpose-built facility\u00a0is\u00a0the first\u00a0of its kind provided by an Australian medical research institute as part of its commitment to gender equity. Facilities This new early learning facility provides high quality early learning programs (including innovative programs such as\u00a0Little Scientists). It was\u00a0designed in consultation with the institute's partners and families.\u00a0 Each level is designed\u00a0to meet the needs of specific age groups, and has\u00a0shaded, external play areas. The ground floor\u00a0provides a flexible, multi-purpose space suitable for combined activities, play groups, health and consultation services.\u00a0 Services include long day care, occasional care and an\u00a0early learning centre offering\u00a0kindergarten programs for 3\u00a0and 4-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Walter and Eliza Hall Institute." + ], + "field_latitude": ["-37.79925"], + "field_latitude_longitude_value": ["-37.79925,144.95502"], + "field_latitude_value": ["-37.79925"], + "field_longitude": ["144.95502"], + "field_longitude_value": ["144.95502"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Early learning centre for the Walter and Eliza Hall Institute" + ], + "field_postcode": ["3052"], + "field_project_code": ["ELC-29"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2018"], + "field_start_date": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["1G Royal Pde"], + "field_suburb": ["Parkville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21415], + "status": [true], + "title": ["Walter and Eliza Hall Institute"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ad5077d6-5741-4c92-b9ba-1710ec015680"] + }, + "sort": ["Walter and Eliza Hall Institute"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27789:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wandiligong-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are upgrading an indoor learning area to be more inclusive. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $150,319." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wandiligong Primary School" + ], + "field_latitude": ["-36.768862"], + "field_latitude_longitude_value": ["-36.768862,146.982923"], + "field_latitude_value": ["-36.768862"], + "field_longitude": ["146.982923"], + "field_longitude_value": ["146.982923"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3744"], + "field_project_code": ["01-275"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["119 School Rd"], + "field_suburb": ["Wandiligong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27789], + "status": [true], + "title": ["Wandiligong Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["15f3c3ff-b2e2-4fe6-9b82-ea865f4a6afe"] + }, + "sort": ["Wandiligong Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20231:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wandin-north-primary-school"], + "changed": ["2023-11-09T10:25:58+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded an outdoor area to create a safe all-weather play and assembly area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $195,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wandin North Primary School." + ], + "field_latitude": ["-37.7696556"], + "field_latitude_longitude_value": ["-37.7696556,145.4092027"], + "field_latitude_value": ["-37.7696556"], + "field_longitude": ["145.4092027"], + "field_longitude_value": ["145.4092027"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3139"], + "field_project_code": ["01-3892"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["220 Warburton Hwy"], + "field_suburb": ["Wandin North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20231], + "status": [true], + "title": ["Wandin North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["54eaefe9-e810-4185-86c7-ab6f9cce2ac2"] + }, + "sort": ["Wandin North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21326:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wandong-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped upgrade and expand the\u00a0kindergarten. This will increase places for local children, and prepare for the roll-out of subsidised kindergarten for 3-year-olds in 2022. The project also delivered a multipurpose space for the community and health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $498,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wandong Kindergarten." + ], + "field_latitude": ["-37.3576506"], + "field_latitude_longitude_value": ["-37.3576506,145.0325443"], + "field_latitude_value": ["-37.3576506"], + "field_longitude": ["145.0325443"], + "field_longitude_value": ["145.0325443"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3758"], + "field_project_code": ["15-711"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["12 Dry Creek Cr"], + "field_suburb": ["Wandong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21326], + "status": [true], + "title": ["Wandong Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["444b9bff-ef4f-43fc-8b9f-f6a11c19225c"] + }, + "sort": ["Wandong Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19974:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wandong-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at the school. We will be completing further upgrades and modernising the school, including building new classrooms.\u00a0", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play.", + "We built a new library." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $10.1 million", + "In Round 8 of the Inclusive Schools Fund, the project received $200,000.", + "In the 2017-18 State Budget, $1.296 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wandong Primary School" + ], + "field_latitude": ["-37.360304", "-37.360470"], + "field_latitude_longitude_value": ["-37.360304,145.027861"], + "field_latitude_value": ["-37.360304"], + "field_longitude": ["145.027861", "145.027985"], + "field_longitude_value": ["145.027861"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3758"], + "field_project_code": ["D1-01-1277", "d1-1277", "01-1277"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund \u2013 Round 8", + "Upgrade and Modernisation - Library" + ], + "field_q_complete": ["Q2 2026", "Q2 2024", "Q3 2019"], + "field_start_date": ["Q2 2023", "Q4 2022"], + "field_status_name": ["Design", "Design", "Complete"], + "field_street_address": ["Rail St"], + "field_suburb": ["Wandong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19974], + "status": [true], + "title": ["Wandong Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f90c2eeb-4dc9-4f4d-bdf1-321e236b0f91"] + }, + "sort": ["Wandong Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20429:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wangala-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In 2021, Wangala Primary School (formerly known as Oberon South Primary School) relocated to new facilities at the neighbouring Oberon High School site at Kidman Avenue, Belmont. Oberon High School was relocated to the Armstrong Creek Secondary College site from the 2021 school year. This move has\u00a0provided the Belmont community with a new school in a prime location that can be seen from the street and is close to the local kindergarten. We delivered two new, architecturally-designed modular buildings, which were constructed in a factory and put together at\u00a0the new school location.These buildings feature general purpose classrooms, administration facilities and specialist areas. School name Wangala Primary School was officially renamed in 2021 following community consultation. \u200b\u200b\u200bWangala Primary School was chosen as the school name following community consultation and discussions with Geographic Names Victoria, taking into account factors including public interest, relevance to the local area, and local Indigenous languages. Wangala (pronounced wahn-GAH-la) is a Wadawurrung word meaning make good. We consulted with the community on the school's name from 11 June to 25 June 2021.", + "We are building an outdoor inclusive learning space. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018-19 State Budget, $1.2 million was allocated to the school. In the 2019-20 State Budget, the school received $3.39 million through the Permanent Modular School Buildings Program.", + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wangala Primary School" + ], + "field_latitude": ["-38.188049"], + "field_latitude_longitude_value": ["-38.188049,144.339691"], + "field_latitude_value": ["-38.188049"], + "field_longitude": ["144.339691"], + "field_longitude_value": ["144.339691"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3216"], + "field_project_code": ["01-4983", "d2-01-4983"], + "field_project_title": [ + "Upgrade and Modernisation - Permanent Modular School Buildings", + "Inclusive Schools Fund \u2013 Round 8" + ], + "field_q_complete": ["Q4 2020", "Q2 2024"], + "field_start_date": ["Q2 2018", "Q4 2022"], + "field_status_name": ["Complete", "Construction"], + "field_street_address": ["Tintinara Crescent"], + "field_suburb": ["Belmont"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20429], + "status": [true], + "title": ["Wangala Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["015648b4-e557-4661-947f-3410fd0e040d"] + }, + "sort": ["Wangala Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21392:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wangaratta-district-specialist-school-new-benalla-campus" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a new Benalla campus of Wangaratta District Specialist School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020-21 Infrastructure Planning and Acceleration fund, the school was allocated $510,000 in planning funding. In the 2020-21 State Budget, the school received $4.59 million, sharing in the $122.4 million allocated for new schools. A further $1,880,731 was allocated to the project in 2022." + ], + "field_funding_type_name": ["New School Campus"], + "field_landing_page_summary": [ + "Learn more about the build of Wangaratta District Specialist School - New Benalla Campus" + ], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3672"], + "field_project_code": ["D2-01-5226"], + "field_project_title": ["New School Campus"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_suburb": ["Benalla"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21392], + "status": [true], + "title": [ + "Wangaratta District Specialist School - New Benalla Campus" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["131fb0d3-5d81-452e-8551-c655292553f8"] + }, + "sort": ["Wangaratta District Specialist School - New Benalla Campus"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20531:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wangaratta-district-specialist-school-and-appin-park-primary-school" + ], + "changed": ["2023-07-19T19:14:40+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed Stage 2 of this project.\u00a0In this stage, we constructed a building at Wangaratta District Special School. It meets the needs of the growing student population and addresses specialist requirements.At Appin Park Primary School, we modernised facilities and built a new hardcourt.", + "We increased the capacity of Wangaratta District Special School, which has a growing student population and addressed specialist requirements. The project\u00a0also modernised facilities at Appin Park Primary School." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, $5.235 million was allocated to the next stage of the Wangaratta District Special School master plan.", + "In the 2018\u201319 State Budget $2.2 million was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wangaratta District Specialist School and Appin Park Primary School." + ], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["D1-01-5226", "01-5226"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q3 2021"], + "field_start_date": ["Q2 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20531], + "status": [true], + "title": [ + "Wangaratta District Specialist School and Appin Park Primary School" + ], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a43fcf34-2592-450b-b5ee-ec9b0fe2b9ae"] + }, + "sort": [ + "Wangaratta District Specialist School and Appin Park Primary School" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22359:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wangaratta-high-school"], + "changed": ["2023-11-09T09:11:54+11:00"], + "created": ["2022-01-14T14:24:13+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning an upgrade.", + "We are upgrading the VCAL kitchen." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In Round 2 of the Minor Capital Works Fund, the project received $495,514" + ], + "field_funding_type_name": ["Planning", "Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wangaratta High School" + ], + "field_latitude": ["-36.344898"], + "field_latitude_longitude_value": ["-36.344898,146.307723"], + "field_latitude_value": ["-36.344898"], + "field_longitude": ["146.307723"], + "field_longitude_value": ["146.307723"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["D1-01-8425", "01-8425"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Subject to future funding", "TBC"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning", "Land acquisition"], + "field_street_address": ["17-49 Edwards Street"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22359], + "status": [true], + "title": ["Wangaratta High School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["5d4249a3-c1bf-48d7-b95b-312ea787969a"] + }, + "sort": ["Wangaratta High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27790:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wangaratta-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wangaratta Primary School" + ], + "field_latitude": ["-36.355275"], + "field_latitude_longitude_value": ["-36.355275,146.329419"], + "field_latitude_value": ["-36.355275"], + "field_longitude": ["146.329419"], + "field_longitude_value": ["146.329419"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["01-653"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Design"], + "field_street_address": ["19 Chisholm St"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27790], + "status": [true], + "title": ["Wangaratta Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["a19dac13-d06a-4e6f-8aa0-1d18a14c6351"] + }, + "sort": ["Wangaratta Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20305:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wangaratta-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built an inclusive playground with new play equipment and soft fall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000" + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wangaratta West Primary School" + ], + "field_latitude": ["-36.353129"], + "field_latitude_longitude_value": ["-36.353129,146.3049806"], + "field_latitude_value": ["-36.353129"], + "field_longitude": ["146.3049806"], + "field_longitude_value": ["146.3049806"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3677"], + "field_project_code": ["01-4642"], + "field_project_title": ["Inclusive Schools Fund - Round 6"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["47-49 Phillipson Street"], + "field_suburb": ["Wangaratta"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20305], + "status": [true], + "title": ["Wangaratta West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6fab89cd-9c52-47e8-b13e-e976b3b8829a"] + }, + "sort": ["Wangaratta West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25011:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wantirna-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build a competition-grade gym with 2 courts. We will also build new music and drama classrooms." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $11.198 million, with a further $3.975 million in 2023." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wantirna College" + ], + "field_latitude": ["-37.857598"], + "field_latitude_longitude_value": ["-37.857598,145.229974"], + "field_latitude_value": ["-37.857598"], + "field_longitude": ["145.229974"], + "field_longitude_value": ["145.229974"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3152"], + "field_project_code": ["01-8428"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["90 Harold Street"], + "field_suburb": ["Wantirna"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25011], + "status": [true], + "title": ["Wantirna College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["2f50593a-a8bb-454c-9ead-dd141a3ebf2e"] + }, + "sort": ["Wantirna College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20303:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wantirna-south-primary-school"], + "changed": ["2023-12-01T16:13:14+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools.", + "We created an outdoor inclusive learning space with a shade structure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $496,091 from the Minor Capital Works Fund.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wantirna South Primary School" + ], + "field_latitude": ["-37.872529", "-37.872529"], + "field_latitude_longitude_value": ["-37.872529,145.237339"], + "field_latitude_value": ["-37.872529"], + "field_longitude": ["145.237339", "145.237339"], + "field_longitude_value": ["145.237339"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3152"], + "field_project_code": ["D1-01-4582", "01-4582"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2019"], + "field_start_date": ["Q4 2023", "Q4 2018"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["16 Tyner Rd"], + "field_suburb": ["Wantirna South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20303], + "status": [true], + "title": ["Wantirna South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d8a7638d-b027-4621-a578-62a0075c2d04"] + }, + "sort": ["Wantirna South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20494:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/waratah-special-developmental-school"], + "changed": ["2023-12-12T15:14:23+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. These will replace relocatable buildings.", + "We built an outdoor learning space. This inclusive area has equipment with soft fall surfacing. It encourages physical activity and sensory play.", + "We installed\u00a0accessible equipment and pathways in the playground.\u00a0We also provided natural cubby-like spaces to provide safe havens for students who find the noise, movement and visual stimulation of the playground environment overwhelming." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $6.805 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $200,000.", + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Waratah Special Developmental School" + ], + "field_latitude": ["-37.756289", "-37.7565774", "-37.756289"], + "field_latitude_longitude_value": ["-37.756289,145.040741"], + "field_latitude_value": ["-37.756289"], + "field_longitude": ["145.040741", "145.0408185", "145.040741"], + "field_longitude_value": ["145.040741"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3081"], + "field_project_code": ["D2-01-5144", "D1-01-5144", "01-5144"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2024", "Q2 2023", "Q1 2020"], + "field_start_date": ["Q2 2022", "Q2 2021", "Q4 2018"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["228 Banksia St"], + "field_suburb": ["Bellfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20494], + "status": [true], + "title": ["Waratah Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d4776b66-ead9-49b0-9334-2320f1792203"] + }, + "sort": ["Waratah Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35273:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ward-avenue-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-10-03T10:52:11+11:00"], + "field_about_project_processed": [ + "We are expanding and improving this kindergarten. We are replacing the building with a new larger one. This will give children better spaces to learn. It will also nearly double the kindergarten places it can offer for local families. The kindergarten service will move into Scammell Child and Family Services during construction in 2024. The new building will open Term 1, 2025." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project received $1.63 million as part of the Building Blocks Partnership between the Victorian Government and Monash City Council. The Victorian Government has invested up to $14.1 million to support 6 projects that will create up to 363 new kindergarten places in the local government area." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Ward Avenue Kindergarten" + ], + "field_latitude": ["-37.91293778"], + "field_latitude_longitude_value": ["-37.91293778,145.0854571"], + "field_latitude_value": ["-37.91293778"], + "field_longitude": ["145.0854571"], + "field_longitude_value": ["145.0854571"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3167"], + "field_project_code": ["15-1000"], + "field_project_title": ["Building Blocks Partnership"], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q3 2022"], + "field_status_name": ["Design"], + "field_street_address": ["4 Ward Avenue"], + "field_suburb": ["Oakleigh South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35273], + "status": [true], + "title": ["Ward Avenue Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["5048da38-30a1-435b-997f-a0b3f9c65afc"] + }, + "sort": ["Ward Avenue Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21207:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warracknabeal-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We're helping to expand the centre. The expansion will include a purpose-built kindergarten space for 3-year-olds, as well as multipurpose community spaces for meetings and allied health services." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020\u201321 Building Blocks Capacity Grants, $800,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Warracknabeal Children's Centre." + ], + "field_latitude": ["-36.2576102"], + "field_latitude_longitude_value": ["-36.2576102,142.3881032"], + "field_latitude_value": ["-36.2576102"], + "field_longitude": ["142.3881032"], + "field_longitude_value": ["142.3881032"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3393"], + "field_project_code": ["15-1306"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q3 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["11 Werrigar St"], + "field_suburb": ["Warracknabeal"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21207], + "status": [true], + "title": ["Warracknabeal Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ae0d16f6-9767-4920-a9b8-10709a32efd4"] + }, + "sort": ["Warracknabeal Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21470:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warracknabeal-education-precinct"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed the final stage of the precinct project.\u00a0 Warracknabeal primary, secondary and special developmental schools are all on one site. There's a central administration area, gym and function room. In this stage, we: completed the primary school classrooms and outdoor areas built a new special developmental building on the former primary school site featuring\u00a0classrooms, a gallery and art space, and sensory and home craft areas. constructed a new manual activities building for senior students of the secondary college, facilities for horticulture, wood working, motor mechanics and metal fabrication.", + "We have master plans to locate\u00a0Warracknabeal primary, secondary and special developmental schools on the one site, with a central consolidated administration area, gym and function room. We have completed the first of\u00a0stage\u00a0of this project, constructing\u00a0the east wing of the Warracknabeal\u00a0Special Developmental School, the north wing of the administration area, and\u00a0the west wing of\u00a0\u200bWarracknabeal\u00a0Secondary College.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, $19.8 million was allocated to the final stage of the Warracknabeal Regeneration Project.\u00a0In 2021, an additional $2.7 million was allocated.", + "In the 2016-17 State Budget, $4 million was allocated to the Secondary College, and $2 million allocated to the Special Developmental School. In Round 1 of the Inclusive Schools Fund, $50,000 was allocated to the Special Developmental School." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warracknabeal Education Precinct" + ], + "field_latitude": ["-36.257891"], + "field_latitude_longitude_value": ["-36.257891,142.3923952"], + "field_latitude_value": ["-36.257891"], + "field_longitude": ["142.3923952"], + "field_longitude_value": ["142.3923952"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3393"], + "field_project_code": ["D1-EP-W", "EP-W"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation, Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2023", "Q4 2018"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["5 Werrigar Street"], + "field_suburb": ["Warracknabeal"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21470], + "status": [true], + "title": ["Warracknabeal Education Precinct"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["76784b7d-eaea-4708-98c7-44e76d68bc1a"] + }, + "sort": ["Warracknabeal Education Precinct"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20565:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warragul-district-specialist-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces.", + "We replaced\u00a0internal and external fencing to improve safety and convenience." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $6.589 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $104,125." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warragul & District Specialist School." + ], + "field_latitude": ["-38.164894", "-38.164233"], + "field_latitude_longitude_value": ["-38.164894,145.925061"], + "field_latitude_value": ["-38.164894"], + "field_longitude": ["145.925061", "145.9246155"], + "field_longitude_value": ["145.925061"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["D1-01-5289", "01-5289"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q4 2025", "Q4 2021"], + "field_start_date": ["Q2 2022", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["55 Burke St"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20565], + "status": [true], + "title": ["Warragul & District Specialist School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9a7ec35b-0403-4350-a853-126aa36e2609"] + }, + "sort": ["Warragul & District Specialist School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20321:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warragul-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground.", + "We delivered a new architect-designed modular building to the school to replace Block A.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 7 of the Inclusive Schools Fund, the project received $200,000", + "In Round 3 of the program, the school was allocated $5,009,000." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warragul North Primary School" + ], + "field_latitude": ["-38.148107", "-38.14741"], + "field_latitude_longitude_value": ["-38.148107,145.939854"], + "field_latitude_value": ["-38.148107"], + "field_longitude": ["145.939854", "145.93948"], + "field_longitude_value": ["145.939854"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["D1-01-4695", "01-4695"], + "field_project_title": [ + "Inclusive Schools Fund - Round 7", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q2 2024", "Q2 2019"], + "field_start_date": ["Q4 2021", "Q2 2018"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["5 O'Dowds Rd"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20321], + "status": [true], + "title": ["Warragul North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e0d3de63-44be-4066-a616-9406c65c6d01"] + }, + "sort": ["Warragul North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21208:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warragul-primary-school-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped\u00a0Baw Baw Shire Council build\u00a0an early learning centre at\u00a0Warragul Primary School. Co-located facilities help to build strong relationships with schools, and help kids\u00a0transition from kindergarten to primary school. Facilities This new centre will offer\u00a0kindergarten for\u00a03 and 4-year-olds,\u00a0a\u00a0supported playgroup, as well as\u00a0maternal and child health and allied health services. Outside business\u00a0hours, it can also be used as\u00a0a social\u00a0hub for the local community.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u201318 Children's Facilities Capital Program $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Warragul Primary School Early Learning Centre." + ], + "field_latitude": ["-38.16101"], + "field_latitude_longitude_value": ["-38.16101,145.94592"], + "field_latitude_value": ["-38.16101"], + "field_longitude": ["145.94592"], + "field_longitude_value": ["145.94592"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["15-1308"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q3 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["48-62 Bowen St"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21208], + "status": [true], + "title": ["Warragul Primary School Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d1ea2352-c996-4cf3-bd37-2a582660d8f9"] + }, + "sort": ["Warragul Primary School Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20932:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warragul-regional-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We completed the next stage of the school's masterplan by building a new arts hub and additional general purpose classrooms.\u00a0", + "\u200bWe upgraded and modernised facilities at the school to deliver\u00a0a contemporary teaching and learning environment. This included\u00a0constructing a new science, technology, engineering and mathematics (STEM)\u00a0Student Hub. The new STEM Student Hub includes contemporary\u00a0spaces for: science food technology general purpose classrooms a senior student study space and lounge breakout and collaboration\u00a0 student toilets and staff workspace. We also shortened Building 27\u00a0and built new fire services.\u200b\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.362 million in planning funding. In the 2020\u201321 State Budget, the school received $12.259 million.", + "In the 2016\u201317 State Budget, $5.8 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warragul Regional College." + ], + "field_latitude": ["-38.149326324462891", "-38.16483"], + "field_latitude_longitude_value": [ + "-38.149326324462891,145.92716979980469" + ], + "field_latitude_value": ["-38.149326324462891"], + "field_longitude": ["145.92716979980469", "145.92392"], + "field_longitude_value": ["145.92716979980469"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3820"], + "field_project_code": ["D1-01-8827", "01-8827"], + "field_project_title": [ + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2023", "Q1 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["55 Burke St"], + "field_suburb": ["Warragul"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20932], + "status": [true], + "title": ["Warragul Regional College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["57f54d04-a416-4f5c-9222-0b61e7882129"] + }, + "sort": ["Warragul Regional College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20872:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warrandyte-high-school"], + "changed": ["2023-09-12T16:35:49+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school's art and craft building. We also completed landscaping works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $3.54 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Warrandyte High School." + ], + "field_latitude": ["-37.748177"], + "field_latitude_longitude_value": ["-37.748177,145.1846168"], + "field_latitude_value": ["-37.748177"], + "field_longitude": ["145.1846168"], + "field_longitude_value": ["145.1846168"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3113"], + "field_project_code": ["01-8437"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["241-247 Heidelberg-Warrandyte Rd"], + "field_suburb": ["Warrandyte"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20872], + "status": [true], + "title": ["Warrandyte High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["585ae624-deda-4e93-974f-61ddb8d52bb6"] + }, + "sort": ["Warrandyte High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20194:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warranwood-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bWe repaired\u00a0toilets across 3 buildings at the school.\u00a0", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school received $298,000 from the School Pride and Sports Fund.", + "In Round 9 of the Inclusive Schools Fund, the project received $299,362" + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warranwood Primary School." + ], + "field_latitude": ["-37.774347", "-37.774347"], + "field_latitude_longitude_value": ["-37.774347,145.246981"], + "field_latitude_value": ["-37.774347"], + "field_longitude": ["145.246981", "145.246981"], + "field_longitude_value": ["145.246981"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3134"], + "field_project_code": ["01-3476", "D1-01-3476"], + "field_project_title": [ + "School Pride and Sports Fund", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q2 2021", "Q4 2025"], + "field_start_date": ["Q1 2020", "Q4 2023"], + "field_status_name": ["Complete", "Planning"], + "field_street_address": ["1 Wellington Park Dr"], + "field_suburb": ["Warranwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20194], + "status": [true], + "title": ["Warranwood Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["12de74cb-3e89-4c4d-9d89-2daa0e230194"] + }, + "sort": ["Warranwood Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24977:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Warreen-Primary-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Truganina. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 650 students, when the school is complete.We're building Warreen Primary School Kindergarten\u00a0at the school. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families.\u00a0Bemin Secondary College\u2019s junior campus will also be located on the same site.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school will open for enrolments for students in Prep to Grade 6. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au.\u00a0For enrolment queries, please send email warreen.ps@education.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Warreen Primary School." + ], + "field_latitude": ["-37.81612"], + "field_latitude_longitude_value": ["-37.81612,144.71578"], + "field_latitude_value": ["-37.81612"], + "field_longitude": ["144.71578"], + "field_longitude_value": ["144.71578"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/TruganinaNorthPS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Warreen Primary\u00a0School was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Warreen\u00a0(pronounced wah-reen ) is a Bunurong word meaning wombat. We\u00a0used\u00a0Truganina North Primary School\u00a0as an interim name while the school was being planned and designed.", + "Joanna Stanford was appointed principal of this new school.\u00a0 Joanna is an innovative and passionate educational leader with 20 years of experience working in Melbourne's west. She spent 12 years at Derrimut Primary School, including 6 as principal. Joanna believes that all learners can experience success in the right environment. She is looking forward to building a community of learners with the families and young people at Warreen Primary School.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 3 learning neighbourhoods a community hub a car park hard courts outdoor play spaces a sports field. Students will have great modern learning areas with air conditioning and heating. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the\u00a0Bunurong Land Council Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding." + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_paragraph_body": [ + "Truganina North Primary School (interim name) - Introducing Joanna Stanford \u00a0" + ], + "field_postcode": ["3029"], + "field_project_code": ["01-5607"], + "field_project_title": ["New school"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["20 Hercules Dr"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24977], + "status": [true], + "title": ["Warreen Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["d426d7ca-bd89-452f-ba25-d9440d8438b2"] + }, + "sort": ["Warreen Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26564:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Warreen-Primary-School-Kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-08-01T15:23:47+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Warreen Primary School.\u00a0Bemin Secondary College\u2019s junior campus will also be located at the same siteHaving the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2024.We used Truganina North Primary School Kindergarten as an interim name while the kindergarten was being planned, designed, and built.EnrolmentEarly Childhood Management Services (ECMS) has been announced as the provider for Warreen Primary School Kindergarten. You can contact ECMS through email at enrolments@ecms.org.au or on 03 8481 1117." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Warreen Primary School Kindergarten." + ], + "field_latitude": ["-37.81584966746008"], + "field_latitude_longitude_value": [ + "-37.81584966746008,144.7185539684737" + ], + "field_latitude_value": ["-37.81584966746008"], + "field_longitude": ["144.7185539684737"], + "field_longitude_value": ["144.7185539684737"], + "field_mappintype_name": ["Early childhood"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/TruganinaNorthPSKindergarten_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-TGNPSK"], + "field_project_title": ["Kindergarten on a school site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["40 Boulder Av"], + "field_suburb": ["Truganina"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26564], + "status": [true], + "title": ["Warreen Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["b06fa52c-8aee-4685-977b-4a3c386e8f61"] + }, + "sort": ["Warreen Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20504:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warringa-park-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building an outdoor inclusive learning space, including new play equipment and synthetic turf.", + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new classrooms and learning spaces. These will replace relocatable buildings at the Bethany Road Campus and the Warringa Park Crescent Campus.", + "We delivered the second stage of the school's master plan, adding to the major upgrades already under construction.", + "We delivered the first stage of the school's master plan.\u00a0 We built a two-storey building that includes a therapy pool, music rooms, homecraft rooms and teaching spaces. We\u00a0also upgraded the administration building to include staff facilities and play decks.", + "We built a new specialist campus for Warringa Park School which opened in 2023.Located in the City of Wyndham, the purpose-built campus provides the growing local population with 50 places for primary-aged students with intellectual disabilities.\u00a0This campus is named\u00a0Warringa Park School \u2013 Polly Parade campus. It is\u00a0located at 71 Polly Parade, Tarneit 3029.FacilitiesThe campus includes:administration and staff spaceslearning and breakout spacesmultipurpose, media and art spaceslibraryfood technologytechnology and science spaces.How do I enrol?A full enrolment policy that provides detailed entry eligibility criteria is available through the school. Please contact the school on 03 9749 5774 or email warringa.park.sch@education.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 6 of the Inclusive Schools Fund, this project received $200,000", + "In the 2022\u201323 State Budget, this school received at least $14.659 million.", + "In the 2020\u201321 State Budget, the school received $7.966 million.", + "Funding was provided in the 2016\u201317 State Budget for planning. In the 2019-20 State Budget, the school received $12.4 million.", + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": [ + "Inclusive Schools Fund", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "New Specialist School Campus" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warringa Park School" + ], + "field_latitude": [ + "-37.883957", + "-37.884042", + "-37.868995666503906", + "-37.88396" + ], + "field_latitude_longitude_value": ["-37.883957,144.687606"], + "field_latitude_value": ["-37.883957"], + "field_longitude": [ + "144.687606", + "144.687587", + "144.70053100585937", + "144.68761" + ], + "field_longitude_value": ["144.687606"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade", + "New school" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": [ + "D2-01-5165", + "D3-01-5165", + "D1-01-5165", + "01-5165", + "D4-01-5165" + ], + "field_project_title": [ + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1", + "New specialist campus" + ], + "field_q_complete": [ + "Q4 2023", + "Q4 2025", + "Q1 2023", + "Q1 2022", + "Q4 2022" + ], + "field_start_date": ["Q2 2021", "Q2 2022", "Q4 2020", "Q2 2021"], + "field_status_name": [ + "Construction", + "Design", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["81 Warringa Cr"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20504], + "status": [true], + "title": ["Warringa Park School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e4a8f8bb-c783-4f98-9a3e-d1cce2c9f11f"] + }, + "sort": ["Warringa Park School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24612:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/warrnambool-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-08-09T12:27:15+10:00"], + "created": ["2022-04-13T11:25:53+10:00"], + "field_about_project_processed": [ + "We are helping Warrnambool City Council plan building projects at Warrnambool East Kindergarten, Matron Swinton Childcare Centre and Central Kindergarten. These projects will help children get 2 years of funded kindergarten as the local population grows over the coming years. This planning gets the projects ready for construction, which depends on future funding.", + "We are helping Warrnambool City Council plan to redevelop Central Kindergarten. The planning gets the project ready for construction, which depends on future funding" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $148,515 was allocated to this project.", + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Planning Grant", + "Building Blocks Planning Grant" + ], + "field_landing_page_summary": [ + "Learn more about the Warrnambool City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-WCCKI", "D1-15-WCCKI"], + "field_project_title": [ + "Building Blocks Planning Grant 2021\u201322", + "Building Blocks Planning Grant 2023" + ], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24612], + "status": [true], + "title": [ + "Warrnambool City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["247580ec-9fb3-4d86-877f-d52f2711e165"] + }, + "sort": [ + "Warrnambool City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20923:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warrnambool-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are refurbishing the toilets in the hall at the school's Wave campus to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We are refurbishing the toilets and change rooms in the school's main campus multi-purpose hall to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools.", + "We repaired the roof of the school's WAVE building.", + "We have upgraded and modernised the facilities at the school. This included creating flexible learning spaces, improving connections between internal and external areas and upgrading site infrastructure." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $111,397 from the Minor Capital Works Fund.", + "In the 2022\u201323 State Budget the project received $499,397 from the Minor Capital Works Fund.", + "In the 2020 Minor Capital Works Fund, the school was allocated $366,165.", + "In the 2016\u201317 State Budget, $5.1 million has been allocated to the school." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warrnambool College." + ], + "field_latitude": [ + "-38.37671595", + "-38.37671595", + "-38.3747947", + "-38.377270" + ], + "field_latitude_longitude_value": ["-38.37671595,142.4996761"], + "field_latitude_value": ["-38.37671595"], + "field_longitude": [ + "142.4996761", + "142.4996761", + "142.4722849", + "142.499400" + ], + "field_longitude_value": ["142.4996761"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": [ + "D3-01-8811", + "D2-01-8811", + "D1-01-8811", + "01-8811" + ], + "field_project_title": [ + "Minor Capital Works Fund - 2022-23 State Budget - Wave Campus", + "Minor Capital Works Fund - 2022-23 State Budget - Warrnambool Campus", + "Minor Capital Works Fund - Round 1 - Wave Campus", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q1 2024", "Q4 2023", "Q4 2023", "Q3 2020"], + "field_start_date": ["Q2 2022", "Q2 2022", "Q4 2020"], + "field_status_name": [ + "Construction", + "Complete", + "Complete", + "Complete" + ], + "field_street_address": ["Grafton Rd"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20923], + "status": [true], + "title": ["Warrnambool College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d133f475-1bac-4d2a-b655-ed797d207640"] + }, + "sort": ["Warrnambool College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20349:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warrnambool-east-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We updated classrooms and facilities in poor condition across the school. The works targeted facilities that were most in need." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $2.61 million was allocated to the school" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Warrnambool East Primary School" + ], + "field_latitude": ["-38.389553"], + "field_latitude_longitude_value": ["-38.389553,142.499542"], + "field_latitude_value": ["-38.389553"], + "field_longitude": ["142.499542"], + "field_longitude_value": ["142.499542"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["01-4773"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Ward Street"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20349], + "status": [true], + "title": ["Warrnambool East Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["785ee29b-e0e6-47d8-b48d-196bc0308b1d"] + }, + "sort": ["Warrnambool East Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20037:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warrnambool-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school with internal and external painting of its buildings.", + "We delivered a new architect-designed modular building to Warrnambool Primary School to replace Block D.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $145,165", + "In Round 3 of the program, the school was allocated $739,000." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Warrnambool Primary School" + ], + "field_latitude": ["-38.377755200037", "-38.37457"], + "field_latitude_longitude_value": [ + "-38.377755200037,142.48251580005" + ], + "field_latitude_value": ["-38.377755200037"], + "field_longitude": ["142.48251580005", "142.48821"], + "field_longitude_value": ["142.48251580005"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["D1-01-1743", "01-1743"], + "field_project_title": [ + "Minor Capital Works Fund", + "Permanent Modular School Buildings Program" + ], + "field_q_complete": ["Q4 2021", "Q2 2019"], + "field_start_date": ["Q4 2020", "Q2 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Jamieson Street"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20037], + "status": [true], + "title": ["Warrnambool Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["656f9549-355d-44f6-877d-7f2d16981eb3"] + }, + "sort": ["Warrnambool Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28953:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warrnambool-south-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-12-01T16:01:23+11:00"], + "field_about_project_processed": [ + "We are creating a modern kitchen with an open design. The design will let staff run cooking activities as part of the kindergarten\u2019s program. The kindergarten will then be able to run a breakfast club." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $74,250 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Warrnambool South Kindergarten" + ], + "field_latitude": ["-38.39521232"], + "field_latitude_longitude_value": ["-38.39521232,142.4711329"], + "field_latitude_value": ["-38.39521232"], + "field_longitude": ["142.4711329"], + "field_longitude_value": ["142.4711329"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["15-1317"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["24 Stanley St"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28953], + "status": [true], + "title": ["Warrnambool South Kindergarten"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["bc5ee4e4-5605-41a1-a1f5-1e2d22bb9598"] + }, + "sort": ["Warrnambool South Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20042:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/warrnambool-west-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished classrooms and facilities across the school that were in poor condition." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $250,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Warrnambool West Primary School." + ], + "field_latitude": ["-38.366611"], + "field_latitude_longitude_value": ["-38.366611,142.466537"], + "field_latitude_value": ["-38.366611"], + "field_longitude": ["142.466537"], + "field_longitude_value": ["142.466537"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3280"], + "field_project_code": ["01-182"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["35 Hoddle St"], + "field_suburb": ["Warrnambool"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20042], + "status": [true], + "title": ["Warrnambool West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2e004728-8a8c-4f1c-bdc5-a197857daed4"] + }, + "sort": ["Warrnambool West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21341:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/washington-drive-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Kingston City Council upgraded Washington Drive Preschool to increase the capacity of the service, including: expanded\u00a0learning space an\u00a0undercover porch\u00a0 a\u00a0new\u00a0accessible toilet and office renovation to\u00a0the\u00a0children\u2019s bathroom and kitchen\u00a0 refurbishment of\u00a0the existing building. \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017\u20132018 Children's Facilities Capital Program $335,512 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Washington Drive Preschool" + ], + "field_latitude": ["-37.9356099"], + "field_latitude_longitude_value": ["-37.9356099,145.08203"], + "field_latitude_value": ["-37.9356099"], + "field_longitude": ["145.08203"], + "field_longitude_value": ["145.08203"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3167"], + "field_project_code": ["15-895"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["3 Washington Dr"], + "field_suburb": ["Oakleigh South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21341], + "status": [true], + "title": ["Washington Drive Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1dab5ffe-2f63-4f13-8db3-25f9a01e430c"] + }, + "sort": ["Washington Drive Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20410:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/watsonia-heights-primary-school"], + "changed": ["2023-11-02T17:31:08+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school.\u00a0As part of these works, we demolished and rebuilt Block B. The rebuild comprised of 8 new general-purpose classrooms and an administration building.We completed repair works in Block A, upgrading and moving power lines underground." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $7.884 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Watsonia Heights Primary School" + ], + "field_latitude": ["-37.688671112060547"], + "field_latitude_longitude_value": [ + "-37.688671112060547,145.08670043945312" + ], + "field_latitude_value": ["-37.688671112060547"], + "field_longitude": ["145.08670043945312"], + "field_longitude_value": ["145.08670043945312"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["01-4935"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["61 Henry St"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20410], + "status": [true], + "title": ["Watsonia Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["259d9254-cb1d-47a9-90c0-c2687a5d519d"] + }, + "sort": ["Watsonia Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20431:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/watsonia-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including: building a permanent school building minor window repairs to blocks A and B. This ensures students are learning in an environment designed for delivering modern education.", + "We are refurbishing the school's Building A classrooms. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $4.719 million. In 2022 the school was allocated a further $214,991.", + "In the 2023-24 State Budget the project received $498,960 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Watsonia North Primary School." + ], + "field_latitude": ["-37.7001781", "-37.700395"], + "field_latitude_longitude_value": ["-37.7001781,145.0804948"], + "field_latitude_value": ["-37.7001781"], + "field_longitude": ["145.0804948", "145.080509"], + "field_longitude_value": ["145.0804948"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3087"], + "field_project_code": ["01-4988", "D1-01-4988"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2024", "Q4 2025"], + "field_start_date": ["Q2 2021", "Q4 2023"], + "field_status_name": ["Construction", "Planning"], + "field_street_address": ["16 Sharpes Rd"], + "field_suburb": ["Watsonia North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20431], + "status": [true], + "title": ["Watsonia North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["c2d396bc-933a-40c7-923b-45520c0a09ae"] + }, + "sort": ["Watsonia North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20372:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/watsonia-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school, including Block A.", + "We resurfaced\u00a0the oval, 2 basketball courts, 3 downball courts, and a synthetic turf playground area, as well as constructed\u00a0new fencing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $4.425 million.", + "In the 2019\u201320 State Budget, the school received $2.087 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Watsonia Primary School." + ], + "field_latitude": ["-37.7075251509146", "-37.70762"], + "field_latitude_longitude_value": [ + "-37.7075251509146,145.083837399714" + ], + "field_latitude_value": ["-37.7075251509146"], + "field_longitude": ["145.083837399714", "145.08521"], + "field_longitude_value": ["145.083837399714"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3087"], + "field_project_code": ["D1-01-4838", "01-4838"], + "field_project_title": [ + "Upgrade and Modernisation - Next Stage", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q3 2021"], + "field_start_date": ["Q4 2020", "Q2 2019"], + "field_status_name": ["Construction", "Complete"], + "field_street_address": ["Nell St West"], + "field_suburb": ["Watsonia"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20372], + "status": [true], + "title": ["Watsonia Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d4d68499-dfa0-4ca7-b698-0fa96205ead0"] + }, + "sort": ["Watsonia Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20228:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wattle-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are providing relocatable classrooms for the school's Language other than English (LOTE) education. These will also be used as a well-being space.", + "We restored the school's boundary fence.\u00a0\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $661,000.", + "In the 2015\u201316 State Budget, $37,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wattle Park Primary School" + ], + "field_latitude": ["-37.848659515380859", "-37.8427999"], + "field_latitude_longitude_value": [ + "-37.848659515380859,145.11390686035156" + ], + "field_latitude_value": ["-37.848659515380859"], + "field_longitude": ["145.11390686035156", "145.09832"], + "field_longitude_value": ["145.11390686035156"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3125"], + "field_project_code": ["D1-01-3841", "01-3841"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["225 Warrigal Rd"], + "field_suburb": ["Burwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20228], + "status": [true], + "title": ["Wattle Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["50732682-f416-41fb-ae27-481412321c6e"] + }, + "sort": ["Wattle Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28653:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wattletree-early-childhood-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are building a new multipurpose room. It will be a space for staff to plan, and host parent information sessions. It will also be used for maternal and child health visits." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $200,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wattletree Early Childhood Centre." + ], + "field_latitude": ["-37.86389443"], + "field_latitude_longitude_value": ["-37.86389443,145.039146"], + "field_latitude_value": ["-37.86389443"], + "field_longitude": ["145.039146"], + "field_longitude_value": ["145.039146"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3144"], + "field_project_code": ["15-815"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["256 Wattletree Rd"], + "field_suburb": ["Malvern"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28653], + "status": [true], + "title": ["Wattletree Early Childhood Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["02abc0da-ed93-406f-a57a-dbb812fe4bf2"] + }, + "sort": ["Wattletree Early Childhood Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20882:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/waubra-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the playground, create a natural play space and install new equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $57,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Waubra Primary School." + ], + "field_latitude": ["-37.3539677"], + "field_latitude_longitude_value": ["-37.3539677,143.6343776"], + "field_latitude_value": ["-37.3539677"], + "field_longitude": ["143.6343776"], + "field_longitude_value": ["143.6343776"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3352"], + "field_project_code": ["01-859"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2110 Sunraysia Hwy"], + "field_suburb": ["Waubra"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20882], + "status": [true], + "title": ["Waubra Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d3adf24a-94b4-4dff-a5b3-1a215bf9c58c"] + }, + "sort": ["Waubra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21149:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/waverley-christian-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Waverley Christian College to build\u00a0a two-storey junior school building which\u00a0provides ten classroom areas as well as offices and circulation space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2017-18 Capital Funding Program for Non-Government Schools, $1,710,000 has been allocated to the school.\u00a0" + ], + "field_funding_type_name": ["Non-Government Schools Capital Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Waverley Christian College" + ], + "field_latitude": ["-37.879387"], + "field_latitude_longitude_value": ["-37.879387,145.215302"], + "field_latitude_value": ["-37.879387"], + "field_longitude": ["145.215302"], + "field_longitude_value": ["145.215302"], + "field_mappintype_name": ["Non-government grant"], + "field_mappintype_value": ["Non-government grant"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3152"], + "field_project_code": ["03-1771"], + "field_project_title": ["Non-Government Schools Capital Fund"], + "field_q_complete": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["1248 High Street Road"], + "field_suburb": ["Wantirna South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21149], + "status": [true], + "title": ["Waverley Christian College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9f6120a8-e468-435c-ba99-10c1fc4382d8"] + }, + "sort": ["Waverley Christian College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20480:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/waverley-meadows-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0refurbished\u00a0three classrooms blocks with the combined funding\u200b.", + "With funding from Round 1 of the Inclusive School Fund\u200b, the school\u00a0installed\u00a0wall mounted, semi-permanent acoustic partitioning and architectural acoustic panelling.\u00a0", + "We upgraded\u00a0administration and library facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $854,000 was allocated to the school. In the 2018\u201319 State Budget $600,000 was allocated to the school.", + "In Round 1 of the Inclusive Schools Fund, the school received $30,000.", + "In the 2019\u201320 State Budget, the school received $1.1 million." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Waverley Meadows Primary School" + ], + "field_latitude": ["-37.914539", "-37.91453"], + "field_latitude_longitude_value": ["-37.914539,145.184296"], + "field_latitude_value": ["-37.914539"], + "field_longitude": ["145.184296", "145.18429"], + "field_longitude_value": ["145.184296"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["D1-01-5105", "01-5105", "D2-01-5105"], + "field_project_title": [ + "Upgrade and Modernisation - Three Classroom Blocks", + "Inclusive Schools Fund", + "Upgrade and Modernisation - Administration & Library Facilities" + ], + "field_q_complete": ["Q3 2019", "Q4 2020"], + "field_start_date": ["Q2 2017", "Q2 2019"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["11 Columbia Dr"], + "field_suburb": ["Wheelers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20480], + "status": [true], + "title": ["Waverley Meadows Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e8fd9b84-f408-4536-9169-458a1502cfb8"] + }, + "sort": ["Waverley Meadows Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20985:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wayi-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new specialist school in the City of Hume. It opened in 2023, helping the growing local population get great education close to home. Leanne Sinnadurai\u00a0was appointed as the first principal of the school. The school was previously known by its interim name, Mount Ridley Special School, during the planning phase. We consulted with the community on school's name from 20 June 2022 to 8 July 2022. Wayi (pronounced wah-yee) is a Woi-wurrung word of the Wurundjeri people meaning \u2018us\u2019. Facilities The school includes: an administration building with a library, staff offices and amenities junior and senior learning neighbourhoods a community hub with a competition-grade gymnasium, canteen, and performing arts space 2 outdoor hardcourts a sports field a bike shed a bus shelter." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Wayi School." + ], + "field_latitude": ["-37.576105"], + "field_latitude_longitude_value": ["-37.576105,144.921633"], + "field_latitude_value": ["-37.576105"], + "field_longitude": ["144.921633"], + "field_longitude_value": ["144.921633"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/WAYI_FeatureImage.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-MRSS"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["1200 Aitken Blvd"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20985], + "status": [true], + "title": ["Wayi School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["498e16c9-a5df-4e9f-ac79-9efcd5c81d89"] + }, + "sort": ["Wayi School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25002:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wedderburn-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade Block A classrooms and the school hall." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $12.886 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wedderburn College" + ], + "field_latitude": ["-36.417022"], + "field_latitude_longitude_value": ["-36.417022,143.61877"], + "field_latitude_value": ["-36.417022"], + "field_longitude": ["143.61877"], + "field_longitude_value": ["143.61877"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at Wedderburn College." + ], + "field_postcode": ["3518"], + "field_project_code": ["01-6262"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["15-29 Hospital Street"], + "field_suburb": ["Wedderburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25002], + "status": [true], + "title": ["Wedderburn College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["964f9ac2-2036-4f1c-bd75-a039129ac774"] + }, + "sort": ["Wedderburn College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36734:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wedderburn-college-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Wedderburn College.\u00a0The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.\u00a0The centre may also include other spaces for community use.In 2026 Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Wedderburn College Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-36.417022"], + "field_latitude_longitude_value": ["-36.417022,143.61877"], + "field_latitude_value": ["-36.417022"], + "field_longitude": ["143.61877"], + "field_longitude_value": ["143.61877"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3518"], + "field_project_code": ["15-WC-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["15\u201329 Hospital Street"], + "field_suburb": ["Wedderburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36734], + "status": [true], + "title": [ + "Wedderburn College Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e6c6dedb-ecd1-4ec9-9658-8ff81327c0c3"] + }, + "sort": [ + "Wedderburn College Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20499:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/weeden-heights-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the\u00a0school, including Building A. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $5.833 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Weeden Heights Primary School." + ], + "field_latitude": ["-37.859114"], + "field_latitude_longitude_value": ["-37.859114,145.177799"], + "field_latitude_value": ["-37.859114"], + "field_longitude": ["145.177799"], + "field_longitude_value": ["145.177799"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3133"], + "field_project_code": ["01-5157"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["41-51 Weeden Dr"], + "field_suburb": ["Vermont South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20499], + "status": [true], + "title": ["Weeden Heights Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4ef27a8e-dc88-4040-9c09-55e729fe9280"] + }, + "sort": ["Weeden Heights Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24234:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wellington-child-and-family-hub"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T13:22:45+11:00"], + "field_about_project_processed": [ + "We partnered with Monash City Council to build a new integrated children's centre. The centre has 2 kindergarten rooms and 2 maternal and child health rooms. It also features allied health consultation rooms, a community room, and an outdoor play area." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was allocated $1,000,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Children's Facilities Capital Program"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wellington Child & Family Hub." + ], + "field_latitude": ["-37.92270332"], + "field_latitude_longitude_value": ["-37.92270332,145.1662592"], + "field_latitude_value": ["-37.92270332"], + "field_longitude": ["145.1662592"], + "field_longitude_value": ["145.1662592"], + "field_mappintype_name": ["Early childhood"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/WellingtonEarlyYearsHub-221021-feature-tile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3170"], + "field_project_code": ["15- 1340"], + "field_project_title": [ + "Children's Facilities Capital Program - New Early Learning Facility" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["53-57 Shaftsbury Dr"], + "field_suburb": ["Mulgrave"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24234], + "status": [true], + "title": ["Wellington Child & Family Hub"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["bef920e3-99ff-4110-af12-5cbf2df04df7"] + }, + "sort": ["Wellington Child & Family Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20874:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wellington-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We transformed the school\u2019s tired old facilities by constructing a new VCE and Wellness Centre, a middle learning community, and a technology and learning wing.", + "We built an outdoor inclusive learning space, including shade sails, play equipment and decking.", + "\u200bWe built a\u00a0new two-storey building at Wellington Secondary College.\u00a0 This building includes: a new entrance to the school,\u00a0 administration facilities, a\u00a0staff office,\u00a0 library, and\u00a0 state-of-the-art learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $10.5 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $181,000", + "In the 2017\u201318 State Budget, $5.5 million was allocated to the school. In the 2016\u201317 State Budget, $12 million was allocated to schools across the state for planning. This included funding for Wellington Secondary College." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wellington Secondary College" + ], + "field_latitude": ["-37.93452", "-37.934521", "-37.93452"], + "field_latitude_longitude_value": ["-37.93452,145.16912"], + "field_latitude_value": ["-37.93452"], + "field_longitude": ["145.16912", "145.169118", "145.16912"], + "field_longitude_value": ["145.16912"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3170"], + "field_project_code": ["D1-01-8462", "D2-01-8462", "01-8462"], + "field_project_title": [ + "Upgrade and Modernisation - VCE & Wellness Centre, technology and learning wing", + "Inclusive Schools Fund - Round 6", + "Upgrade and Modernisation - new two-storey building" + ], + "field_q_complete": ["Q3 2022", "Q4 2022", "Q1 2019"], + "field_start_date": ["Q2 2019", "Q2 2021", "Q1 2018"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["91 Police Rd"], + "field_suburb": ["Mulgrave"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20874], + "status": [true], + "title": ["Wellington Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4f732e74-63f5-4fcd-aa06-09ee1ea53931"] + }, + "sort": ["Wellington Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20353:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wembley-primary-school"], + "changed": ["2023-10-20T10:45:36+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising the school's main building. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $10.219 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wembley Primary School." + ], + "field_latitude": ["-37.821797"], + "field_latitude_longitude_value": ["-37.821797,144.878004"], + "field_latitude_value": ["-37.821797"], + "field_longitude": ["144.878004"], + "field_longitude_value": ["144.878004"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3013"], + "field_project_code": ["01-4788"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["32 St Leonards Av"], + "field_suburb": ["Yarraville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20353], + "status": [true], + "title": ["Wembley Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e336d654-54b4-405c-8836-3bb21c00020c"] + }, + "sort": ["Wembley Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21300:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wendouree-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped Wendouree Children's Centre upgrade their existing facilities to include maternal and child health services. It is now a fully-integrated family and children centre." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project" + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wendouree Children's Centre" + ], + "field_latitude": ["-37.53177"], + "field_latitude_longitude_value": ["-37.53177,143.82404"], + "field_latitude_value": ["-37.53177"], + "field_longitude": ["143.82404"], + "field_longitude_value": ["143.82404"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3355"], + "field_project_code": ["15-53"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["1188 Norman Street"], + "field_suburb": ["Wendouree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21300], + "status": [true], + "title": ["Wendouree Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f2c77489-a1c3-45e8-8b2f-bb0ce8d946a7"] + }, + "sort": ["Wendouree Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20727:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/werribee-primary-school"], + "changed": ["2023-08-23T13:55:16+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We repaired\u00a0toilets and replaced\u00a0the roof on the administration building.", + "We refurbished the synthetic oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2019\u201320 School Pride and Sports Fund the school received $621,000.", + "In Round 2 of the Minor Capital Works Fund, the project received $495,692." + ], + "field_funding_type_name": [ + "School Pride and Sports Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Werribee Primary School." + ], + "field_latitude": ["-37.907859802246094", "-37.906865"], + "field_latitude_longitude_value": [ + "-37.907859802246094,144.64913940429688" + ], + "field_latitude_value": ["-37.907859802246094"], + "field_longitude": ["144.64913940429688", "144.658736"], + "field_longitude_value": ["144.64913940429688"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-649", "D1-01-649"], + "field_project_title": [ + "School Pride and Sports Fund", + "Minor Capital Works Fund - Round 2" + ], + "field_q_complete": ["Q2 2021", "Q3 2023"], + "field_start_date": ["Q1 2020", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2 Deutgam St"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20727], + "status": [true], + "title": ["Werribee Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8fd1b03a-690c-4e9c-a3f9-1f03e2a38bb1"] + }, + "sort": ["Werribee Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20875:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/werribee-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the school\u2019s performing arts theatre. When complete, it will function as a fully operational, small-scale theatre for school and community use. The theatre upgrade includes: a raised stage, technician areas, refurbished seating, new lights, mixer and audio equipment, installation of a lighting bar and lighting equipment, cosmetic upgrades to the foyer.", + "\u200bWe completed\u00a0Stage 3 of Werribee Secondary College's modernisation project. This included extensions to the school's library and science wing.\u00a0We completed\u00a0the library extension\u00a0in December 2017, and\u00a0the science building\u00a0in late 2018.\u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2016\u201317 Shared Facilities Fund, the school was allocated $723,500.", + "In the 2015\u201316 State Budget, $7 million was allocated to the school." + ], + "field_funding_type_name": [ + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Werribee Secondary College" + ], + "field_latitude": ["-37.905903", "-37.9066199"], + "field_latitude_longitude_value": ["-37.905903,144.669552"], + "field_latitude_value": ["-37.905903"], + "field_longitude": ["144.669552", "144.66902"], + "field_longitude_value": ["144.669552"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["D1-01-8465", "01-8465"], + "field_project_title": [ + "Shared Facilities Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2023", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["45 Duncans Road"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20875], + "status": [true], + "title": ["Werribee Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["88df1493-616a-4381-8d8b-4711ed4c258a"] + }, + "sort": ["Werribee Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21252:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/werribee-west-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the outdoor learning space at the centre. The upgrade includes 2 playgrounds, natural features such as a sand pit, mud pit, vegetable patches as well as new outdoor decking for students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $350,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Werribee West Children's Centre." + ], + "field_latitude": ["-37.89863"], + "field_latitude_longitude_value": ["-37.89863,144.64174"], + "field_latitude_value": ["-37.89863"], + "field_longitude": ["144.64174"], + "field_longitude_value": ["144.64174"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["15-3482"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["37 Ballan Rd"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21252], + "status": [true], + "title": ["Werribee West Children's Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e39b809e-b2a4-4ab1-af5a-f6192c031f7c"] + }, + "sort": ["Werribee West Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21320:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/west-hawthorn-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "In partnership with City of Boroondara, we\u00a0upgraded the preschool. The upgrade\u00a0included: creating more\u00a0kindergarten places\u00a0for 3 and 4-year-olds a meeting room for parents refurbished\u00a0toilets and a\u00a0storeroom." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2019\u201320, this project was alloated $500,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at West Hawthorn Preschool." + ], + "field_latitude": ["-37.81599"], + "field_latitude_longitude_value": ["-37.81599,145.02283"], + "field_latitude_value": ["-37.81599"], + "field_longitude": ["145.02283"], + "field_longitude_value": ["145.02283"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3122"], + "field_project_code": ["15-616"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["39 Brook St"], + "field_suburb": ["Hawthorn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21320], + "status": [true], + "title": ["West Hawthorn Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["09e033e7-8e61-423a-ad12-aa92404dc858"] + }, + "sort": ["West Hawthorn Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25402:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/west-maddingley-early-years-community-hub-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:22:27+10:00"], + "field_about_project_processed": [ + "We are partnering with Moorabool Shire Council to build an integrated children's centre, which will offer 4 kindergarten rooms as well as maternal child health services, consulting rooms and space for playgroups and parent groups. The kindergarten will provide 132 kindergarten places to the community and help local children get 2 years of high-quality funded kindergarten." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 2021\u201322 Building Blocks Capacity Grant, $4.6 million was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at West Maddingley Early Years & Community Hub" + ], + "field_latitude": ["-37.6893086907221"], + "field_latitude_longitude_value": [ + "-37.6893086907221,144.411265686366" + ], + "field_latitude_value": ["-37.6893086907221"], + "field_longitude": ["144.411265686366"], + "field_longitude_value": ["144.411265686366"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3340"], + "field_project_code": ["15-WMEY"], + "field_project_title": [ + "Building Blocks Capacity Grant - Integrated Children's Centre" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["Crn McCormacks Road & Gladman Road"], + "field_suburb": ["West Maddingley"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25402], + "status": [true], + "title": ["West Maddingley Early Years & Community Hub"], + "type": ["project_infrastructure"], + "uid": [9100], + "uuid": ["b30988f4-6b1e-479e-a03c-9a88120bae70"] + }, + "sort": ["West Maddingley Early Years & Community Hub"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20376:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/westall-schools-regeneration"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are completing the next stage of the Westall Schools Regeneration project. We will build a new learning wing for Westall Secondary College.", + "We built on the upgrades we completed at the school in 2020 by delivering the next stage of the primary\u00a0school's master plan.\u00a0 What is the Westall Schools Regeneration project? The Victorian Government is investing in the future of Westall through the Westall Schools Regeneration project. This investment is supporting the upgrade and modernisation of Westall Primary School and Westall Secondary College. In the 2020\u201321 State Budget, Westall Primary School received $7.2 million to build the second stage of their masterplan. This second stage focussed specifically on creating a hub link that connects the primary school with Westall Kindergarten. The kindergarten is part of Kingston City Council\u2019s Community Hub, which also provides maternal and child health services. The project supports the partnership between Westall Primary School, Westall Secondary College, Kingston City Council and the Colman Foundation to implement the Our Place approach and integrate the delivery of education, allied health and wellbeing services for the local community. What was built? As part of the works program, the Victorian School Building Authority delivered: the hub link connecting to the Kingston City Community Hub an additional Learning Centre building landscaping and other site elements around the new Learning Centre building. The hub link includes community spaces to establish the Our Place approach for the Westall Primary School community. How does the community benefit? The new Learning Centre building provides students of the school more learning opportunities than ever before. Linking Westall Primary School with the Community Hub provides many benefits for local families and children. These include: a single entrance to Westall Primary School and the Community Hub providing parents and carers with access to a range of allied health and wellbeing services that improve their children\u2019s readiness for school on-site Community Facilitators to help families to connect with services tailored to their needs. The Westall hub link supports an integrated approach to education, health and community services that benefits the local community. What is the Colman Foundation? The Colman Foundation is a philanthropic organisation that supports the achievements of improved social outcomes by placing education at the heart of a disadvantaged community. The Colman Foundation developed the Our Place approach to promote positive education outcomes for children and families in disadvantaged communities. What is the Our Place approach? The Our Place approach creates a shared entrance between a government school and early learning centre and provides facilities where parents and families can access a range education, allied health and wellbeing services. The Our Place approach supports the establishment of an integrated learning community to improve social and educational outcomes for families and children. Key features of the Our Place approach include: A single point of entry to promote engagement of families and support children in their transition from kindergarten to school Facilitating partnerships between early years and primary school providers to integrate and coordinate services Creating shared spaces for community services, such as adult education and training, volunteering and job-seeking services Providing families with better access to tailored health and wellbeing services On-site Community Facilitators to assist families and children to connect to education, allied health and wellbeing services.", + "We have completed Stage 1 of the Westall Schools Regeneration. The project\u00a0delivered a new gymnasium, learning centre, hardcourts, car park and refurbished administration building for Westall Primary School. New hardcourts were also delivered for Westall Secondary College." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 State Budget, the school received $9.392 million.", + "In the 2020\u201321 State Budget, the school received $7.2 million.", + "In the 2016-17 State Budget, $12 million was been allocated to schools across the State for planning. This included funding for Westall Schools Regeneration. Further funding of $12.3 million was allocated to the project in the 2018-19 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Westall Schools Regeneration" + ], + "field_latitude": [ + "-37.9401909", + "-37.944454193115234", + "-37.942810" + ], + "field_latitude_longitude_value": ["-37.9401909,145.136333"], + "field_latitude_value": ["-37.9401909"], + "field_longitude": ["145.136333", "145.12449645996094", "145.137833"], + "field_longitude_value": ["145.136333"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3169"], + "field_project_code": ["D2-01-8470", "D1-01-4851", "01-4851"], + "field_project_title": [ + "Upgrade and Modernisation - Learning Wing for Westall Secondary College", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q4 2023", "Q4 2022", "Q1 2020"], + "field_start_date": ["Q2 2021", "Q4 2020"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["Fairbank Road"], + "field_suburb": ["Clayton South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20376], + "status": [true], + "title": ["Westall Schools Regeneration"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b292c95a-4d73-4d9c-9fae-bce41c99b3d0"] + }, + "sort": ["Westall Schools Regeneration"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20263:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/westbreen-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We rebuilt the school. The rebuild included\u00a0six new classrooms, an art room, an administration area and two outdoor basketball courts. The school\u00a0received additional funding from School Pride and Sports Fund to contribute to the project.", + "We installed play equipment with safe surfaces to create an all-abilities playground.", + "We upgraded the oval and running track. We also restumped the heritage building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2017\u201318, the school was allocated $251,000 through the School Pride and Sports fund. In the 2015\u201316 State Budget, $4 million was allocated to the school. In the 2014\u201315 State Budget, $1 million was allocated to the school.", + "In 2018, $80,000 was allocated to the school in Round 4 of the Inclusive Schools Fund.", + "From the 2019\u201320 School Pride and Sports Fund the school received $672,713 for the restumping of heritage building." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Westbreen Primary School" + ], + "field_latitude": ["-37.71625", "-37.724700927734375"], + "field_latitude_longitude_value": ["-37.71625,144.93575"], + "field_latitude_value": ["-37.71625"], + "field_longitude": ["144.93575", "144.93583679199219"], + "field_longitude_value": ["144.93575"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3044"], + "field_project_code": ["01-4158", "D1-01-4158", "D2-01-4158"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "School Pride and Sports Fund" + ], + "field_q_complete": ["Q1 2018", "Q3 2019", "Q2 2022"], + "field_start_date": ["Q4 2018", "Q1 2020"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["2-10 Pascoe St"], + "field_suburb": ["Pascoe Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20263], + "status": [true], + "title": ["Westbreen Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a43f94f1-317a-43c1-9b92-bf4350041a8f"] + }, + "sort": ["Westbreen Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21243:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/westdale-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We improved the 3-year-old kindergarten building roof. We repaired and replaced parts of the roof and installed new iron sheeting.", + "In partnership with Westdale Kindergarten, we upgraded their facilities.\u00a0 \u00a0The upgrade included:\u00a0 increasing\u00a0kindergarten capacity\u00a0for three and four-year-olds by creating a second room upgrading bathroom and kitchen facilities\u00a0a\u00a0new staff room a second shared play area.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $70,500 was allocated to this project.", + "In 2019\u201320, this project was allocated $500,000 through the Children's Facilities Capital Program." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Westdale Kindergarten" + ], + "field_latitude": ["-37.82473888", "-37.82677"], + "field_latitude_longitude_value": ["-37.82473888,147.601447"], + "field_latitude_value": ["-37.82473888"], + "field_longitude": ["147.601447", "147.60224"], + "field_longitude_value": ["147.601447"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3875"], + "field_project_code": ["D1-15-31", "15-31"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2022", "Q2 2021"], + "field_start_date": ["Q3 2021", "Q1 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["99 Wallace St"], + "field_suburb": ["Bairnsdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21243], + "status": [true], + "title": ["Westdale Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["5cae6bae-b84b-407d-9b35-0456bab6c229"] + }, + "sort": ["Westdale Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25274:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/western-autistic-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-23T15:48:48+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. In this significant upgrade, we will build new art and science classrooms. These will replace relocatable buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received at least $6.833 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Western Autistic School" + ], + "field_latitude": ["-37.85078167"], + "field_latitude_longitude_value": ["-37.85078167,144.7780691"], + "field_latitude_value": ["-37.85078167"], + "field_longitude": ["144.7780691"], + "field_longitude_value": ["144.7780691"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3028"], + "field_project_code": ["01-5290"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["1 Burnley Street"], + "field_suburb": ["Laverton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25274], + "status": [true], + "title": ["Western Autistic School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["50dc1332-6406-47c1-9bbb-d07709a631a6"] + }, + "sort": ["Western Autistic School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33041:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/western-heights-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:42:05+10:00"], + "field_about_project_processed": [ + "We will be building a competition-grade gym." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $7.55 million" + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Western Heights Secondary College" + ], + "field_latitude": ["-38.12391"], + "field_latitude_longitude_value": ["-38.12391,144.328058"], + "field_latitude_value": ["-38.12391"], + "field_longitude": ["144.328058"], + "field_longitude_value": ["144.328058"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3215"], + "field_project_code": ["01-8820"], + "field_project_title": [ + "Upgrade and Modernisation - Competition Grade Gym" + ], + "field_q_complete": ["Q2 2026"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Design"], + "field_street_address": ["37-61 Vines Road"], + "field_suburb": ["Hamlyn Heights"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33041], + "status": [true], + "title": ["Western Heights Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["a5a5a90e-c1af-423a-b683-05ca70e24401"] + }, + "sort": ["Western Heights Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20802:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/western-port-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building new learning hubs for junior and senior students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $11.562 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Western Port Secondary College" + ], + "field_latitude": ["-38.309150695800781"], + "field_latitude_longitude_value": [ + "-38.309150695800781,145.19500732421875" + ], + "field_latitude_value": ["-38.309150695800781"], + "field_longitude": ["145.19500732421875"], + "field_longitude_value": ["145.19500732421875"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3915"], + "field_project_code": ["01-7893"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["215 High Street"], + "field_suburb": ["Hastings"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20802], + "status": [true], + "title": ["Western Port Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ede3c338-df28-4207-9d65-e17a1c6d2b14"] + }, + "sort": ["Western Port Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20269:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/westgarth-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will build a competition-grade gym and a new classroom building.", + "We built\u00a0an outdoor inclusive learning space. This included a shed and landscaping.", + "We replaced the roof and upgraded the storm water dispersal." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $12.97 million.", + "In Round 6 of the Inclusive Schools Fund, this project received $166,000", + "In the 2020 Minor Capital Works Fund, the school was allocated $450,165" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Westgarth Primary School" + ], + "field_latitude": ["-37.776471", "-37.7775196", "-37.7775196"], + "field_latitude_longitude_value": ["-37.776471,145.005561"], + "field_latitude_value": ["-37.776471"], + "field_longitude": ["145.005561", "145.0067522", "145.0067522"], + "field_longitude_value": ["145.005561"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3070"], + "field_project_code": ["D2-01-4177", "D1-01-4177", "01-4177"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund - Round 6", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q3 2025", "Q2 2023", "Q2 2022"], + "field_start_date": ["Q2 2022", "Q2 2021", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["45 Brooke St & 311 Clarke St"], + "field_suburb": ["Northcote"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20269], + "status": [true], + "title": ["Westgarth Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["dfc3d071-e572-4910-81a1-a1caca6cb383"] + }, + "sort": ["Westgarth Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36662:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/westgrove-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are resealing the roofs on the school's original buildings. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $361,933 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Westgrove Primary School" + ], + "field_latitude": ["-37.878502"], + "field_latitude_longitude_value": ["-37.878502,144.659529"], + "field_latitude_value": ["-37.878502"], + "field_longitude": ["144.659529"], + "field_longitude_value": ["144.659529"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["01-5365"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["37a Thames Boulevard"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36662], + "status": [true], + "title": ["Westgrove Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["c94ef296-9808-4b21-b89b-a23c179b4379"] + }, + "sort": ["Westgrove Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21227:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/westmeadows-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Hume City Council extended the preschool to increase its licensed capacity to 33 children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u201317 Children's Facilities Capital Program Major Grants, $34,815 has been allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Westmeadows Preschool." + ], + "field_latitude": ["-37.67498"], + "field_latitude_longitude_value": ["-37.67498,144.8888399"], + "field_latitude_value": ["-37.67498"], + "field_longitude": ["144.8888399"], + "field_longitude_value": ["144.8888399"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3049"], + "field_project_code": ["15-201"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["24 Ardlie St"], + "field_suburb": ["Westmeadows"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21227], + "status": [true], + "title": ["Westmeadows Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["47855166-fc69-446f-babc-88869ba3e0ee"] + }, + "sort": ["Westmeadows Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20477:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wheelers-hill-primary-school"], + "changed": ["2023-11-02T17:43:21+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We improved the playground and sports facilities at the school. As part of these works, we upgraded the oval to a synthetic surface.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021\u201322 State Budget, the school received $855,000.\u00a0In 2022 the school was allocated $293,670." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wheelers Hill Primary School." + ], + "field_latitude": ["-37.900227"], + "field_latitude_longitude_value": ["-37.900227,145.178146"], + "field_latitude_value": ["-37.900227"], + "field_longitude": ["145.178146"], + "field_longitude_value": ["145.178146"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["01-5094"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["134-148 Whites Lane"], + "field_suburb": ["Wheelers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20477], + "status": [true], + "title": ["Wheelers Hill Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["38c76465-7928-4a2d-bbc0-823491d87838"] + }, + "sort": ["Wheelers Hill Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20877:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wheelers-hill-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced entry gates and fencing around the perimeter of the college.", + "We upgraded the gymnasium, performing arts centre and the VCE Centre at the school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $336,165.", + "In the 2016\u201317 State Budget, $12 million was allocated to schools across the State for planning. This includes funding for the school. The Victorian Government has allocated a further $3.62 million." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wheelers Hill Secondary College." + ], + "field_latitude": ["-37.909326900024", "-37.9084"], + "field_latitude_longitude_value": [ + "-37.909326900024,145.180865599946" + ], + "field_latitude_value": ["-37.909326900024"], + "field_longitude": ["145.180865599946", "145.17989"], + "field_longitude_value": ["145.180865599946"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3150"], + "field_project_code": ["D1-01-8474", "01-8474"], + "field_project_title": [ + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2022", "Q1 2019"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Raphael Dr"], + "field_suburb": ["Wheelers Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20877], + "status": [true], + "title": ["Wheelers Hill Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3b3b63ee-6ed4-4d82-b7a7-d91de04687c6"] + }, + "sort": ["Wheelers Hill Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21349:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/white-hills-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200b\u200bThis funding allowed the City of Greater Bendigo to upgrade the kindergarten's front play space with paths, various sensory areas, and a natural environment for the children.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2014\u201315, $50,000 was allocated to the kindergarten." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at White Hills Kindergarten" + ], + "field_latitude": ["-36.7265"], + "field_latitude_longitude_value": ["-36.7265,144.30751"], + "field_latitude_value": ["-36.7265"], + "field_longitude": ["144.30751"], + "field_longitude_value": ["144.30751"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["15-94"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2016"], + "field_status_name": ["Complete"], + "field_street_address": ["62 Raglan St"], + "field_suburb": ["White Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21349], + "status": [true], + "title": ["White Hills Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["56ce58a6-81e0-4222-8b48-965596b7310d"] + }, + "sort": ["White Hills Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20055:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/white-hills-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are continuing our work at this school, and planning a further upgrade.", + "We upgraded\u00a0old classrooms and facilities, transforming them into modern learning environments.\u00a0", + "We helped the school to upgrade toilets to improve amenity, cleanliness and hygiene." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning.", + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the state for planning. This includes funding for the school. In the 2019\u201320 State Budget, the school received $4.6 million.", + "In the 2020 Minor Capital Works Fund the school was allocated $70,412." + ], + "field_funding_type_name": [ + "Planning", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at White Hills Primary School." + ], + "field_latitude": ["-36.72737", "-36.7282897"], + "field_latitude_longitude_value": ["-36.72737,144.30451"], + "field_latitude_value": ["-36.72737"], + "field_longitude": ["144.30451", "144.3039434"], + "field_longitude_value": ["144.30451"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/221021_white-hill-primary_10.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3550"], + "field_project_code": ["D2-01-1916", "01-1916", "D1-01-1916"], + "field_project_title": [ + "Planning for an Upgrade and Modernisation", + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": [ + "Subject to future funding", + "Q3 2021", + "Q4 2021" + ], + "field_start_date": ["Q2 2023", "Q2 2018", "Q4 2020"], + "field_status_name": ["Planning", "Complete", "Complete"], + "field_street_address": ["16 Plumridge St"], + "field_suburb": ["White Hills"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20055], + "status": [true], + "title": ["White Hills Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["852dbf7e-5ccc-4713-91d0-62a71f039318"] + }, + "sort": ["White Hills Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/35013:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/whitfield-district-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-18T12:15:22+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Whitfield District Primary School. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2025.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Whitfield District Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-36.765870"], + "field_latitude_longitude_value": ["-36.765870,146.412390"], + "field_latitude_value": ["-36.765870"], + "field_longitude": ["146.412390"], + "field_longitude_value": ["146.412390"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3733"], + "field_project_code": ["15-WDPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["6184 Mansfield-Whitfield Road"], + "field_suburb": ["Whitfield"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [35013], + "status": [true], + "title": [ + "Whitfield District Primary School Kindergarten (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["b1429a45-5bef-43a0-9b35-265ad3208b3f"] + }, + "sort": [ + "Whitfield District Primary School Kindergarten (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22665:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/whittington-child-and-family-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We installed a new emergency messaging system to keep children, staff and families safe. In an emergency, the centre will be able to quickly communicate with the community and begin an automatic lockdown. This new technology will keep the centre community safe and informed of any unexpected concerns." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $50,000 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Whittington Child and Family Centre." + ], + "field_latitude": ["-38.17850229"], + "field_latitude_longitude_value": ["-38.17850229,144.3947096"], + "field_latitude_value": ["-38.17850229"], + "field_longitude": ["144.3947096"], + "field_longitude_value": ["144.3947096"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["15-5274"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["19 Worden Ct"], + "field_suburb": ["Whittington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22665], + "status": [true], + "title": ["Whittington Child and Family Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9dd14bd4-4bfc-47a9-b316-53782eb9227c"] + }, + "sort": ["Whittington Child and Family Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20486:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/whittington-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded Whittington Primary School. We built: flexible teaching and learning spaces, an art room, a music room, half-sized gym, administration facilities, and a central landscaped courtyard. We also demolished outdated school buildings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $1.6 million was allocated to the school. In the 2015\u201316 State Budget, $5 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Whittington Primary School" + ], + "field_latitude": ["-38.17683"], + "field_latitude_longitude_value": ["-38.17683,144.39639"], + "field_latitude_value": ["-38.17683"], + "field_longitude": ["144.39639"], + "field_longitude_value": ["144.39639"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3219"], + "field_project_code": ["01-5123"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["Solar Drive"], + "field_suburb": ["Whittington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20486], + "status": [true], + "title": ["Whittington Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7404d6ec-e586-4afe-a076-c6714623bf92"] + }, + "sort": ["Whittington Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20073:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/whittlesea-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished the toilet block. It has improved amenity, cleanliness and hygiene.", + "We built an inclusive playground. It includes new play equipment and rubber soft fall surfacing." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $256,127", + "In Round 6 of the Inclusive Schools Fund, this project received $193,000" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Whittlesea Primary School" + ], + "field_latitude": ["-37.51426809", "-37.5148832"], + "field_latitude_longitude_value": ["-37.51426809,145.1140469"], + "field_latitude_value": ["-37.51426809"], + "field_longitude": ["145.1140469", "145.1144289"], + "field_longitude_value": ["145.1140469"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Inclusive Schools Fund at Whittlesea Primary School \u00a0" + ], + "field_postcode": ["3757"], + "field_project_code": ["D1-01-2090", "01-2090"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q4 2023", "Q2 2023"], + "field_start_date": ["Q4 2021", "Q2 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2425-2435 Plenty Road"], + "field_suburb": ["Whittlesea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20073], + "status": [true], + "title": ["Whittlesea Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["cf6e1fa4-d80b-48ec-bec9-c6c3fca9d9c0"] + }, + "sort": ["Whittlesea Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33028:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/whittlesea-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We are planning an upgrade at this school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school shared in $24 million allocated for planning." + ], + "field_funding_type_name": ["Planning"], + "field_landing_page_summary": [ + "Learn more about what we're planning for Whittlesea Secondary College" + ], + "field_latitude": ["-37.5150463"], + "field_latitude_longitude_value": ["-37.5150463,145.1201751"], + "field_latitude_value": ["-37.5150463"], + "field_longitude": ["145.1201751"], + "field_longitude_value": ["145.1201751"], + "field_mappintype_name": ["Planning"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3757"], + "field_project_code": ["01-7408"], + "field_project_title": ["Planning for an Upgrade and Modernisation"], + "field_q_complete": ["Subject to future funding"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["55 Laurel Street"], + "field_suburb": ["Whittlesea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33028], + "status": [true], + "title": ["Whittlesea Secondary College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["2b3c7f74-3f47-44f8-9ff5-8e2bf66074d5"] + }, + "sort": ["Whittlesea Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21493:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/whittlesea-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Secondary school students from the Whittlesea area now have access to cutting-edge learning at the Whittlesea Tech School hosted by Melbourne Polytechnic. The Tech School is a high-tech learning environment. Its innovative education programs will link with local industry to deliver real world learning. Students from 14 partner schools in Whittlesea will access the Tech School throughout the year for specialised programs. The school emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future. Site and host Melbourne Polytechnic is hosting the Whittlesea Tech School at its Epping Campus. The Executive Director of the school is Marc Blanks. The Directors of the school are Sandra McKechnie and Stefan Schutt. Industry and education focus The school has an education focus aligned to industries that are predicted to experience strong economic and employment growth: advanced manufacturing scientific and technical services healthcare and social assistance entrepreneurial skills food and fibre. Enrolment and partners Secondary students from 14 partner schools now have have access to high-tech learning at the cutting edge school. School partners Edgars Creek Secondary College Epping Secondary College Hazel Glen College Lalor Secondary College Lalor North Secondary College Marymede Catholic College Mernda Central P-12 College Mill Park Secondary College Peter Lalor Secondary College St Monica\u2019s College The Lakes South Morang P-9 School Charles La Trobe P-12 College (The Pavilion Campus - Epping Campus) Thomastown Secondary College Whittlesea Secondary College Other partners Advanced Manufacturing Growth Centre Australia Centre for the Moving Image Career Education Association of Victoria Carlton Football Club City of Whittlesea CSL Behring Design and Technology Teachers Association Hume Whittlesea LLEN La Trobe University Melbourne Electronic Sound Studio Microsoft North Link Regional Development Victoria RMIT University Royal Society of Victoria Science Teachers' Association of Victoria Science Gallery of Melbourne Contact For more information about the Tech Schools initiative, visit About Tech Schools or email tech.schools@edumail.vic.gov.au. School Design Awards This school, designed by ClarkeHopkinsClarke, was a finalist in the 2019 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Whittlesea Tech School" + ], + "field_latitude": ["-37.652699"], + "field_latitude_longitude_value": ["-37.652699,145.031647"], + "field_latitude_value": ["-37.652699"], + "field_longitude": ["145.031647"], + "field_longitude_value": ["145.031647"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3076"], + "field_project_code": ["TS-Wh"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Melbourne P\u200bolytechnic, Epping Campus, Cooper St & Dalton Rd" + ], + "field_suburb": ["Epping"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21493], + "status": [true], + "title": ["Whittlesea Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b0da87a6-88a5-4ea7-94cc-f6e1212496fb"] + }, + "sort": ["Whittlesea Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19985:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/whorouly-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school install a new roof on its main building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $155,125" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Whorouly Primary School" + ], + "field_latitude": ["-36.505724"], + "field_latitude_longitude_value": ["-36.505724,146.586356"], + "field_latitude_value": ["-36.505724"], + "field_longitude": ["146.586356"], + "field_longitude_value": ["146.586356"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3735"], + "field_project_code": ["01-1373"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["18 Church Street"], + "field_suburb": ["Whorouly"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19985], + "status": [true], + "title": ["Whorouly Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["2e7d5152-efe2-4be2-9471-1fcc6c6a438e"] + }, + "sort": ["Whorouly Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20664:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wilandra-rise-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "The school is situated in the South East growth corridor within the local government area of Casey and serves families in the suburb of Clyde North.\u00a0 The school has been built to accommodate up to 475 students and was delivered by the Learning Communities Victoria\u00a0consortium. \u200b The school opened for students, Prep to Year 6 in Term 1, 2017." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Delivered as part of the $291 million allocated in 2014\u201315 for the Public Private Partnership Project across regional and metropolitan Victoria." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Wilandra Rise Primary School" + ], + "field_latitude": ["-38.10849"], + "field_latitude_longitude_value": ["-38.10849,145.32097"], + "field_latitude_value": ["-38.10849"], + "field_longitude": ["145.32097"], + "field_longitude_value": ["145.32097"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3978"], + "field_project_code": ["01-5558"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["25 Aayana St"], + "field_suburb": ["Clyde North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20664], + "status": [true], + "title": ["Wilandra Rise Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3f4591ea-0b86-4590-b712-63eaf27bccb7"] + }, + "sort": ["Wilandra Rise Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21262:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/will-will-rook-preschool-kode-glenroy"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We expanded Will Will Rook Preschool in preparation for the roll-out of subsidised kindergarten for three-year-olds. This project will improve the quality of the learning environment and help ensure that the children in this community have access to two years of high-quality funded kindergarten from 2022." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 20\u201321 Building Blocks Capacity Grants $1,577,178 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Will Will Rook Preschool (KODE Glenroy)" + ], + "field_latitude": ["-37.704097747802734"], + "field_latitude_longitude_value": [ + "-37.704097747802734,144.92863464355469" + ], + "field_latitude_value": ["-37.704097747802734"], + "field_longitude": ["144.92863464355469"], + "field_longitude_value": ["144.92863464355469"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3046"], + "field_project_code": ["15-4077"], + "field_project_title": ["Building Blocks Capacity Grant - Expansion"], + "field_q_complete": ["Q2 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["208 Hilton St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21262], + "status": [true], + "title": ["Will Will Rook Preschool (KODE Glenroy)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["e0aa1111-7b3e-48a4-8346-c2ceac7af58f"] + }, + "sort": ["Will Will Rook Preschool (KODE Glenroy)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20964:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/william-ruthven-secondary-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0constructed a new Years 7\u20139 building, Years 10\u201312 building and administration facilities.\u00a0 This project, designed by Kneeler Design,\u00a0was a finalist in the\u00a02019 Victorian School Design Awards." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $10.2 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at William Ruthven Secondary College" + ], + "field_latitude": ["-37.7123565673828"], + "field_latitude_longitude_value": [ + "-37.7123565673828,145.002975463867" + ], + "field_latitude_value": ["-37.7123565673828"], + "field_longitude": ["145.002975463867"], + "field_longitude_value": ["145.002975463867"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3073"], + "field_project_code": ["01-8895"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Merrilands Rd"], + "field_suburb": ["Reservoir"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20964], + "status": [true], + "title": ["William Ruthven Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b7beecfe-309d-4b2a-95c2-06a013372972"] + }, + "sort": ["William Ruthven Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20878:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/williamstown-high-school"], + "changed": ["2023-08-25T15:44:52+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the Year 12 study centre and completing the school's theatre complex.", + "We refurbished the Pasco campus student amenities block. It has improved amenity, cleanliness and hygiene.", + "We helped deliver the school's Centenary Theatre project. The project was largely school funded and managed, to the approximate value of $3 million. The project delivered stage 1 of the new performing arts centre. It provides seating for 300 people, a performance space for music, and a space to showcase student art work. It is available for community groups, including the local primary school, for \u200bproductions and functions." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $137,000. In 2020, the school received $1.23 million.", + "In Round 2 of the Minor Capital Works Fund, the project received $499,827.", + "In the 2015\u201316 State Budget, $500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Williamstown High School." + ], + "field_latitude": ["-37.86247", "-37.862855", "-37.86247"], + "field_latitude_longitude_value": ["-37.86247,144.89467"], + "field_latitude_value": ["-37.86247"], + "field_longitude": ["144.89467", "144.895024", "144.89467"], + "field_longitude_value": ["144.89467"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3016"], + "field_project_code": ["D1-01-8475", "D2-01-8475", "01-8475"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2", + "School Improvement Fund" + ], + "field_q_complete": ["Q2 2024", "Q3 2023"], + "field_start_date": ["Q2 2019", "Q4 2021"], + "field_status_name": ["Construction", "Complete", "Complete"], + "field_street_address": ["76 Pasco St"], + "field_suburb": ["Williamstown"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20878], + "status": [true], + "title": ["Williamstown High School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["745c30ad-04d8-4242-b86e-8f798ed90083"] + }, + "sort": ["Williamstown High School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/27775:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/willmott-park-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-10-03T10:17:50+11:00"], + "field_about_project_processed": [ + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 8 of the Inclusive Schools Fund, the project received $200,000." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Willmott Park Primary School" + ], + "field_latitude": ["-37.591778"], + "field_latitude_longitude_value": ["-37.591778,144.922592"], + "field_latitude_value": ["-37.591778"], + "field_longitude": ["144.922592"], + "field_longitude_value": ["144.922592"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the\u00a0 kindergarten we're building at Willmott Park Primary School." + ], + "field_postcode": ["3064"], + "field_project_code": ["01-5342"], + "field_project_title": ["Inclusive Schools Fund \u2013 Round 8"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["54 Dorchester St"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [27775], + "status": [true], + "title": ["Willmott Park Primary School"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["3dbc7d83-c381-4115-b951-5521dc182231"] + }, + "sort": ["Willmott Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/31133:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/willmott-park-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-03-10T16:46:53+11:00"], + "field_about_project_processed": [ + "We\u2019re building a new kindergarten at Willmott Park Primary School.It will have 3 classrooms as well as outdoor learning and play spaces. The centre will provide an extra 99 licensed kindergarten places in the local area.Having the kindergarten and school together may help local children make a smoother transition into primary school. It can also make drop-off time simpler for some families.EnrolmentUniting (Victoria and Tasmania) has been announced as the provider for Willmott Park Primary School Kindergarten (interim name).You can contact Uniting (Victoria and Tasmania) through email earlylearning@unitingvictas.org.au or on 1800 183 103." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $371 million committed in the 2019-20 State Budget to support the rollout of Three-Year-Old-Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Willmott Park Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-37.59180371"], + "field_latitude_longitude_value": ["-37.59180371,144.922058"], + "field_latitude_value": ["-37.59180371"], + "field_longitude": ["144.922058"], + "field_longitude_value": ["144.922058"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3064"], + "field_project_code": ["01-5342-ELC"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["54 Dorchester Street"], + "field_suburb": ["Craigieburn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [31133], + "status": [true], + "title": ["Willmott Park Primary School Kindergarten (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["540c0ac7-b95e-42c2-8c91-d5a4b84d35cc"] + }, + "sort": ["Willmott Park Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20690:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/willowbank-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Gisborne. It opened in 2022 and helps the growing local population get great education close to home. Rynn Anderson was appointed as the first principal of the school. The school was known by its interim name, Bridge Road (Melton), during the planning phase. We consulted with the community on the school's name from 11 June to 25 June 2021. The school is named after the suburb it is located in. Facilities Facilities include the following: an administration building, including library, art, food and science learning spaces a performing arts and physical education building 2 learning neighbourhoods 2 outdoor hardcourts a sports field a bike shed playgrounds Design consultation In 2018, we engaged local communities in Melbourne about establishing new schools. We gathered valuable insights, which served as the foundation for our concept designs. Between January and February 2020, we conducted a second round of engagement. We invited residents to share their ideas and knowledge. This helped identify elements that would shape their new school. We received valuable feedback from the school community about the outdoor areas. We heard they value: large playgrounds that they can use outside of school hours all-ability facilities that stimulate play-based learning spaces where kids can grow their own produce. Willowbank families told us they valued the environment and wanted their school to integrate with the natural surrounds. Our consultation received strong and consistent feedback about the school's design. Our architects used your feedback to help shape your school's interior and its landscape design. Co-located kinder We have built a\u00a0kinder\u00a0at the school. Having the kindergarten and school together may help local children make a smooth transition from pre-school and can also make drop-off time simpler for some families." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2020, the school shared in $438.6 million of funding for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Willowbank Primary School." + ], + "field_latitude": ["-37.504502"], + "field_latitude_longitude_value": ["-37.504502,144.608486"], + "field_latitude_value": ["-37.504502"], + "field_longitude": ["144.608486"], + "field_longitude_value": ["144.608486"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/WillowbankPS_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3437"], + "field_project_code": ["01-5587"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["385 McGeorge Rd"], + "field_suburb": ["Gisborne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20690], + "status": [true], + "title": ["Willowbank Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["9e5f7adb-ade4-4ce1-b3d1-1896f7226d71"] + }, + "sort": ["Willowbank Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20195:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/willowmavin-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the covered basketball/netball courts to create a modern physical education space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $195,165." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Willowmavin Primary School." + ], + "field_latitude": ["-37.2596149"], + "field_latitude_longitude_value": ["-37.2596149,144.8881585"], + "field_latitude_value": ["-37.2596149"], + "field_longitude": ["144.8881585"], + "field_longitude_value": ["144.8881585"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3764"], + "field_project_code": ["01-3479"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["690 Willowmavin Rd"], + "field_suburb": ["Willowmavin"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20195], + "status": [true], + "title": ["Willowmavin Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b20c3b3e-56bc-4a7f-9352-bfbc2331292c"] + }, + "sort": ["Willowmavin Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36738:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wilmot-road-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Wilmot Road Primary School in Shepparton.The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.The centre may also include other spaces for community use.From 2028 Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Wilmot Road Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-36.398498"], + "field_latitude_longitude_value": ["-36.398498,145.405898"], + "field_latitude_value": ["-36.398498"], + "field_longitude": ["145.405898"], + "field_longitude_value": ["145.405898"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3630"], + "field_project_code": ["15-WRPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["84\u201390 Wilmot Road"], + "field_suburb": ["Shepparton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36738], + "status": [true], + "title": [ + "Wilmot Road Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["7a269f88-110a-40bd-a778-30c164d47adb"] + }, + "sort": [ + "Wilmot Road Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24976:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Wimba-Primary-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Tarneit. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 525 students when the first stage of the school is complete.Subscribe to our mailing list for updates.Enrolments are openThe school will open for enrolments for students in Prep to Grade 6. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au. For all enrolment queries, please email wimba.ps@education.vic.gov.au.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Wimba Primary School." + ], + "field_latitude": ["-37.823241"], + "field_latitude_longitude_value": ["-37.823241,144.668282"], + "field_latitude_value": ["-37.823241"], + "field_longitude": ["144.668282"], + "field_longitude_value": ["144.668282"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/TarnietNOrthPS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Wimba Primary School\u00a0was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Wimba\u00a0(pronounced wim-bah ) is a Bunurong word meaning white wallaby. We\u00a0used\u00a0Tarneit North Primary School\u00a0as an interim name while the school was being planned and designed.", + "Paul Schwartz has been appointed as principal of the new school. Paul has been teaching for 20 years in a variety of schools in the western suburbs. Over the past 8 years, he's been the principal of Wedge Park Primary School. Paul has a passion for seeing every child achieve success every day and wants to ensure that all children have the literacy and numeracy skills to achieve anything they want in the future.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 2 learning neighbourhoods a community hub with indoor multi-use court, canteen and arts/music spaces hard courts a sports field a carpark a kindergarten. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage. We have planned for future growth of this school. Those plans include an additional learning neighbourhood and more learning resource spaces.", + "Across late 2021 and during early-mid 2022, we consulted with local Traditional Owners, represented by the\u00a0Bunurong Land Council Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding", + "We're building Wimba Primary School Kindergarten at the school. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families." + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation", + "New kindergarten" + ], + "field_paragraph_body": [ + "Tarneit North Primary School (interim name) - Introducing Paul Schwartz \u00a0" + ], + "field_postcode": ["3029"], + "field_project_code": ["01-5604"], + "field_project_title": ["New school"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["11 Tuition Dr"], + "field_suburb": ["Tarneit"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24976], + "status": [true], + "title": ["Wimba Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["04560306-3e26-4d3f-823e-7ba80d8f6dd0"] + }, + "sort": ["Wimba Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/26561:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Wimba-Primary-School-Kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-08-01T15:04:53+10:00"], + "field_about_project_processed": [ + "We are building a new kindergarten at Wimba Primary School.Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families. This kindergarten opens in 2024.We used Tarneit North Primary School Kindergarten as an interim name while the kindergarten was being planned, designed, and built.EnrolmentEarly Childhood Management Services (ECMS) has been announced as the provider for Wimba Primary School Kindergarten. For enrolments, please contact Wyndham City Council through their kindergarten registration webpage.If you require further assistance, please contact Wyndham City Council's Child and Family support on 1300 370 567." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wimba Primary School Kindergarten." + ], + "field_latitude": ["-37.824541"], + "field_latitude_longitude_value": ["-37.824541,144.669077"], + "field_latitude_value": ["-37.824541"], + "field_longitude": ["144.669077"], + "field_longitude_value": ["144.669077"], + "field_mappintype_name": ["Early childhood"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/TarneitNorthPSKindergarten_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["15-TNPSK"], + "field_project_title": ["Kindergarten on a school site"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["25 Tuition Dr"], + "field_suburb": ["Tarneit North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [26561], + "status": [true], + "title": ["Wimba Primary School Kindergarten"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["6c6ebdd4-4b06-4680-8d1e-e6a29ba89356"] + }, + "sort": ["Wimba Primary School Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20060:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/winchelsea-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We updated\u00a0and refurbished\u00a0classrooms and facilities\u00a0in poor condition, including the library. We also removed asbestos and repaired the roof. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017\u201318 State Budget, $352,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Winchelsea Primary School" + ], + "field_latitude": ["-38.24451"], + "field_latitude_longitude_value": ["-38.24451,143.98399"], + "field_latitude_value": ["-38.24451"], + "field_longitude": ["143.98399"], + "field_longitude_value": ["143.98399"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3241"], + "field_project_code": ["01-2015"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["60 Main Street"], + "field_suburb": ["Winchelsea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20060], + "status": [true], + "title": ["Winchelsea Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8723324c-c7af-495a-bd2c-b8db16e16513"] + }, + "sort": ["Winchelsea Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24237:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/windsor-community-childrens-centre-co-op"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-03-17T13:24:28+11:00"], + "field_about_project_processed": [ + "We are building a commercial-grade kitchen that can also be used as a teaching space. We are also building an outdoor wellness therapeutic retreat. This will be a tranquil space with wheelchair access that can be used for staff breaks, parent/teacher meetings and community events. We'll also build a break-away staff room accessible from the outdoor retreat, giving staff another place to relax, dine and hold meetings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2020-2021 Building Blocks Improvement Grant, $183,449 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Windsor Community Children's Centre Co-op" + ], + "field_latitude": ["-37.85414736"], + "field_latitude_longitude_value": ["-37.85414736,144.9917523"], + "field_latitude_value": ["-37.85414736"], + "field_longitude": ["144.9917523"], + "field_longitude_value": ["144.9917523"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3181"], + "field_project_code": ["15-4392"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q2 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["131-133 Union St"], + "field_suburb": ["Windsor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24237], + "status": [true], + "title": ["Windsor Community Children's Centre Co-op"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["cfcf2165-0234-443e-bf2c-1e99c3b89349"] + }, + "sort": ["Windsor Community Children's Centre Co-op"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20049:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/windsor-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised the school to accommodate an extra 200 local students. During Stage 1, we built a specialist learning building for students. In Stage 2, we constructed a three-storey building. It has a multi-purpose hall, music room, and classrooms. We also upgraded the staff administration area and the built a learning resource centre for students.", + "\u200bWe'v\u200be supported various minor works projects at the school. \u00a0\u200b\u200b \u200b The Victorian Government allocated $10 million to the School Improvement Fund in the 2015-16 State Budget to support minor works projects.\u00a0 The School Improvement Fund supports small school projects that contribute to the community's pride in the school, and that help to foster a great relationship between the school and its local community.\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019-20 State Budget, the school received $477,400. In 2020, the school received $15.5 million in funding. The $15.5 million is a share of $130.1 million from the Established Areas Program.", + "In the 2015-16 State Budget, $25,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Windsor Primary School" + ], + "field_latitude": ["-37.85516", "-37.85517"], + "field_latitude_longitude_value": ["-37.85516,144.99591"], + "field_latitude_value": ["-37.85516"], + "field_longitude": ["144.99591", "144.99591"], + "field_longitude_value": ["144.99591"], + "field_mappintype_name": ["Planning", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3181"], + "field_project_code": ["D1-01-1896", "01-1896"], + "field_project_title": [ + "Upgrade and Modernisation", + "School Improvement Fund" + ], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["Hornby Street"], + "field_suburb": ["Windsor"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20049], + "status": [true], + "title": ["Windsor Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["30529db4-84b4-45db-b3bf-16006817f576"] + }, + "sort": ["Windsor Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21242:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wingate-avenue-childrens-co-op"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the co-operative to create a modern, safe and inclusive learning environment. This upgrade has also created additional capacity at the centre for both 3 and 4-year-old kindergarten, as well as long day care." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children's Facilities Capital Program $500,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wingate Avenue Children's Co-op." + ], + "field_latitude": ["-37.779496"], + "field_latitude_longitude_value": ["-37.779496,144.919464"], + "field_latitude_value": ["-37.779496"], + "field_longitude": ["144.919464"], + "field_longitude_value": ["144.919464"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3032"], + "field_project_code": ["15-3070"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q2 2023"], + "field_start_date": ["Q4 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["13B Wingate Av"], + "field_suburb": ["Ascot Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21242], + "status": [true], + "title": ["Wingate Avenue Children's Co-op"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["23e32483-88e8-43df-aefc-683cee26344c"] + }, + "sort": ["Wingate Avenue Children's Co-op"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21249:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/winifred-nance-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are building a new outdoor play space at the kindergarten. It will be more accessible for children of all abilities and give them more opportunities for nature-based play. Staff will have more flexibility to take learning outdoors.", + "Colac Otway Shire Council renovated and refurbished the kindergarten. These works ensured the kindergarten is able to meet its target capacity of 33 children. The kitchen was upgraded to allow children to participate in cooking activities. The staff office space was converted to a parents\u2019 meeting room. Families can use it to discuss their child\u2019s progress with the educators. Support services can use it to liaise with families and children in a familiar environment. Extra storage space has created an effective and functional work space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $300,000 was allocated to the project.", + "As part of the 2017\u201318 Children's Facilities Capital Program $301,500 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Early Learning Facility Upgrade" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Winifred Nance Kindergarten." + ], + "field_latitude": ["-38.335186"], + "field_latitude_longitude_value": ["-38.335186,143.578583"], + "field_latitude_value": ["-38.335186"], + "field_longitude": ["143.578583"], + "field_longitude_value": ["143.578583"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3250"], + "field_project_code": ["d1-15-320", "15-320"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade", + "Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024", "Q1 2020"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning", "Complete"], + "field_street_address": ["5 Gilmartin St"], + "field_suburb": ["Colac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21249], + "status": [true], + "title": ["Winifred Nance Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f0fc608d-62ac-44d6-8ceb-2f7d604faf4d"] + }, + "sort": ["Winifred Nance Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28649:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/winston-hills-preschool-association"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We are upgrading the office, kitchen and storage areas. This will make better use of space and give staff more privacy for breaks or family meetings." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $335,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at Winston Hills Preschool Association." + ], + "field_latitude": ["-37.74116053"], + "field_latitude_longitude_value": ["-37.74116053,145.0922519"], + "field_latitude_value": ["-37.74116053"], + "field_longitude": ["145.0922519"], + "field_longitude_value": ["145.0922519"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3084"], + "field_project_code": ["15-648"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Planning"], + "field_street_address": ["24 Rohan St"], + "field_suburb": ["Viewbank"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28649], + "status": [true], + "title": ["Winston Hills Preschool Association"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["774a7e29-276c-4296-8571-57c70fb4a64a"] + }, + "sort": ["Winston Hills Preschool Association"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20728:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/winters-flat-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We replaced older buildings containing asbestos with new permanent modular buildings. The new buildings feature: a multipurpose hall an art room external learning spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 State Budget, the school received $2.916 million through the Permanent Modular School Buildings Program." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Winters Flat Primary School." + ], + "field_latitude": ["-37.06995297"], + "field_latitude_longitude_value": ["-37.06995297,144.2080911"], + "field_latitude_value": ["-37.06995297"], + "field_longitude": ["144.2080911"], + "field_longitude_value": ["144.2080911"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3450"], + "field_project_code": ["01-652"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q4 2020"], + "field_start_date": ["Q2 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["3 Roberts Av"], + "field_suburb": ["Castlemaine"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20728], + "status": [true], + "title": ["Winters Flat Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1c168035-70f1-41a3-ae75-2b76b8ae78a3"] + }, + "sort": ["Winters Flat Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20046:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/winton-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised classrooms and other\u00a0facilities at the\u00a0school.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget $90,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Winton Primary School." + ], + "field_latitude": ["-36.521351"], + "field_latitude_longitude_value": ["-36.521351,146.085114"], + "field_latitude_value": ["-36.521351"], + "field_longitude": ["146.085114"], + "field_longitude_value": ["146.085114"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3673"], + "field_project_code": ["01-1870"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2019"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["Fox St"], + "field_suburb": ["Winton"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20046], + "status": [true], + "title": ["Winton Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b4590271-8243-49e8-9a46-ae825fbb12de"] + }, + "sort": ["Winton Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20618:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woady-yaloak-primary-school"], + "changed": ["2023-09-13T11:55:40+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading and modernising facilities at all four campuses of the school. This ensures\u00a0students are\u00a0learning in an environment designed for delivering modern education." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 State Budget, the school received $9.048 million, with a further $2.1 million in 2023." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Woady Yaloak Primary School." + ], + "field_latitude": ["-37.6437313"], + "field_latitude_longitude_value": ["-37.6437313,143.6842303"], + "field_latitude_value": ["-37.6437313"], + "field_longitude": ["143.6842303"], + "field_longitude_value": ["143.6842303"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3351"], + "field_project_code": ["01-5440"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2024"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["50 Becker St"], + "field_suburb": ["Smythesdale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20618], + "status": [true], + "title": ["Woady Yaloak Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["f07a5bbc-cd44-4dbd-97a5-fdae022a1022"] + }, + "sort": ["Woady Yaloak Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20944:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wodonga-middle-years-college"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the school, including modernising the Technology Wing.", + "We are refurbishing the Year 8 student toilets at the Felltimber Campus for accessibility and amenity. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "From the 2020\u201321 Infrastructure Planning and Acceleration fund, the school was allocated $1.25 million in planning funding. In the 2020\u201321 State Budget, the school received $11.25 million.", + "In the 2022\u201323 State Budget the project received $281,517 from the Minor Capital Works Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wodonga Middle Years College" + ], + "field_latitude": ["-36.121467590332031", "-36.130844"], + "field_latitude_longitude_value": [ + "-36.121467590332031,146.87991333007812" + ], + "field_latitude_value": ["-36.121467590332031"], + "field_longitude": ["146.87991333007812", "146.890563"], + "field_longitude_value": ["146.87991333007812"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["01-8851", "D1-01-8851"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Felltimber Campus" + ], + "field_q_complete": ["Q4 2023", "Q1 2024"], + "field_start_date": ["Q4 2020", "Q2 2022"], + "field_status_name": ["Construction", "Construction"], + "field_street_address": ["22-24 Mitchell St"], + "field_suburb": ["Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20944], + "status": [true], + "title": ["Wodonga Middle Years College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["7c2abba5-5784-4a28-9231-e60969a270ca"] + }, + "sort": ["Wodonga Middle Years College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25391:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wodonga-senior-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the staff and student toilet block at the Benalla Flexible Learning Centre campus to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $495,397 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wodonga Senior Secondary College" + ], + "field_latitude": ["-36.12560893"], + "field_latitude_longitude_value": ["-36.12560893,146.8810522"], + "field_latitude_value": ["-36.12560893"], + "field_longitude": ["146.8810522"], + "field_longitude_value": ["146.8810522"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["01-8480"], + "field_project_title": [ + "Minor Capital Works Fund - Benalla Flexible Learning Centre" + ], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["80 Brockley Street"], + "field_suburb": ["Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25391], + "status": [true], + "title": ["Wodonga Senior Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["3d2016bf-2d90-4311-a2b2-8ae8b31ad87b"] + }, + "sort": ["Wodonga Senior Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20456:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wodonga-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We\u00a0created an indoor space with an\u00a0adjacent garden where students can learn to self-manage their emotions in safety and with dignity.\u200b\u00a0 \u00a0 \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the Inclusive Schools Fund, $200,000 was allocated to the school." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wodonga South Primary School" + ], + "field_latitude": ["-36.14013"], + "field_latitude_longitude_value": ["-36.14013,146.89431"], + "field_latitude_value": ["-36.14013"], + "field_longitude": ["146.89431"], + "field_longitude_value": ["146.89431"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3690"], + "field_project_code": ["01-5042"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q3 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["15 Cartwright St"], + "field_suburb": ["Wodonga"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20456], + "status": [true], + "title": ["Wodonga South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["3385f528-54e5-4890-af85-3e6a25af9dea"] + }, + "sort": ["Wodonga South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33671:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wollert-andrews-road-primary-school-interim-name"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-04T12:20:13+10:00"], + "field_about_project_processed": [ + "We are planning a school in the City of Whittlesea to help the growing local population get a great education close to home." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "The 2022\u201323 State Budget provided $236.7 million to acquire land for 15 future schools, including Wollert Andrews Road Primary School." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Wollert Andrews Road Primary School (interim name)" + ], + "field_latitude": ["-37.60193697"], + "field_latitude_longitude_value": ["-37.60193697,145.0247312"], + "field_latitude_value": ["-37.60193697"], + "field_longitude": ["145.0247312"], + "field_longitude_value": ["145.0247312"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["01-5620"], + "field_project_title": ["New School"], + "field_q_complete": ["Subject to future funding"], + "field_status_name": ["Planning"], + "field_street_address": ["Craigieburn Road"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33671], + "status": [true], + "title": ["Wollert Andrews Road Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["88136247-33aa-4315-85dc-dfa76d2732e7"] + }, + "sort": ["Wollert Andrews Road Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33011:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wollert-central-primary-school-interimname"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-05-24T08:40:54+10:00"], + "field_about_project_processed": [ + "We're building a new primary school in Wollert. It will open in 2025 with places for up to 525 students. This will help the growing local population get a great education close to home.We're building Wollert Central Primary School Kindergarten (interim name) at the school. Having the kindergarten and school together may help local children make a smooth transition into primary school and can also make drop-off time simpler for some families.Subscribe to our mailing list for updates.\u00a0\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received a share of $573.178 million" + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Wollert Central Primary School (interim name)" + ], + "field_latitude": ["-37.61702069030673"], + "field_latitude_longitude_value": [ + "-37.61702069030673,145.03715485700846" + ], + "field_latitude_value": ["-37.61702069030673"], + "field_longitude": ["145.03715485700846"], + "field_longitude_value": ["145.03715485700846"], + "field_mappintype_name": ["New school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["01-5582"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q2 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["110 Saltlake Boulevard"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33011], + "status": [true], + "title": ["Wollert Central Primary School (interim name)"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["8ea190d0-fb00-47ea-af55-1f7f71a7a46b"] + }, + "sort": ["Wollert Central Primary School (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33837:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wollert-central-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a 3-room kindergarten at the new Wollert Central Primary School (interim name).\u00a0It will open in 2025 and provide 99 kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Wollert Central Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-37.619099"], + "field_latitude_longitude_value": ["-37.619099,145.036663"], + "field_latitude_value": ["-37.619099"], + "field_longitude": ["145.036663"], + "field_longitude_value": ["145.036663"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3750"], + "field_project_code": ["15-WCPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_status_name": ["Design"], + "field_street_address": ["120 Saltlake Boulevard"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33837], + "status": [true], + "title": [ + "Wollert Central Primary School Kindergarten (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["432af787-32d8-45cd-b904-f31bc78cf876"] + }, + "sort": ["Wollert Central Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20965:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wollert-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new secondary school in Wollert East. It opened in 2023, helping the growing local population get great education close to home. The school is open to Year 7 students only in its first year, and will progress by year level thereafter. Melissa Lozanovski was appointed as the first principal of the school. The school was previously known by its interim name, Wollert East Secondary School, during the planning phase. We consulted with the community on school's name from 20 June 2022 and 8 July 2022. The school is named after the suburb it is located in. Supported inclusion school This school is a supported inclusion school, which is a mainstream school with additional professional capabilities and facilities to cater for a higher than usual proportion of students with disability. Students with disability will receive enhanced support and high-quality education alongside mainstream students to the greatest extent possible in a safe, accessible and supportive environment. Facilities The first stage of the school included: an administration building with a library, staff offices and amenities a learning neighbourhood building with general purpose classrooms, and flexible and collaborative teaching spaces a science building a performing arts and food technology building a community hub with a competition-grade gymnasium 4 outdoor hardcourts a bike shed. Funding for a second stage of the school depends on future state budgets, but plans include: another learning neighbourhood an art and technology building. We planned construction so the school could open with everything it needs, including different types of teaching spaces. The second stage caters for future school growth." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This includes funding for this school.In the 2021\u201322 State Budget, this school shared in the $491.565 million for new schools construction." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Wollert Secondary College." + ], + "field_latitude": ["-37.608933"], + "field_latitude_longitude_value": ["-37.608933,145.026765"], + "field_latitude_value": ["-37.608933"], + "field_longitude": ["145.026765"], + "field_longitude_value": ["145.026765"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/Wollert_FeatureImage_1.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Inside Wollert Secondary College"], + "field_postcode": ["3750"], + "field_project_code": ["01-8896"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["222 Highpark Dr"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20965], + "status": [true], + "title": ["Wollert Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["877b5f54-5667-401a-b11c-0365b73d47dc"] + }, + "sort": ["Wollert Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20220:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wonthaggi-north-primary-school"], + "changed": ["2023-07-20T14:46:28+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refurbished\u00a0classrooms to create a large flexible learning space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $483,125." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wonthaggi North Primary School." + ], + "field_latitude": ["-38.5997909000167"], + "field_latitude_longitude_value": [ + "-38.5997909000167,145.600259600363" + ], + "field_latitude_value": ["-38.5997909000167"], + "field_longitude": ["145.600259600363"], + "field_longitude_value": ["145.600259600363"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten we're building at Wonthaggi North Primary School." + ], + "field_postcode": ["3995"], + "field_project_code": ["01-3716"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Cnr White & Wentworth Rd"], + "field_suburb": ["Wonthaggi"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20220], + "status": [true], + "title": ["Wonthaggi North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d0eeec1d-35fe-4f65-b02f-62d228ba6e4a"] + }, + "sort": ["Wonthaggi North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/33836:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wonthaggi-north-primary-school-kindergarten-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-17T15:55:09+10:00"], + "field_about_project_processed": [ + "We are building a modular kindergarten at Wonthaggi North Primary School.\u00a0It will provide additional kindergarten places for the local community. This will help some families before and after school with drop-off and pick-up. It will also help some children make a smoother transition into primary school.EnrolmentAn approved provider will be appointed and announced in late 2024. All enrolment and program enquiries will be managed by the provider.Subscribe to our mailing list to be notified when the provider has been announced." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget, this project shared in $1.3 billion allocated to build around 100 new kindergartens to support Best Start, Best Life." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about the build of Wonthaggi North Primary School Kindergarten (interim name)" + ], + "field_latitude": ["-38.59882"], + "field_latitude_longitude_value": ["-38.59882,145.600234"], + "field_latitude_value": ["-38.59882"], + "field_longitude": ["145.600234"], + "field_longitude_value": ["145.600234"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Find out more"], + "field_postcode": ["3995"], + "field_project_code": ["15-WNPSK"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2025"], + "field_start_date": ["Q3 2023"], + "field_status_name": ["Design"], + "field_street_address": ["Cnr White & Wentworth Road"], + "field_suburb": ["Wonthaggi"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [33836], + "status": [true], + "title": [ + "Wonthaggi North Primary School Kindergarten (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["435e44e1-f1af-43fe-a816-a8c24e2fd4a4"] + }, + "sort": ["Wonthaggi North Primary School Kindergarten (interim name)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20210:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wonthaggi-primary-school"], + "changed": ["2023-08-09T16:10:48+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will be upgrading several learning spaces to give students better learning opportunities.", + "We upgraded playgrounds to provide inclusive sensory play spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $6.7 million", + "In the 2020 Minor Capital Works Fund, the school was allocated $395,665." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Wonthaggi Primary School." + ], + "field_latitude": ["-38.6080683"], + "field_latitude_longitude_value": ["-38.6080683,145.5886005"], + "field_latitude_value": ["-38.6080683"], + "field_longitude": ["145.5886005"], + "field_longitude_value": ["145.5886005"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the kindergarten next to Wonthaggi Primary School." + ], + "field_postcode": ["3995"], + "field_project_code": ["D1-01-3650", "01-3650"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q2 2026", "Q4 2022"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Design", "Complete"], + "field_street_address": ["18 Billson St"], + "field_suburb": ["Wonthaggi"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20210], + "status": [true], + "title": ["Wonthaggi Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["22c213a4-7f5c-4fd2-87ad-f2dd879e70ee"] + }, + "sort": ["Wonthaggi Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21215:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wonthaggi-white-road-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Wonthaggi White Road Kindergarten have\u00a0upgraded their existing playground to become inclusive for all children and to accommodate the increase in enrolments." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $270,242 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wonthaggi White Road Kindergarten" + ], + "field_latitude": ["-38.59457"], + "field_latitude_longitude_value": ["-38.59457,145.59352"], + "field_latitude_value": ["-38.59457"], + "field_longitude": ["145.59352"], + "field_longitude_value": ["145.59352"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3995"], + "field_project_code": ["15-1429"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["136 White Road"], + "field_suburb": ["Wonthaggi"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21215], + "status": [true], + "title": ["Wonthaggi White Road Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bbc5ca0f-471e-447d-b118-0a03a97e524d"] + }, + "sort": ["Wonthaggi White Road Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21350:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woodend-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Woodend Kindergarten have developed their outdoor play space to create a natural environment that supports and promotes inclusion for all children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $152,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Woodend Kindergarten" + ], + "field_latitude": ["-37.35603"], + "field_latitude_longitude_value": ["-37.35603,144.53052"], + "field_latitude_value": ["-37.35603"], + "field_longitude": ["144.53052"], + "field_longitude_value": ["144.53052"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3442"], + "field_project_code": ["15-941"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["10 Nicholoson Street"], + "field_suburb": ["Woodend"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21350], + "status": [true], + "title": ["Woodend Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b4e94aed-ff3a-4144-9eac-967f0ae80479"] + }, + "sort": ["Woodend Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20725:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woodend-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's music and gym facilities and improved the school grounds. We transformed the school\u2019s multi-purpose hall into a gym with extra storage space. We built a brand new music facility with practice and meeting rooms. We also landscaped the school grounds. Students can now enjoy an amphitheatre space, refurbished hardcourts, new stairs, decks and ramps." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $2 million was allocated to the school. An additional $197,000 funding for maintenance was allocated in 2016." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Woodend Primary School." + ], + "field_latitude": ["-37.35346"], + "field_latitude_longitude_value": ["-37.35346,144.5326399"], + "field_latitude_value": ["-37.35346"], + "field_longitude": ["144.5326399"], + "field_longitude_value": ["144.5326399"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3442"], + "field_project_code": ["01-647"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2019"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["146 High St"], + "field_suburb": ["Woodend"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20725], + "status": [true], + "title": ["Woodend Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d875f777-5ecd-426a-beb1-2897317f6907"] + }, + "sort": ["Woodend Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20726:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woodford-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped the school upgrade the playground, install new equipment and complete landscaping works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund the school was allocated $69,120" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Woodford Primary School" + ], + "field_latitude": ["-38.3170179"], + "field_latitude_longitude_value": ["-38.3170179,142.4846451"], + "field_latitude_value": ["-38.3170179"], + "field_longitude": ["142.4846451"], + "field_longitude_value": ["142.4846451"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3281"], + "field_project_code": ["01-648"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["8 Victoria Street"], + "field_suburb": ["Woodford"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20726], + "status": [true], + "title": ["Woodford Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ba5b5aba-8a01-4b97-b7b1-9325a3a186bd"] + }, + "sort": ["Woodford Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21417:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woodlands-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bSt Thomas More Primary School\u00a0has built\u00a0the new\u00a0Woodlands Early Learning Centre. It created\u00a0two kindergarten rooms to provide 3 and 4 year old kindergarten programs, and includes office and play spaces." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "Through the 2015\u201316 Children's Facilities Capital Program $650,000 was allocated to the early learning facility." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Woodlands Early Learning Centre" + ], + "field_latitude": ["-38.19704"], + "field_latitude_longitude_value": ["-38.19704,145.1013199"], + "field_latitude_value": ["-38.19704"], + "field_longitude": ["145.1013199"], + "field_longitude_value": ["145.1013199"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3938"], + "field_project_code": ["ELC-30"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["313 Canadian Bay Road"], + "field_suburb": ["Mt Eliza"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21417], + "status": [true], + "title": ["Woodlands Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["212bc0de-ed16-4441-8542-62eec8636553"] + }, + "sort": ["Woodlands Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20879:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woodmans-hill-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We will continue to support senior students by extending the VCE centre. We will also create a dedicated space for Year 7s and refurbish the integrated learning building.", + "We upgraded the school gymnasium. We replaced the court flooring and installed ceiling fans.", + "We upgraded and modernised Woodmans Hill Secondary College. We refurbished: general purpose classrooms, administration, arts/crafts space, library space science space, and the VCE Centre and the Manual Arts Wing. Before January 2019, the school was part of Ballarat Secondary College." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023\u201324 State Budget the school received $8.59 million", + "In the 2020 Minor Capital Works Fund, the school was allocated $272,125.", + "In the 2017\u201318 State Budget, $3.01 million was allocated to the school. This followed $3 million from the 2015\u201316 State Budget." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Woodmans Hill Secondary College." + ], + "field_latitude": ["-37.5595305", "-38.171280"], + "field_latitude_longitude_value": ["-37.5595305,143.8921036"], + "field_latitude_value": ["-37.5595305"], + "field_longitude": ["143.8921036", "144.714584"], + "field_longitude_value": ["143.8921036"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["D2-01-8491", "D1-01-8491", "01-8491"], + "field_project_title": [ + "Upgrade and Modernisation - VCE Centre, Year 7 Space, Integrated Learning Building", + "Minor Capital Works Fund", + "Upgrade and Modernisation" + ], + "field_q_complete": ["Q2 2026", "Q4 2022", "Q1 2020"], + "field_start_date": ["Q2 2023", "Q4 2020"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["1 Fussell St"], + "field_suburb": ["Ballarat East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20879], + "status": [true], + "title": ["Woodmans Hill Secondary College"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["48e2cb63-538a-48e0-9f99-0ada20728e07"] + }, + "sort": ["Woodmans Hill Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20462:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woodville-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are undertaking a significant upgrade of the school, including modernising Block A and Block B." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.656 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Woodville Primary School." + ], + "field_latitude": ["-37.868995666503906"], + "field_latitude_longitude_value": [ + "-37.868995666503906,144.70053100585937" + ], + "field_latitude_value": ["-37.868995666503906"], + "field_longitude": ["144.70053100585937"], + "field_longitude_value": ["144.70053100585937"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3029"], + "field_project_code": ["01-5049"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q3 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["33-57 Warringa Cr"], + "field_suburb": ["Hoppers Crossing"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20462], + "status": [true], + "title": ["Woodville Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["b080c4ad-317d-46d9-a0b8-abbea1d265a1"] + }, + "sort": ["Woodville Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20432:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wooranna-park-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded the school's sports fields and associated infrastructure.\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b\u200b \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $350,000 has been allocated to the school." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wooranna Park Primary School" + ], + "field_latitude": ["-37.95967"], + "field_latitude_longitude_value": ["-37.95967,145.21706"], + "field_latitude_value": ["-37.95967"], + "field_longitude": ["145.21706"], + "field_longitude_value": ["145.21706"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3175"], + "field_project_code": ["01-4989"], + "field_project_title": ["School Pride and Sports Fund"], + "field_q_complete": ["Q3 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["89-105 Carlton Road"], + "field_suburb": ["Dandenong"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20432], + "status": [true], + "title": ["Wooranna Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d83d69dc-afcc-463d-9f89-8e34a7744a06"] + }, + "sort": ["Wooranna Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/19972:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woori-yallock-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are undertaking a significant upgrade of the school, including modernising Block A." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $10.504 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Woori Yallock Primary School." + ], + "field_latitude": ["-37.780620574951172"], + "field_latitude_longitude_value": [ + "-37.780620574951172,145.53819274902344" + ], + "field_latitude_value": ["-37.780620574951172"], + "field_longitude": ["145.53819274902344"], + "field_longitude_value": ["145.53819274902344"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3139"], + "field_project_code": ["01-1259"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Construction"], + "field_street_address": ["1360 Healesville Rd"], + "field_suburb": ["Woori Yallock"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [19972], + "status": [true], + "title": ["Woori Yallock Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4a7f51b7-86c0-45b9-ac70-6b584d329438"] + }, + "sort": ["Woori Yallock Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36663:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/woorinen-district-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-01T10:57:41+11:00"], + "field_about_project_processed": [ + "We are refurbishing the school's toilets. This will make them more pleasant, and improve cleanliness and hygiene. Our Minor Capital Works Fund is supporting this work. It provides grants for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023-24 State Budget the project received $47,384 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Woorinen District Primary School" + ], + "field_latitude": ["-35.29040896"], + "field_latitude_longitude_value": ["-35.29040896,143.4537404"], + "field_latitude_value": ["-35.29040896"], + "field_longitude": ["143.4537404"], + "field_longitude_value": ["143.4537404"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3588"], + "field_project_code": ["01-5439"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2025"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["49 Palmer Street"], + "field_suburb": ["Woorinen South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36663], + "status": [true], + "title": ["Woorinen District Primary School"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["e0735272-e471-4c52-be6d-4c8c8a9df7b3"] + }, + "sort": ["Woorinen District Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21418:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wunggurrwil-dhurrung-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped Wyndham City Council integrate\u00a0a family centre (with kindergarten)\u00a0with a community centre. The\u00a0Wunggurrwil Dhurrung Centre includes an Aboriginal community centre and community meeting spaces. The centre\u00a0offers three flexible early years rooms. There are 3 consulting rooms for maternal and child health, and other family-focused services. The integration enables cultural exchange for children, families and staff. It provides learning opportunities through Aboriginal culture.\u200b The centre is located next to Riverbend\u00a0Primary School.\u00a0It gives\u00a0the Wyndham Vale\u00a0community\u00a0access to\u00a0high-quality learning environments and family health services from birth through to the end of primary school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015\u201316 Children's Facilities Capital Program $1.6 million was allocated to the project." + ], + "field_funding_type_name": ["Integrated Children's Centre"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wunggurrwil Dhurrung Centre" + ], + "field_latitude": ["-37.876954"], + "field_latitude_longitude_value": ["-37.876954,144.627399"], + "field_latitude_value": ["-37.876954"], + "field_longitude": ["144.627399"], + "field_longitude_value": ["144.627399"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["ELC-31"], + "field_project_title": ["Integrated Children's Centre"], + "field_q_complete": ["Q3 2019"], + "field_status_name": ["Complete"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21418], + "status": [true], + "title": ["Wunggurrwil Dhurrung Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a1b7cbb6-5986-4bb1-9b06-0f4273450f27"] + }, + "sort": ["Wunggurrwil Dhurrung Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21459:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wurruk-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported\u00a0Wurruk Primary School to\u00a0build\u00a0a new kindergarten. This gives\u00a0the\u00a0Wurruk community\u00a0access to high quality learning environments from their first leap into education, right through to the end of primary school." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $934,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wurruk Kindergarten" + ], + "field_latitude": ["-38.10644"], + "field_latitude_longitude_value": ["-38.10644,147.03957"], + "field_latitude_value": ["-38.10644"], + "field_longitude": ["147.03957"], + "field_longitude_value": ["147.03957"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["ELC-WKK"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["13-19 Fisk Street"], + "field_suburb": ["Wurruk"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21459], + "status": [true], + "title": ["Wurruk Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["8da9876c-e577-4e3d-b3a0-2e98b5d7dc3e"] + }, + "sort": ["Wurruk Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25392:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wurruk-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the school toilet block to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget the project received $472,819 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wurruk Primary School" + ], + "field_latitude": ["-38.106803"], + "field_latitude_longitude_value": ["-38.106803,147.039947"], + "field_latitude_value": ["-38.106803"], + "field_longitude": ["147.039947"], + "field_longitude_value": ["147.039947"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3850"], + "field_project_code": ["01-2518"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["13\u201319 Fisk Street"], + "field_suburb": ["Wurruk"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25392], + "status": [true], + "title": ["Wurruk Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["f3a19320-baf6-4c12-b3bc-8e9a33d47918"] + }, + "sort": ["Wurruk Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21479:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wurun-senior-campus"], + "changed": ["2023-09-28T16:50:41+10:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new senior secondary campus for Collingwood College and Fitzroy High School in Fitzroy North at the historic Fitzroy Gasworks site. It opened in 2022 and helps the growing local population get great education close to home. Collingwood College and Fitzroy High School have had a senior secondary program partnership, for over 10 years. It gives students a choice of VCE, VCAL and VET certificate courses along with a range of innovative senior programs. Chris Millard was appointed as first Campus Principal for the senior\u00a0campus. Campus name Wurun Senior Campus was announced as the name of the new senior secondary campus. Wurun Senior Campus is located on the traditional land of the Wurundjeri Woi wurrung people, on Queens Parade Fitzroy North, the historic Fitzroy Gasworks site. The Department of Education consulted with the Wurundjeri Woi Wurrung Cultural Heritage Aboriginal Corporation along with representatives from Collingwood College and Fitzroy High School on the campus name. Use of the name 'Wurun' for the campus has been approved by the Wurundjeri Woi Wurrung Cultural Heritage Aboriginal Corporation. Wurun (pronunced wuh-RUN) is a Woi wurrung word of the Wurundjeri people meaning river white gum. Our senior campus will also feature an embedded Indigenous narrative developed in collaboration with the Wurundjeri Woi Wurrung Cultural Heritage Aboriginal Corporation. Examples of these interpretative elements include native planting with Woi wurrung language naming at the courtyard entry; a 25-metre concourse mural depicting a linear narrative of the Wurundjeri Woi wurrung people's history and culture and the wayfinding colour palette informed by the manna gum. Facilities Below are the facilities on each level. Level 6 Rooftop sports court Solar panels Roof terrace Level 5 Science precinct Science laboratory spaces Science terrace Level 4 Arts and design precinct 2D, 3D and textiles studios Exhibition space Photography dark room Media and design space Art terrace Level 3 Wellbeing and careers services hub Information technologies services Gymnasium 2 Resource centre Learning studios Breakout spaces Terrace Level 2 Food precinct Student dining Seminar space Learning studios Breakout spaces Level 1 Technology precinct Learning studios Breakout spaces Exhibition space Terrace Conference Rooms Ground Main entry Reception/staff hub Concourse Bike hub Amphitheatre Performing arts precinct Gymnasium 1 Design consultation Community engagement snapshot We want students in the Collingwood and Fitzroy areas to be part of a rich, vibrant and supportive community. Schools are more than buildings \u2013 they are the hearts of neighbourhoods. We asked the community for suggestions to help design the campus and decide what facilities it would offer. Engagement that helped shape the campus design In September 2018, the VSBA and Development Victoria consulted the community to hear its views on the Fitzroy Gasworks Precinct design. This included plans for the new senior campus for Collingwood College and Fitzroy High School. We also held workshops with the 2 schools to hear what they liked about their existing schools and what could be improved. We wanted to understand the benefits and challenges of having separate junior and senior campuses. We also wanted to know what learning and teaching facilities, programs and spaces the community would like to have in the new campus. Our goal was to understand what makes the local community unique and how the campus could connect to the existing schools and community. Consultation included: student and teacher workshops held at Collingwood College and Fitzroy High School input from over 80 stakeholders and community members at other workshops online surveys attracting 247 responses analysing more than 1050 comments. What the community wanted for the new senior campus Top four takeaways: A diverse curriculum and specialist facilities Teach students to be critical thinkers and develop their leadership and career skills Ensure the design reflects and supports the community, including shared community spaces Create spaces that are sustainable, well-designed and functional Our design team considered this feedback as we planned the new campus." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $17.2 million was allocated to schools across the state for planning. This includes funding for this school. In the 2019\u201320 State Budget, the school shared in $624.8 million allocated for new schools." + ], + "field_funding_type_name": ["New School Campus"], + "field_landing_page_summary": [ + "Learn more about the build of Wurun Senior Campus." + ], + "field_latitude": ["-37.792062"], + "field_latitude_longitude_value": ["-37.792062,144.983548"], + "field_latitude_value": ["-37.792062"], + "field_longitude": ["144.983548"], + "field_longitude_value": ["144.983548"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2022-10/WurunSC-221021-feature-tile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3068"], + "field_project_code": ["LA-FG"], + "field_project_title": ["New School Campus"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["111 Queens Pde"], + "field_suburb": ["Fitzroy North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21479], + "status": [true], + "title": ["Wurun Senior Campus"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["1674d5b0-a41e-4bb4-9603-fa16c009b46f"] + }, + "sort": ["Wurun Senior Campus"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21217:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wycheproof-early-learning-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a modular kindergarten on a new site to replace the Wycheproof Kindergarten and Wycheproof Child Care Centre. This joint project in partnership with Buloke Shire Council provides a 22-place kindergarten room, a 12-place long-day-care room, a\u00a0maternal child health centre,\u00a0a nature-based outdoor learning area and onsite car parking." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2019\u201320 Children\u2019s Facilities Capital Program, $700,000 was allocated to this project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wycheproof Early Learning Centre" + ], + "field_latitude": ["-36.077315"], + "field_latitude_longitude_value": ["-36.077315,143.227234"], + "field_latitude_value": ["-36.077315"], + "field_longitude": ["143.227234"], + "field_longitude_value": ["143.227234"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3527"], + "field_project_code": ["15-1437"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2021"], + "field_start_date": ["Q2 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["36 High St"], + "field_suburb": ["Wycheproof"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21217], + "status": [true], + "title": ["Wycheproof Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a216dfbd-24d4-4580-a106-52c28baa46a1"] + }, + "sort": ["Wycheproof Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22640:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wydinia-kindergarten-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We renovated the kindergarten bathroom to help with the roll-out of funded kindergarten for three-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $100,900 was allocated to this project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Wydinia Kindergarten & Early Learning Centre." + ], + "field_latitude": ["-38.34536732"], + "field_latitude_longitude_value": ["-38.34536732,143.5764437"], + "field_latitude_value": ["-38.34536732"], + "field_longitude": ["143.5764437"], + "field_longitude_value": ["143.5764437"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3250"], + "field_project_code": ["15-321"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q3 2022"], + "field_start_date": ["Q3 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["19 Dunoon St"], + "field_suburb": ["Colac"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22640], + "status": [true], + "title": ["Wydinia Kindergarten & Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1b127af1-bb85-48df-a3fd-84abefa8e812"] + }, + "sort": ["Wydinia Kindergarten & Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20653:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wyndham-park-primary-school"], + "changed": ["2023-12-05T11:36:41+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered new playground equipment, including a modular play system that caters for the older students." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $262,165" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wyndham Park Primary School" + ], + "field_latitude": ["-37.8904268500147"], + "field_latitude_longitude_value": [ + "-37.8904268500147,144.67417400024" + ], + "field_latitude_value": ["-37.8904268500147"], + "field_longitude": ["144.67417400024"], + "field_longitude_value": ["144.67417400024"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": [ + "Find out more about the early learning and childcare centre we are building at Wyndham Park Primary School." + ], + "field_postcode": ["3030"], + "field_project_code": ["01-5540"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q4 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["Kookaburra Avenue"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20653], + "status": [true], + "title": ["Wyndham Park Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["82a06f34-a60e-4b8e-8170-1d8f780dd50c"] + }, + "sort": ["Wyndham Park Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/36739:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/wyndham-park-primary-school-early-learning-and-childcare-centre-interim-name" + ], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-12-05T09:59:46+11:00"], + "field_about_project_processed": [ + "We\u2019re building an early learning and childcare centre at Wyndham Park Primary School in Werribee.The Victorian Government-owned centre will provide long day care and Three- and Four-Year-Old Kindergarten programs.The centre may also include other spaces for community use.From 2030\u20132032, Four-Year-Old Kindergarten will transition to Pre-Prep. Free kindergarten hours will double from 15 to 30 hours a week for 4-year-olds and triple from 5 to 15 hours for 3-year-olds.Building the centre at the school will help some parents avoid the double drop-off. It makes childcare and early learning accessible and convenient for working parents and carers. It can also make the transition to school easier for some children.Subscribe to our mailing list for updates." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This centre is one of 50 early learning centres that will share in approximately $14 billion as part of the Victorian Government\u2019s Best Start, Best Life reform." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about the build of Wyndham Park Primary School Early Learning and Childcare Centre (interim name)" + ], + "field_latitude": ["-37.884867"], + "field_latitude_longitude_value": ["-37.884867,144.67655"], + "field_latitude_value": ["-37.884867"], + "field_longitude": ["144.67655"], + "field_longitude_value": ["144.67655"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["15-WPPS-ELCC"], + "field_project_title": [ + "New Early Learning Centre \u2013 one of 50 government-owned early learning centres" + ], + "field_q_complete": ["Q1 2026"], + "field_start_date": ["Q4 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["59\u201377 Kookaburra Avenue"], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [36739], + "status": [true], + "title": [ + "Wyndham Park Primary School Early Learning and Childcare Centre (interim name)" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["813a01e8-09d4-4ae9-9370-3ed6bbee8fc6"] + }, + "sort": [ + "Wyndham Park Primary School Early Learning and Childcare Centre (interim name)" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21494:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wyndham-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Secondary school students from the Wyndham area\u00a0have access to cutting edge learning at Wyndham Tech School. \u200bVictoria University is\u00a0hosting the Wyndham Tech School at its Werribee Campus. The Tech School is\u00a0housed in a newly constructed, innovative building. The Tech School is a high-tech learning environment. Its innovative education programs will link with local industry to deliver real world learning. Students from 18 partner schools in Wyndham will access this Tech School throughout the year for specialised programs. Wyndham Tech School\u00a0emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future.\u00a0 The Wyndham Tech School has an education focus aligned to industries that are predicted to experience strong economic and employment growth: Health Transport and logistics Scientific and technical professional services Construction. After completion in June 2018, the school was a winner at the\u00a0Victorian School Design Awards later that year, taking the\u00a0Best Secondary School Project category.\u00a0 \u200b \u200b \u200b \u200b Enrolment And Partners Secondary students from 18\u200b\u00a0partner schools\u00a0have access to high-tech learning at the cutting edge Wyndham Tech School.\u00a0 Sch\u200bool Partners Alamanda K-9\u00a0College Baden\u00a0Powell P-9 College Carranballac P-9 College Good News Lutheran College Heathdale Christian College Hoppers Crossing Secondary College Islamic College of Melbourne MacKillop Catholic Regional College Manor Lakes P-12 College Point Cook Prep - Ye\u200bar 9 College Point Cook Senior Secondary College Suzanne Cory High School Tarneit P-9 College Tarneit Senior College The Grange P-12 College Thomas Carr College Warringa Park School\u00a0 Werribee Secondary College Wyndham Central Secondary College\u200b\u200b Wyndham Community\u00a0and Education Centre Inc\u200b \u00a0 Other Partners Konica Minolta LEADWest SpecialistApps \u200bVictoria Polytechnic WynBay LLEN Wyndham City Council" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Wyndham Tech School" + ], + "field_latitude": ["-37.9228036"], + "field_latitude_longitude_value": ["-37.9228036,144.7021617"], + "field_latitude_value": ["-37.9228036"], + "field_longitude": ["144.7021617"], + "field_longitude_value": ["144.7021617"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3030"], + "field_project_code": ["TS-Wy"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Mid 2018"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Victoria University, Werribee Campus, Hoppers Ln" + ], + "field_suburb": ["Werribee"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21494], + "status": [true], + "title": ["Wyndham Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ddef2e29-97a8-4981-94ed-57159cf30c17"] + }, + "sort": ["Wyndham Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22357:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wyndham-vale-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-01-14T14:24:11+11:00"], + "field_about_project_processed": [ + "We are refurbishing the natural turf oval." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $196,546" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Wyndham Vale Primary School" + ], + "field_latitude": ["-37.895558"], + "field_latitude_longitude_value": ["-37.895558,144.609606"], + "field_latitude_value": ["-37.895558"], + "field_longitude": ["144.609606"], + "field_longitude_value": ["144.609606"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3024"], + "field_project_code": ["01-5549"], + "field_project_title": ["Minor Capital Works Fund - Round 2"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Construction"], + "field_street_address": ["85 Ribblesdale Ave"], + "field_suburb": ["Wyndham Vale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22357], + "status": [true], + "title": ["Wyndham Vale Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["30f07ae4-e58b-4305-9763-f57f710039b4"] + }, + "sort": ["Wyndham Vale Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28645:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/ymca-learn-and-swim"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-08T12:01:13+11:00"], + "field_about_project_processed": [ + "We built an outdoor play space for this centre that combines kindergarten with swimming lessons.\u00a0The play area includes sand pits, play equipment, water play, and nature-based play areas. It gives children a chance to challenge themselves physically in ways appropriate for their age." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 Building Blocks Improvement Grants $360,000.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about the improvements at YMCA Learn and Swim." + ], + "field_latitude": ["-37.55502017"], + "field_latitude_longitude_value": ["-37.55502017,143.8978568"], + "field_latitude_value": ["-37.55502017"], + "field_longitude": ["143.8978568"], + "field_longitude_value": ["143.8978568"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3350"], + "field_project_code": ["elc-ymcals"], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade" + ], + "field_q_complete": ["Q3 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Complete"], + "field_street_address": ["40 Water St"], + "field_suburb": ["Brown Hill"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28645], + "status": [true], + "title": ["YMCA Learn and Swim"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["38fa5617-f2a4-4d2d-aabc-e5bc16a3e639"] + }, + "sort": ["YMCA Learn and Swim"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20244:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yallourn-north-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to replace the administration area, general office, staff toilets, sick bay, art room, classrooms and library.\u00a0 \u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2017-18 State Budget, $1,923,000 was allocated to the school." + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yallourn North Primary School" + ], + "field_latitude": ["-38.1609399"], + "field_latitude_longitude_value": ["-38.1609399,146.36264"], + "field_latitude_value": ["-38.1609399"], + "field_longitude": ["146.36264"], + "field_longitude_value": ["146.36264"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3825"], + "field_project_code": ["01-3967"], + "field_project_title": ["Permanent Modular School Buildings Program"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["2A Reserve Street"], + "field_suburb": ["Yallourn North"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20244], + "status": [true], + "title": ["Yallourn North Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["83565b13-c8b6-4d5a-8fbf-b454c3236eae"] + }, + "sort": ["Yallourn North Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21269:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yandell-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Yandell Kindergarten have refurbished their existing kitchen facilities to become more accessible, improving participation and self-care skills. Upgraded\u00a0bathroom facilities include an extra accessible toilet and new handwashing facilities. Asbestos was also\u00a0removed as part of the works." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2018\u20132019 Children's Facilities Capital Program Major Grants, $102,617 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facilities Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yandell Kindergarten" + ], + "field_latitude": ["-37.69836"], + "field_latitude_longitude_value": ["-37.69836,145.11301"], + "field_latitude_value": ["-37.69836"], + "field_longitude": ["145.11301"], + "field_longitude_value": ["145.11301"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3088"], + "field_project_code": ["15-425"], + "field_project_title": ["Early Learning Facilities Upgrade"], + "field_q_complete": ["Q1 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["37 St Helena Road"], + "field_suburb": ["Greensborough"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21269], + "status": [true], + "title": ["Yandell Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["435832f4-d93a-4f50-bb5c-0191d9afe6ac"] + }, + "sort": ["Yandell Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24605:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yappera-childrens-service-co-operative"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping Yappera Children's Service Co-operative plan a number of kindergarten building projects to create more kindergarten places for local 3 and 4-year-olds. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the planning of Yappera Children's Service Co-operative" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-YCSC"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24605], + "status": [true], + "title": ["Yappera Children's Service Co-operative"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["fdeb2d66-a159-40ff-bed3-ebd06949acdd"] + }, + "sort": ["Yappera Children's Service Co-operative"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21351:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yappera-childrens-service-cooperative-ltd"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped upgrade Yappera Children's Service, including: fencing, roofing, veranda, and shelter. This improved the condition of the building and enhanced the quality of the learning environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 20\u201321 Building Blocks Improvement Grant $212,595 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yappera Children's Service Cooperative LTD" + ], + "field_latitude": ["-37.758449554443359"], + "field_latitude_longitude_value": [ + "-37.758449554443359,145.00572204589844" + ], + "field_latitude_value": ["-37.758449554443359"], + "field_longitude": ["145.00572204589844"], + "field_longitude_value": ["145.00572204589844"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3071"], + "field_project_code": ["15-958"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["2B Watt St"], + "field_suburb": ["Thornbury"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21351], + "status": [true], + "title": ["Yappera Children's Service Cooperative LTD"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["6c86d29d-6c2b-419a-9d58-5b613e1ac98a"] + }, + "sort": ["Yappera Children's Service Cooperative LTD"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24602:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/yarra-city-council-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We\u2019re helping Yarra City Council plan the redevelopment of North Carlton Children's Centre. They\u2019ll explore expanding the service to offer 66 funded kindergarten places and adding spaces for family and community services. They are also considering plans to increase kindergarten places at Yarralea Children's Centre. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $103,080 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Yarra City Council Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-YCCKI"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24602], + "status": [true], + "title": [ + "Yarra City Council Kindergarten Infrastructure Planning Project" + ], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["584f6e61-4d15-4395-b62c-9a0db870fd28"] + }, + "sort": [ + "Yarra City Council Kindergarten Infrastructure Planning Project" + ] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21321:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-glen-preschool"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped transform the outdoor play space at the\u00a0preschool. The project will maximise learning and growth opportunities for all children, families and local partnerships within the community. The upgrade is designed to fit seamlessly within the natural landscape and incorporate links to Indigenous culture and heritage. We helped deliver features that are specific to early childhood learning requirements, accessible for all abilities and with a focus on environmental sustainability." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 Building Blocks Improvement Grant $299,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yarra Glen Preschool." + ], + "field_latitude": ["-37.657939910888672"], + "field_latitude_longitude_value": [ + "-37.657939910888672,145.37416076660156" + ], + "field_latitude_value": ["-37.657939910888672"], + "field_longitude": ["145.37416076660156"], + "field_longitude_value": ["145.37416076660156"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3775"], + "field_project_code": ["15-633"], + "field_project_title": [ + "Building Blocks Improvement Grant - Upgrade" + ], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["12 Anzac Av"], + "field_suburb": ["Yarra Glen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21321], + "status": [true], + "title": ["Yarra Glen Preschool"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["fd6d0c73-48a6-40cf-8ad3-242248ad025c"] + }, + "sort": ["Yarra Glen Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20981:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-glen-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We delivered a new architect-designed modular building to the\u00a0school to replace Block B.\u00a0 \u00a0", + "We built\u00a0an inclusive and accessible natural play space for outdoor play and learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 3 of the program, the school was allocated $1,621,000.", + "In 2019, $200,000 was allocated to the school in Round 5 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarra Glen Primary School." + ], + "field_latitude": ["-37.64937", "-37.64937"], + "field_latitude_longitude_value": ["-37.64937,145.37303"], + "field_latitude_value": ["-37.64937"], + "field_longitude": ["145.37303", "145.37303"], + "field_longitude_value": ["145.37303"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3775"], + "field_project_code": ["01-956", "D1-01-956"], + "field_project_title": [ + "Permanent Modular School Buildings Program", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q2 2019", "Q3 2021"], + "field_start_date": ["Q2 2018", "Q4 2019"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["35 Symonds St"], + "field_suburb": ["Yarra Glen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20981], + "status": [true], + "title": ["Yarra Glen Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["34b78669-b089-4d66-949a-871e03e97aec"] + }, + "sort": ["Yarra Glen Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20174:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-junction-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new senior block, expanding the administration facilities, refurbishing the music block and landscaping the grounds at Yarra Junction Primary School.", + "We helped the school to redevelop the existing outdoor netball court to improve safety and ease of use." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2015\u201316 State Budget, $2 million was allocated to the school.", + "In the 2020 Minor Capital Works Fund the school was allocated $63,120." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarra Junction Primary School" + ], + "field_latitude": ["-37.7787999", "-37.7782349"], + "field_latitude_longitude_value": ["-37.7787999,145.60532"], + "field_latitude_value": ["-37.7787999"], + "field_longitude": ["145.60532", "145.6055406"], + "field_longitude_value": ["145.60532"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3797"], + "field_project_code": ["01-3216", "D1-01-3216"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund" + ], + "field_q_complete": ["Q1 2018", "Q3 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["2370 Warburton Hwy"], + "field_suburb": ["Yarra Junction"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20174], + "status": [true], + "title": ["Yarra Junction Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a6f60caa-5082-4558-829b-93ec033d8d05"] + }, + "sort": ["Yarra Junction Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20201:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-me-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200b\u200bOur upgrade of the school (previously Baltara School) is now complete.\u00a0 The school has consolidated its 2 campuses at Thomastown and East Preston and is now located at the former Preston East Primary School.\u00a0 Our work included adding 2 relocatables, a newly refurbished administration area and new landscaping around the campus.\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $415,000 was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarra Me School." + ], + "field_latitude": ["-37.73906"], + "field_latitude_longitude_value": ["-37.73906,145.0192"], + "field_latitude_value": ["-37.73906"], + "field_longitude": ["145.0192"], + "field_longitude_value": ["145.0192"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3072"], + "field_project_code": ["01-3552"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2018"], + "field_start_date": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Highview Rd"], + "field_suburb": ["Preston"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20201], + "status": [true], + "title": ["Yarra Me School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["aae35ecf-09e2-4577-b46e-0d6e35ef13f7"] + }, + "sort": ["Yarra Me School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22620:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-park-childrens-centre-and-kindergarten"], + "changed": ["2023-12-06T11:59:18+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We renovated the kindergarten yard to create an open-plan play space. It is a fun place for children to develop both mentally and physically.\u00a0It is also more accessible for those with additional needs. Now, more children can play at the same time with safety and ease, including in the sandpit.", + "We upgraded the kindergarten\u2019s bathroom and installed a nappy change bench. This upgrade has given children a supportive space in which to change. Children with additional needs are also able to use the upgraded facilities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $181,802.64 was allocated to the project.", + "In the 2022-23 Building Blocks Improvement Grants $70,000 was allocated to the project." + ], + "field_funding_type_name": [ + "Building Blocks Inclusion Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yarra Park Childrens Centre and Kindergarten." + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3002"], + "field_project_code": ["d1-15-838", "D2-15-838"], + "field_project_title": [ + "Building Blocks Inclusion Grant", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q4 2023", "Q2 2023"], + "field_start_date": ["Q1 2023", "Q4 2022"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["27 Berry St"], + "field_suburb": ["East Melbourne"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22620], + "status": [true], + "title": ["Yarra Park Children's Centre and Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e54da2b7-76ee-496f-a6bc-881e7d971050"] + }, + "sort": ["Yarra Park Children's Centre and Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24998:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade classrooms in Blocks A and B." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $7.208 million." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarra Primary School" + ], + "field_latitude": ["-37.81501626370382"], + "field_latitude_longitude_value": [ + "-37.81501626370382,145.0070921769168" + ], + "field_latitude_value": ["-37.81501626370382"], + "field_longitude": ["145.0070921769168"], + "field_longitude_value": ["145.0070921769168"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3123"], + "field_project_code": ["01-5271"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q2 2025"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Design"], + "field_street_address": ["68-76 Davison Street"], + "field_suburb": ["Richmond"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24998], + "status": [true], + "title": ["Yarra Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["9559b0ff-e993-4e3e-9cc3-407be934e974"] + }, + "sort": ["Yarra Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20542:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-ranges-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are delivering the last stage of the school's master plan, which will include the construction of the senior years learning building and additional administration space.\u00a0 This school will benefit from Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million.", + "We are building\u00a0a middle school building and specialist learning spaces for Yarra Ranges Special Development School. The new facilities include classrooms, a library, TV production studio, digital media, food technology, fitness centre, performance and multiple-purpose room, art room and a variety of supporting amenities.", + "We built\u00a0a new junior learning building for Yarra Ranges Special Developmental School, and removed an old relocatable building in poor condition. The new junior learning building includes\u00a0four general purpose classrooms, a laundry, bathrooms, office space, a sick bay and outdoor areas.", + "We replaced\u00a0the\u00a0relocatable administration building with a\u00a0new administration building. The new building includes a\u00a0general office, homecrafts caf\u00e9, interview room, staff offices, staff lounge and facilties." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 State Budget, the school received $8.926 million.", + "In 2020, the school received $10 million to deliver the next stage of the masterplan.", + "In the 2019-20 State Budget, the school received $3.451 million.", + "In the 2017-18 State Budget, $500,000 was allocated to the school." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation", + "Upgrade and Modernisation" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarra Ranges Special Developmental School" + ], + "field_latitude": [ + "-37.7751527", + "-37.775700", + "-37.77538", + "-37.77538" + ], + "field_latitude_longitude_value": ["-37.7751527,145.3845375"], + "field_latitude_value": ["-37.7751527"], + "field_longitude": [ + "145.3845375", + "145.385025", + "145.38475", + "145.38475" + ], + "field_longitude_value": ["145.3845375"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3796"], + "field_project_code": [ + "D3-01-5246", + "D2-01-5246", + "D1-01-5246", + "01-5246" + ], + "field_project_title": [ + "Upgrade and Modernisation - Stage 4", + "Upgrade and Modernisation - Stage 3", + "Upgrade and Modernisation - Stage 2", + "Upgrade and Modernisation - Stage 1" + ], + "field_q_complete": ["Q4 2024", "Q4 2023", "Q1 2021", "Q4 2019"], + "field_start_date": ["Q4 2020", "Q2 2020", "Q2 2019"], + "field_status_name": [ + "Construction", + "Construction", + "Complete", + "Complete" + ], + "field_street_address": ["20 Burdap Drive"], + "field_suburb": ["Mount Evelyn"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20542], + "status": [true], + "title": ["Yarra Ranges Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["33d0ec0b-ec4a-4c04-bc0e-26416879cf0c"] + }, + "sort": ["Yarra Ranges Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21495:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-ranges-tech-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Secondary school students from the Yarra Ranges area now\u00a0have access to cutting edge learning at the Yarra Ranges Tech School\u200b, which is hosted by Box Hill Institute\u00a0at its Lilydale Lakeside Campus. The Yarra Ranges Tech School is a high-tech learning environment Its innovative education programs link with local industry to deliver real world learning. Students from 20 partner schools in Yarra Ranges can access the Tech School throughout the year for specialised programs.\u00a0 Yarra Ranges Tech School emphasises the vital science, technology, engineering and mathematics skills needed for the 21st century. It enhances the programs schools provide, and helps prepare students for the jobs of the future.\u00a0The Yarra Ranges Tech School\u00a0has an education focus aligned to industries that are predicted to experience strong economic and employment growth: Precision manufacturing Digital technologies including medical robotics Sustainability and renewables Food, fibre and biotechnology.\u200b \u200bEnrolment And Partners Secondary students from 20 partner schools have access to high-tech learning at the cutting-edge Yarra Ranges Tech School. School Partners Belgrave Heights Christian School\u200b Billanook College CIRE Services Incorporated Edinburgh College Healesville High School Lilydale Heights College Lilydale High School Mater Christi College Monbulk College Mooroolbark College Mount Evelyn Christian School/Ranges TEC Mount Lilydale Mercy College Mountain District Christian School Oxley Christian College Sherbrooke Community School Upper Yarra Secondary College Upwey High School Worawa Aboriginal College Yarra Hills Secondary College Yarra Ranges Special Developmental Schoo\u200bl Other Partners Deakin University Outer Eastern LLEN Yarra Ranges Council Exaptec\u200b\u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$128 million has been allocated to the Tech Schools initiative for the construction and establishment of 10 Tech Schools across the state, with further ongoing funding to support operation." + ], + "field_funding_type_name": ["Tech Schools"], + "field_landing_page_summary": [ + "Learn more about the build of Yarra Ranges Tech School" + ], + "field_latitude": ["-37.7569999694824"], + "field_latitude_longitude_value": [ + "-37.7569999694824,145.372116088867" + ], + "field_latitude_value": ["-37.7569999694824"], + "field_longitude": ["145.372116088867"], + "field_longitude_value": ["145.372116088867"], + "field_mappintype_name": ["Tech school"], + "field_mappintype_value": ["Tech school"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3140"], + "field_project_code": ["TS-YR"], + "field_project_title": ["Tech Schools"], + "field_q_complete": ["Q1 2017"], + "field_status_name": ["Complete"], + "field_street_address": [ + "Box Hill Institute, Lilydale Lakeside Campus, 1 Jarlo Dr" + ], + "field_suburb": ["Lilydale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21495], + "status": [true], + "title": ["Yarra Ranges Tech School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["ddb0ee3f-c2a9-4ac9-b999-c5a3728aee96"] + }, + "sort": ["Yarra Ranges Tech School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20275:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarra-road-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are upgrading the hard court, including covering one existing court area and repairing two hard court areas.", + "We developed a vastly improved, accessible, inclusive, safe and diverse play space that offers a broad range of educational and social opportunities, quality play types and activities for students.\u200b\u200b\u200b\u200b \u00a0 \u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the Minor Capital Works Fund, the project received $485,960.", + "In 2016, the school received $200,000 from Round 2 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarra Road Primary School" + ], + "field_latitude": ["-37.766401", "-37.7665999"], + "field_latitude_longitude_value": ["-37.766401,145.272227"], + "field_latitude_value": ["-37.766401"], + "field_longitude": ["145.272227", "145.27373"], + "field_longitude_value": ["145.272227"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3136"], + "field_project_code": ["D1-01-4219", "01-4219"], + "field_project_title": [ + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q4 2023", "Q3 2017"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["222-228 Yarra Rd"], + "field_suburb": ["Croydon"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20275], + "status": [true], + "title": ["Yarra Road Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a963a017-233e-40ee-98ae-5c2bd0c37feb"] + }, + "sort": ["Yarra Road Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20492:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarrabah-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We rebuilt\u00a0this school, including its early education facilities. We demolished old buildings that were\u00a0no longer fit for purpose, and replaced\u00a0relocatable buildings with permanent facilities for staff and students. The facilities delivered included: an early education building and courtyard a middle school building junior school buildings, sensory garden and play area an administration building specialist learning buildings a secondary 'neighbourhood' including the senior sensory garden\u00a0 a staff and professional learning centre a staff carpark landscaping. We also built\u00a0a hydrotherapy pool with the\u00a0$500,000 additional funding.\u00a0", + "We upgraded the existing turf oval and fitness area with a synthetic surface.", + "We are building an inclusive playground. It will give children of all abilities new ways to socialise, develop and learn through play." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, the school shared in $12 million of planning funding. In the 2017\u201318 State Budget, $20.5 million was allocated to the school. The Government has subsequently announced $500,000 in additional funding.", + "In Round 2 of the Minor Capital Works Fund, the project received $260,074", + "In Round 9 of the Inclusive Schools Fund, the project received $241,087" + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarrabah School" + ], + "field_latitude": ["-38.014011", "-38.013994", "-38.013994"], + "field_latitude_longitude_value": ["-38.014011,145.096573"], + "field_latitude_value": ["-38.014011"], + "field_longitude": ["145.096573", "145.096687", "145.096687"], + "field_longitude_value": ["145.096573"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3195"], + "field_project_code": ["01-5142", "D1-01-5142", "D2-01-5142"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund - Round 2", + "Inclusive Schools Fund - Round 9" + ], + "field_q_complete": ["Q1 2021", "Q2 2023", "Q4 2025"], + "field_start_date": ["Q4 2021", "Q4 2023"], + "field_status_name": ["Complete", "Complete", "Planning"], + "field_street_address": ["23 Mill Street"], + "field_suburb": ["Aspendale"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20492], + "status": [true], + "title": ["Yarrabah School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["d437cc09-54d3-404c-854a-42210a008b7b"] + }, + "sort": ["Yarrabah School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24963:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Yarrabing-Secondary-College"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new secondary school in Aintree. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home.It will be able to enrol up to 550 students when the first stage of the school is complete. In its first year of operation, the school will open to Year 7 students only, and progress by year level thereafter.Dharra School will be located next to the school.Subscribe to our mailing list for updates.Enrolments are openThe 2024 school zones are available at findmyschool.vic.gov.au\u00a0For enrolment queries,\u00a0please email yarrabing.sc@education.vic.gov.au or call the school on 04 2747 1682Learn more about the Year 6-7 placement process" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Yarrabing Secondary College" + ], + "field_latitude": ["-37.712742"], + "field_latitude_longitude_value": ["-37.712742,144.665926"], + "field_latitude_value": ["-37.712742"], + "field_longitude": ["144.665926"], + "field_longitude_value": ["144.665926"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/AintreeSS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Yarrabing Secondary\u00a0College was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Yarrabing\u00a0(pronounced\u00a0 yarra-bing ) is a\u00a0Woi-wurrung word of the Wurundjeri people\u00a0meaning white gum. We\u00a0used\u00a0Aintree Secondary School\u00a0as an interim\u00a0name while the school was being planned and designed.", + "John Mitsinikos was appointed as principal of the new school.\u00a0 John Mitsinikos has been a government school leader for 15 years. He was most recently principal at Kurunjang Secondary College. John is excited to be the\u00a0foundation principal at the school. He knows the Brimbank Melton area well, and looks forward to building a strong learning culture with students and staff.", + "When the school opens in Term 1, 2024, it will include: a design, arts, technology and science (DATS) building a learning neighbourhood hard courts a carpark. We are also delivering a community hub. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Wurundjeri Woi-wurrung Cultural Heritage Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_paragraph_body": [ + "Aintree Secondary School (interim name) - Introducing John Mitsinikos \u00a0" + ], + "field_postcode": ["3335"], + "field_project_code": ["01-7500"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["40 Recreation Rd"], + "field_suburb": ["Aintree"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24963], + "status": [true], + "title": ["Yarrabing Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["1a09eee8-e392-422b-8e94-ee42461d26a9"] + }, + "sort": ["Yarrabing Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34234:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarralea-childrens-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Yarralea Children's Centre plan a first-storey expansion of their building. This will create more kindergarten places for local 3 and 4-year-olds as well as new community and administration spaces and an additional playroom. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Yarralea Children's Centre" + ], + "field_latitude": ["-37.781795"], + "field_latitude_longitude_value": ["-37.781795,145.032345"], + "field_latitude_value": ["-37.781795"], + "field_longitude": ["145.032345"], + "field_longitude_value": ["145.032345"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3078"], + "field_project_code": ["15-949"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["54 Yarralea Street"], + "field_suburb": ["Alphington"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34234], + "status": [true], + "title": ["Yarralea Children's Centre"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["9d2ddc8a-72c6-4e70-a9a1-df4d9e5d8493"] + }, + "sort": ["Yarralea Children's Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34956:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarraleen-preschool"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-09-14T09:26:05+10:00"], + "field_about_project_processed": [ + "We created flat pathways and play surfaces allowing children of all abilities to use the space." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020-21 Building Blocks Improvement Grant round, $50,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Improvement Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Yarraleen Preschool" + ], + "field_latitude": ["-37.77095155"], + "field_latitude_longitude_value": ["-37.77095155,145.0883539"], + "field_latitude_value": ["-37.77095155"], + "field_longitude": ["145.0883539"], + "field_longitude_value": ["145.0883539"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3105"], + "field_project_code": ["15-462"], + "field_project_title": ["Building Blocks Improvement Grant"], + "field_q_complete": ["Q3 2021"], + "field_start_date": ["Q2 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["92 Rocklea Rd"], + "field_suburb": ["Bulleen"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34956], + "status": [true], + "title": ["Yarraleen Preschool"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["08591d46-edca-4d47-befb-ad66791fc971"] + }, + "sort": ["Yarraleen Preschool"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28770:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarram-early-learning-centre"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T14:11:14+11:00"], + "field_about_project_processed": [ + "We are expanding the early learning centre by constructing a modular kindergarten with 2 rooms. This will allow the centre to offer extra kindergarten places for local children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "This project shares in $283 million provided in the 2019\u201320 State Budget for Three-Year-Old Kindergarten capital funding, delivered over 5 years." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yarram Early Learning Centre." + ], + "field_latitude": ["-38.56439507"], + "field_latitude_longitude_value": ["-38.56439507,146.6744001"], + "field_latitude_value": ["-38.56439507"], + "field_longitude": ["146.6744001"], + "field_longitude_value": ["146.6744001"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3971\u00a0"], + "field_project_code": ["15-5459"], + "field_project_title": [ + "Building Blocks Capacity Grant - Modular Kinder" + ], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q4 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["Lawler St"], + "field_suburb": ["Yarram\u00a0"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28770], + "status": [true], + "title": ["Yarram Early Learning Centre"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["63b1bae1-340c-4d80-a820-4fd4f1d6ceb7"] + }, + "sort": ["Yarram Early Learning Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20730:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarram-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We have rebuilt the school,\u00a0delivering a new learning community and\u00a0administration building\u00a0with flexible learning spaces,\u00a0library and amenities." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016\u201317 State Budget, $4 million was allocated to the school." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarram Primary School" + ], + "field_latitude": ["-38.55856"], + "field_latitude_longitude_value": ["-38.55856,146.67534"], + "field_latitude_value": ["-38.55856"], + "field_longitude": ["146.67534"], + "field_longitude_value": ["146.67534"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3971"], + "field_project_code": ["01-693"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q1 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["2-14 Wesley St"], + "field_suburb": ["Yarram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20730], + "status": [true], + "title": ["Yarram Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["750ca95e-9c91-458c-b040-bc012cb67079"] + }, + "sort": ["Yarram Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25393:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarram-secondary-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are repairing the roof and replacing windows in Block B. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $489,002 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarram Secondary College" + ], + "field_latitude": ["-38.566575"], + "field_latitude_longitude_value": ["-38.566575,146.68546"], + "field_latitude_value": ["-38.566575"], + "field_longitude": ["146.68546"], + "field_longitude_value": ["146.68546"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3971"], + "field_project_code": ["01-8490"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["86 James Street"], + "field_suburb": ["Yarram"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25393], + "status": [true], + "title": ["Yarram Secondary College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["6e2ef98f-1f0f-4a79-98d7-684a5d6d596f"] + }, + "sort": ["Yarram Secondary College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21419:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarraman-centre-kindergarten"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "\u200bThe City of Greater Dandenong built a new double-unit kindergarten on the grounds of Yarraman Oaks Primary School.\u00a0 Facilities include: Two kindergarten rooms, each licensed for 33 or more children\u00a0 Outdoor play space landscaped to reflect natural, exploratory play with flexible use of equipment\u00a0 Office for kindergarten staff\u00a0 Kitchen for\u00a0all service users\u00a0 Maternal child health\u00a0\u2013 two consulting suites for MCH consultation or allied health services Waiting area\u00a0 Multi-purpose community space, accommodating playgroups, meetings, assesment and therapy purposes\u00a0 Storage Toilets" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2016\u20132017 Children's Facilities Capital Program Major Grants, $650,000 was allocated to the project." + ], + "field_funding_type_name": ["New Early Learning Facility"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yarraman Centre Kindergarten" + ], + "field_latitude": ["-37.97057"], + "field_latitude_longitude_value": ["-37.97057,145.1925599"], + "field_latitude_value": ["-37.97057"], + "field_longitude": ["145.1925599"], + "field_longitude_value": ["145.1925599"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["ELC-32"], + "field_project_title": ["New Early Learning Facility"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Liege Ave"], + "field_suburb": ["Noble Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21419], + "status": [true], + "title": ["Yarraman Centre Kindergarten"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["29fce5ef-5128-4ae0-bb12-32b65da31360"] + }, + "sort": ["Yarraman Centre Kindergarten"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20358:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarraman-oaks-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We made external repairs to the Senior Building." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020 Minor Capital Works Fund, the school was allocated $369,125" + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarraman Oaks Primary School" + ], + "field_latitude": ["-37.9704643"], + "field_latitude_longitude_value": ["-37.9704643,145.1915048"], + "field_latitude_value": ["-37.9704643"], + "field_longitude": ["145.1915048"], + "field_longitude_value": ["145.1915048"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3174"], + "field_project_code": ["01-4807"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Liege Avenue"], + "field_suburb": ["Noble Park"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20358], + "status": [true], + "title": ["Yarraman Oaks Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["576022ae-8e5c-4d0a-8491-8f32db61f3db"] + }, + "sort": ["Yarraman Oaks Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/25394:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarrambat-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-06-03T14:14:51+10:00"], + "field_about_project_processed": [ + "We are refurbishing the student and staff toilets to improve amenity, cleanliness and hygiene. This work is supported by our Minor Capital Works Fund \u2013 a program for small building projects that make a big difference in our schools." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $444,127 from the Minor Capital Works Fund." + ], + "field_funding_type_name": ["Minor Capital Works Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarrambat Primary School" + ], + "field_latitude": ["-37.641245"], + "field_latitude_longitude_value": ["-37.641245,145.133097"], + "field_latitude_value": ["-37.641245"], + "field_longitude": ["145.133097"], + "field_longitude_value": ["145.133097"], + "field_mappintype_name": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3091"], + "field_project_code": ["01-2054"], + "field_project_title": ["Minor Capital Works Fund"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["552 Yan Yean Road"], + "field_suburb": ["Yarrambat"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [25394], + "status": [true], + "title": ["Yarrambat Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["ba225fbb-8e84-4baa-a84c-945248c138b7"] + }, + "sort": ["Yarrambat Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24582:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/yarraville-kindergarten-infrastructure-planning-project" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2022-04-13T10:43:30+10:00"], + "field_about_project_processed": [ + "We are helping the City of Maribyrnong plan and design 4 new kindergartens they are considering building on sites they own. These proposed projects would create more kindergarten places for local 3 and 4-year-olds. This planning gets the projects ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2021-22 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about the Yarraville Kindergarten Infrastructure Planning Project" + ], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_project_code": ["15-YKIPP"], + "field_project_title": ["Building Blocks Planning"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24582], + "status": [true], + "title": ["Yarraville Kindergarten Infrastructure Planning Project"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["55bb0d34-b994-4be2-ba07-df08262ea6ac"] + }, + "sort": ["Yarraville Kindergarten Infrastructure Planning Project"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20556:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarraville-special-developmental-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We upgraded and modernised this school.\u00a0This school was part of Victoria\u2019s largest ever single investment in upgrading specialist schools, with 39 sharing $388.8 million. These upgrades mean students with additional needs have the learning environments they need to achieve their full potential.", + "We helped build\u00a0an outdoor workspace in an unused area of the grounds. The workspace is for senior student programs such as horticulture, bike maintenance and cycle education, fitness for health or leisure, litter collection, car washing and basic woodwork." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2020\u201321 State Budget, the school received $5.472 million.", + "In 2018, $177,800 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarraville Special Developmental School" + ], + "field_latitude": ["-37.818084716796875", "-37.817905"], + "field_latitude_longitude_value": [ + "-37.818084716796875,144.8822021484375" + ], + "field_latitude_value": ["-37.818084716796875"], + "field_longitude": ["144.8822021484375", "144.883653"], + "field_longitude_value": ["144.8822021484375"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3013"], + "field_project_code": ["D1-01-5278", "01-5278"], + "field_project_title": [ + "Upgrade and Modernisation", + "Inclusive Schools Fund" + ], + "field_q_complete": ["Q3 2023", "Q4 2019"], + "field_start_date": ["Q4 2021", "Q4 2018"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["117 Blackwood St"], + "field_suburb": ["Yarraville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20556], + "status": [true], + "title": ["Yarraville Special Developmental School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["a3196654-02cc-4071-b973-14ee029140c2"] + }, + "sort": ["Yarraville Special Developmental School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22308:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yarraville-west-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-01-10T16:23:59+11:00"], + "field_about_project_processed": [ + "We refurbished the student toilets. It has improved amenity, cleanliness and hygiene. This work was supported by our Minor Capital Works Fund. A program for small building projects that make a big difference in our schools.", + "We built an inclusive outdoor learning space, including shade structure and sensory equipment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022-23 State Budget the project received $493,127 from the Minor Capital Works Fund.", + "In Round 7 of the Inclusive Schools Fund, the project received $200,000" + ], + "field_funding_type_name": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yarraville West Primary School" + ], + "field_latitude": ["-37.814751", "-37.814751"], + "field_latitude_longitude_value": ["-37.814751,144.885386"], + "field_latitude_value": ["-37.814751"], + "field_longitude": ["144.885386", "144.885386"], + "field_longitude_value": ["144.885386"], + "field_mappintype_name": ["School upgrade", "School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3013"], + "field_project_code": ["D1-01-2832", "01-2832"], + "field_project_title": [ + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 7" + ], + "field_q_complete": ["Q4 2023", "Q3 2023"], + "field_start_date": ["Q2 2022", "Q4 2021"], + "field_status_name": ["Complete", "Complete"], + "field_street_address": ["30 Powell Street"], + "field_suburb": ["Yarraville"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22308], + "status": [true], + "title": ["Yarraville West Primary School"], + "type": ["project_infrastructure"], + "uid": [6475], + "uuid": ["7f24bbc2-e5de-43af-902c-d9d21226c5e5"] + }, + "sort": ["Yarraville West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/34232:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yavneh-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2023-07-27T08:59:04+10:00"], + "field_about_project_processed": [ + "We are helping Yavneh College plan to move their Four-Year-Old kindergarten program from their Caulfield campus to their school in Elsternwick. This will allow them to expand this program as well as the one they run for 3-year-olds at Caulfield. The planning gets the project ready for construction, which depends on future funding." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2023 Building Blocks Grant - Planning stream, $150,000 was allocated to this project." + ], + "field_funding_type_name": ["Building Blocks Planning Grant"], + "field_landing_page_summary": [ + "Learn more about our support for Yavneh College" + ], + "field_latitude": ["-37.892638"], + "field_latitude_longitude_value": ["-37.892638,145.006782"], + "field_latitude_value": ["-37.892638"], + "field_longitude": ["145.006782"], + "field_longitude_value": ["145.006782"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3185"], + "field_project_code": ["15-YC"], + "field_project_title": ["Building Blocks Planning Grant"], + "field_street_address": ["2 Nagle Avenue"], + "field_suburb": ["Elsternwick"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [34232], + "status": [true], + "title": ["Yavneh College"], + "type": ["project_infrastructure"], + "uid": [8601], + "uuid": ["16e10fe3-6405-4b0f-9ec8-5c98b4c4871b"] + }, + "sort": ["Yavneh College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20731:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yea-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built\u00a0a new accessible playground, a covered outdoor stage and classroom, and a quiet space to support play-based learning." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In 2018, $200,000 was allocated to the school in Round 4 of the Inclusive Schools Fund." + ], + "field_funding_type_name": ["Inclusive Schools Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yea Primary School" + ], + "field_latitude": ["-37.21301978"], + "field_latitude_longitude_value": ["-37.21301978,145.4283911"], + "field_latitude_value": ["-37.21301978"], + "field_longitude": ["145.4283911"], + "field_longitude_value": ["145.4283911"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3717"], + "field_project_code": ["01-699"], + "field_project_title": ["Inclusive Schools Fund"], + "field_q_complete": ["Q4 2019"], + "field_start_date": ["Q4 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["23 Station St"], + "field_suburb": ["Yea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20731], + "status": [true], + "title": ["Yea Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["85483091-b7d6-4ed3-9b41-1e091f8a19be"] + }, + "sort": ["Yea Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/28777:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yea-uniting-early-learning"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-11-10T15:05:16+11:00"], + "field_about_project_processed": [ + "We are creating a versatile outdoor space for play-based learning within a rich, natural setting. The space will spark curiosity. Children will learn how to explore, engage in their environment and build their confidence. The space will feature: natural and accessible landscapes a mud kitchen and bush hut resting places, reflexology paths and running water a restored ecosystem." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Inclusion Grants $199,743.00 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Inclusion Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yea Uniting Early Learning." + ], + "field_latitude": ["-37.21217978"], + "field_latitude_longitude_value": ["-37.21217978,145.4227425"], + "field_latitude_value": ["-37.21217978"], + "field_longitude": ["145.4227425"], + "field_longitude_value": ["145.4227425"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3717"], + "field_project_code": ["elc-yuel"], + "field_project_title": ["Building Blocks Inclusion Grant"], + "field_q_complete": ["Q4 2023"], + "field_start_date": ["Q1 2023"], + "field_status_name": ["Planning"], + "field_street_address": ["23 The Semi Cir"], + "field_suburb": ["Yea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [28777], + "status": [true], + "title": ["Yea Uniting Early Learning"], + "type": ["project_infrastructure"], + "uid": [10471], + "uuid": ["d5c1d88f-8199-467e-ba38-0e57f152acc9"] + }, + "sort": ["Yea Uniting Early Learning"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21218:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yea-and-district-childrens-centre"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "Murrindindi Shire Council upgraded the kitchen, store and staff toilet of Yea and District Children's Centre.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "As part of the 2015-16 Children's Facilities Capital Program $325,000 was allocated to the project." + ], + "field_funding_type_name": ["Early Learning Facility Upgrade"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yea and District Childrens Centre" + ], + "field_latitude": ["-37.21246"], + "field_latitude_longitude_value": ["-37.21246,145.42311"], + "field_latitude_value": ["-37.21246"], + "field_longitude": ["145.42311"], + "field_longitude_value": ["145.42311"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3717"], + "field_project_code": ["15-1441"], + "field_project_title": ["Early Learning Facility Upgrade"], + "field_q_complete": ["Q1 2019"], + "field_status_name": ["Complete"], + "field_street_address": ["23 The Semi Circle"], + "field_suburb": ["Yea"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21218], + "status": [true], + "title": ["Yea and District Childrens Centre"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["90204bda-7627-4eaa-9153-5cdfe0d55096"] + }, + "sort": ["Yea and District Childrens Centre"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22621:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yeshivah-beth-rivkah-pre-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are upgrading the interiors of the preschools. We will refurbish classrooms and storage areas. This will create 2 new classrooms, while adding play areas, toilets, storage and staff rooms.", + "We are upgrading the outdoor play area. We will replace the ground cover outside Kinder 3 with a safer soft-fall material.", + "We are installing an elevator at this preschool. It will give children with mobility needs and carers with prams easier access to the early learning centre and play spaces.", + "We upgraded the indoor and outdoor learning areas. These areas now provide better sensory learning experiences for the children. As part of the upgrade, we repainted classrooms and added new outdoor play equipment that is safer and more accessible for all children.\u00a0" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $457,532.00 was allocated to the project.", + "In the 2022\u201323 Building Blocks Improvement Grants $189,412.80 was allocated to the project.", + "In the 2022\u201323 Building Blocks Inclusion Grants $200,000.00 was allocated to the project.", + "In Round 1 of the 2021\u201322 Building Blocks Improvement Grant, $297,820 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Improvement Grant", + "Building Blocks Inclusion Grant", + "Building Blocks Improvement Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yeshivah Beth Rivkah Pre School." + ], + "field_latitude": ["-37.86879924"], + "field_latitude_longitude_value": ["-37.86879924,145.0009147"], + "field_latitude_value": ["-37.86879924"], + "field_longitude": ["145.0009147"], + "field_longitude_value": ["145.0009147"], + "field_mappintype_name": [ + "Early childhood", + "Early childhood", + "Early childhood", + "Early childhood" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3182"], + "field_project_code": [ + "d3-15-280", + "d2-15-280", + "d4-15-280", + "15-280" + ], + "field_project_title": [ + "Building Blocks Improvement Grant - Early Learning Facility Upgrade - Indoors", + "Building Blocks Improvement Grant - Early Learning Facility Upgrade - Outdoors", + "Building Blocks Inclusion Grant", + "Building Blocks Improvement Grant" + ], + "field_q_complete": ["Q1 2024", "Q1 2024", "Q3 2024", "Q3 2023"], + "field_start_date": ["Q4 2022", "Q4 2022", "Q1 2023", "Q4 2021"], + "field_status_name": ["Planning", "Planning", "Planning", "Complete"], + "field_street_address": ["10\u201312 Balaclava Rd"], + "field_suburb": ["St Kilda East"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22621], + "status": [true], + "title": ["Yeshivah Beth Rivkah Pre School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["66f52adf-ab91-4c33-9dd8-e5287288d944"] + }, + "sort": ["Yeshivah Beth Rivkah Pre School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22633:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yesodei-hatorah-college"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We are upgrading the kindergarten spaces and playground, and undertaking important maintenance on the windows, door frames, facias and pergola. We are also separating access to the kindergarten from the adjoining classroom, and improving accessibility for children of all abilities. The upgrade will also include new lighting and finishes, refurbished toilets, storage and lockers, and improved landscaping.", + "We are buying playground equipment that can be used by children of all abilities. We will also make the playground safer and more comfortable with rubber ground and a shade sail." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 1 of the 2021-22 Early Childhood Refurbishment and Minor Works Program, $500,000 was allocated to this project.", + "In the 2022\u201323 Building Blocks Inclusion Grants $185,446.00 was allocated to the project." + ], + "field_funding_type_name": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yesodei HaTorah College." + ], + "field_latitude": ["-37.873227"], + "field_latitude_longitude_value": ["-37.873227,144.983491"], + "field_latitude_value": ["-37.873227"], + "field_longitude": ["144.983491"], + "field_longitude_value": ["144.983491"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3184"], + "field_project_code": ["15-4324", "d1-15-4324"], + "field_project_title": [ + "Early Childhood Refurbishment and Minor Works", + "Building Blocks Inclusion Grant" + ], + "field_q_complete": ["Q1 2024", "Q4 2023"], + "field_start_date": ["Q3 2021", "Q1 2023"], + "field_status_name": ["Construction", "Construction"], + "field_street_address": ["39 Dickens St"], + "field_suburb": ["Elwood"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22633], + "status": [true], + "title": ["Yesodei HaTorah College"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["0bf5ef66-3131-43c7-903a-91ed8831d89e"] + }, + "sort": ["Yesodei HaTorah College"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20099:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yinnar-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We are modernising the school to give students better learning opportunities. We will upgrade Block A classrooms and the stadium.", + "We refurbished the central toilet block and installed an accessible toilet in the stadium to improve functionality, hygiene and accessibility.", + "We helped build an outdoor inclusive learning space, including synthetic turf and fixed seating in a landscaped environment." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, this school received $7.337 million.", + "In the 2020 Minor Capital Works Fund, the school was allocated $463,125.", + "In Round 6 of the Inclusive Schools Fund, this project received $18,599." + ], + "field_funding_type_name": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund" + ], + "field_landing_page_summary": [ + "Learn more about the improvements at Yinnar Primary School." + ], + "field_latitude": ["-38.321087", "-38.3228653", "-38.3228653"], + "field_latitude_longitude_value": ["-38.321087,146.328907"], + "field_latitude_value": ["-38.321087"], + "field_longitude": ["146.328907", "146.3271588", "146.3271588"], + "field_longitude_value": ["146.328907"], + "field_mappintype_name": [ + "School upgrade", + "School upgrade", + "School upgrade" + ], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3869"], + "field_project_code": ["D2-01-2419", "01-2419", "D1-01-2419"], + "field_project_title": [ + "Upgrade and Modernisation", + "Minor Capital Works Fund", + "Inclusive Schools Fund - Round 6" + ], + "field_q_complete": ["Q2 2025", "Q3 2022", "Q4 2021"], + "field_start_date": ["Q2 2022", "Q4 2020", "Q2 2021"], + "field_status_name": ["Design", "Complete", "Complete"], + "field_street_address": ["30 Main St"], + "field_suburb": ["Yinnar"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20099], + "status": [true], + "title": ["Yinnar Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["31f66604-4de0-4db4-af1e-8490ea174a7d"] + }, + "sort": ["Yinnar Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20128:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yinnar-south-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We supported Yinnar South Primary School\u00a0to upgrade facilities, making sure that the building works fit: the needs of the school community the school's vision for the future." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "$70,000 was allocated to the school in the 2016\u201317 State Budget update." + ], + "field_funding_type_name": ["Upgrade and Modernisation"], + "field_landing_page_summary": [ + "Learn more about the improvements at Yinnar South Primary School" + ], + "field_latitude": ["-38.3724599"], + "field_latitude_longitude_value": ["-38.3724599,146.37137"], + "field_latitude_value": ["-38.3724599"], + "field_longitude": ["146.37137"], + "field_longitude_value": ["146.37137"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3869"], + "field_project_code": ["01-2730"], + "field_project_title": ["Upgrade and Modernisation"], + "field_q_complete": ["Q4 2017"], + "field_status_name": ["Complete"], + "field_street_address": ["Brewsters Road"], + "field_suburb": ["Yinnar South"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20128], + "status": [true], + "title": ["Yinnar South Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["bb64bf78-4ddc-4623-bedd-1ac62c21774f"] + }, + "sort": ["Yinnar South Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21391:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/yirram-burron-morning-children"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We helped deliver a new early learning centre to Sebastool. The new centre is called Yirram Burron, or 'Morning Children'. It is a culturally safe and welcoming early childhood service in the heart of Ballarat's Aboriginal community. The centre embraces and embeds Aboriginal perspectives into: service delivery, structural environment, and educational curriculum. Yirram Burron delivers kindergarten and long day care places to the local community. It aims to inspire children and engage families to enhance educational outcomes for Aboriginal children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In Round 2 of the 20\u201321 Building Blocks Capacity Grants $900,000 was allocated to the project." + ], + "field_funding_type_name": ["Building Blocks Capacity Grant"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at Yirram Burron (morning children)" + ], + "field_latitude": ["-37.602153778076172"], + "field_latitude_longitude_value": [ + "-37.602153778076172,143.83421325683594" + ], + "field_latitude_value": ["-37.602153778076172"], + "field_longitude": ["143.83421325683594"], + "field_longitude_value": ["143.83421325683594"], + "field_mappintype_name": ["Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3356"], + "field_project_code": ["15-YB"], + "field_project_title": [ + "Building Blocks Capacity Grant - New Early Learning Centre" + ], + "field_q_complete": ["Q4 2021"], + "field_start_date": ["Q4 2020"], + "field_status_name": ["Complete"], + "field_street_address": ["111 Rubicon St"], + "field_suburb": ["Sebastopol"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21391], + "status": [true], + "title": ["Yirram Burron (morning children)"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["4504a433-e753-4497-a9d1-e9398a2f8ee4"] + }, + "sort": ["Yirram Burron (morning children)"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/21224:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": [ + "/site-622/york-street-kindergarten-glenroy-west-primary-school" + ], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We refreshed the wall and floor finishes. These refreshments create a more inviting space for children, families and kindergarten staff.", + "We delivered a new modular building to York Street Kindergarten at Glenroy West Primary School in preparation for the roll-out of subsidised kindergarten for three-year-olds. The building provides families with an additional 33 kindergarten places, improves the quality of the outdoor play space and helps cater for the expected growth of this community.", + "We upgraded the flooring, and painting the centre. We also refurbished the ramp and play space connected to the new modular building. This integrates the outdoor spaces around the building to provide one continuous and connected kindergarten for three and four-year-olds." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 Building Blocks Improvement Grants $55,896 was allocated to the project.", + "In Round 2 of the 20\u201321 Building $1,195,000 million was allocated to the project.", + "In Round 1 of the 2021\u201322 Early Childhood Refurbishment and Minor Works Program, $164,450 was allocated to this project." + ], + "field_funding_type_name": [ + "Building Blocks Improvement Grant", + "Building Blocks Capacity Grant", + "Early Childhood Refurbishment and Minor Works" + ], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at York Street Kindergarten @ Glenroy West Primary School" + ], + "field_latitude": ["-37.704097747802734", "-37.70507875"], + "field_latitude_longitude_value": [ + "-37.704097747802734,144.92863464355469" + ], + "field_latitude_value": ["-37.704097747802734"], + "field_longitude": ["144.92863464355469", "144.9093489"], + "field_longitude_value": ["144.92863464355469"], + "field_mappintype_name": ["Early childhood", "Early childhood"], + "field_mappintype_value": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_body": ["Explore more about kindergartens"], + "field_postcode": ["3046"], + "field_project_code": ["D2-15-195", "15-195", "D1-15-195"], + "field_project_title": [ + "Building Blocks Improvement Grant", + "Building Blocks Capacity Grant - Modular", + "Early Childhood Refurbishment and Minor Works" + ], + "field_q_complete": ["Q1 2023", "Q1 2022", "Q1 2022"], + "field_start_date": ["Q4 2022", "Q4 2020", "Q3 2021"], + "field_status_name": ["Complete", "Complete", "Complete"], + "field_street_address": ["York St"], + "field_suburb": ["Glenroy"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [21224], + "status": [true], + "title": ["York Street Kindergarten @ Glenroy West Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["02b56cad-143e-492f-b282-bde720f551c0"] + }, + "sort": ["York Street Kindergarten @ Glenroy West Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/24958:en", + "_score": null, + "_ignored": ["field_paragraph_accordion_body.keyword"], + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/Yubup-Primary-School"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-05-04T17:29:33+10:00"], + "field_about_project_processed": [ + "We\u2019re building a new primary school in Mickleham. It will open day one of Term 1 in 2024 and help the growing local population get a great education close to home. It will be able to enrol up to 650 students when the first stage of the school is complete.Subscribe\u00a0to our mailing list for updates.Enrolments are openThe school is open for enrolments for students in Prep to Grade 6. The 2024 school zones are available at\u00a0findmyschool.vic.gov.au.\u00a0For all enrolment queries, please email Maree.Moyle@education.vic.gov.au or call 0497 423 163.You can learn more about the school on their website." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2022\u201323 State Budget, the school shared in $527.233 million allocated for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of Yubup Primary School" + ], + "field_latitude": ["-37.542842"], + "field_latitude_longitude_value": ["-37.542842,144.893733"], + "field_latitude_value": ["-37.542842"], + "field_longitude": ["144.893733"], + "field_longitude_value": ["144.893733"], + "field_mappintype_name": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2023-06/MerrifieldSouthPS_Featureimagerender.jpg" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_paragraph_accordion_body": [ + "Yubup Primary\u00a0School was chosen as this new school\u2019s name following a two-week community consultation.\u00a0Yubup\u00a0(pronounced\u00a0 you-boup ) is a\u00a0Woi-wurrung word of the Wurundjeri people\u00a0meaning parakeet. We\u00a0used\u00a0Merrifield South Primary School\u00a0as\u00a0an interim name while the school was being planned and designed.", + "Maree Moyle has been appointed as principal of the new school. Maree has been a principal for 10 years, and is excited to be the foundation principal at Yubup Primary School. She is passionate about school culture and excellence in teaching and learning. Maree looks forward to developing strong community connections to create an innovative and supportive learning environment for all students.", + "When the school opens in Term 1, 2024, it will include: an administration and library building 2 learning neighbourhoods a community hub with indoor multi-use court, canteen and arts/music spaces hard courts a sports field a carpark. Students will have great modern learning areas with air conditioning and heating. Outside, they will have shade sails for sun protection. We have designed the school to be environmentally sustainable and easy to manage. We have planned for future growth of this school. Those plans include an additional learning neighbourhood and more learning resource spaces.", + "Across late 2021 and during early\u2013mid 2022, we consulted with local Traditional Owners, represented by the Wurundjeri Woi-wurrung Cultural Heritage Aboriginal Corporation to endorse the design of this new school.\u00a0 We sought feedback and advice on: local Indigenous plantings cultural stories and histories translations of Indigenous words\u00a0 design elements that could enhance cultural education and understanding" + ], + "field_paragraph_accordion_name": [ + "Your new school\u2019s name", + "Principal appointment", + "Facilities", + "Design consultation" + ], + "field_postcode": ["3064"], + "field_project_code": ["01-5576"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2024"], + "field_start_date": ["Q2 2022"], + "field_status_name": ["Construction"], + "field_street_address": ["120 Ellscott Blvd"], + "field_suburb": ["Mickleham"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [24958], + "status": [true], + "title": ["Yubup Primary School"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["c74e32b5-8b98-4d90-91cd-28d349bb2f2d"] + }, + "sort": ["Yubup Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20291:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/zeerust-primary-school"], + "changed": ["2023-12-22T08:31:47+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new covered area at the school.\u00a0\u200b\u200b We worked with the school to ensure that the project met the school's needs. \u200b" + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2016-17 State Budget, $60,000 has been allocated to the school." + ], + "field_funding_type_name": ["School Pride and Sports Fund"], + "field_landing_page_summary": [ + "Learn more about the improvements at Zeerust Primary School" + ], + "field_latitude": ["-36.27649"], + "field_latitude_longitude_value": ["-36.27649,145.40481"], + "field_latitude_value": ["-36.27649"], + "field_longitude": ["145.40481"], + "field_longitude_value": ["145.40481"], + "field_mappintype_name": ["School upgrade"], + "field_mappintype_value": ["School upgrade"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3634"], + "field_project_code": ["01-4359"], + "field_project_title": ["School Pride and Sports Fund"], + "field_status_name": ["Complete"], + "field_street_address": ["245 Zeerust Road"], + "field_suburb": ["Zeerust"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20291], + "status": [true], + "title": ["Zeerust Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["48fa246c-7ce0-44c7-a111-f2e0eb6b3b1d"] + }, + "sort": ["Zeerust Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/20692:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/wollert-primary-school"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2021-11-24T18:04:03+11:00"], + "field_about_project_processed": [ + "We built a new primary school in Wollert. It opened in 2022 and helps the growing local population get great education close to home. The school is open for enrolments from Prep to Grade 6. Leanne Tingwell was appointed as the first principal of the school. Wollert Primary School was chosen as the school name. We consulted with the community on the school's name from 11 June to 25 June 2021. The school is named after the suburb it is located in. Facilities Facilities include the following: an administration building. Which includes a library, and art, food and science learning spaces a performing arts and physical education building 2 learning neighbourhoods 2 outdoor hardcourts a sports field a bike shed playgrounds. Supported inclusion school Wollert Primary School is a supported inclusion school.\u00a0This school has specialised facilities and capabilities designed to accommodate students with disabilities. Design consultation In 2018, we engaged local communities in Melbourne about establishing new schools. We gathered valuable insights, which served as the foundation for our concept designs. Between January and February 2020, we conducted a second round of engagement. We invited residents to share their ideas and knowledge. This helped identify elements that would shape their new school. We received valuable feedback from the school community about the outdoor areas. We heard they value: the surrounding natural environment of nearby Edgars Creek and Lehmann's Farm Park natural colours, materials and native flora an\u00a0eco-friendly and sustainable design. Wollert East families told us they wanted a school that felt like an extension of home and a place that would connect the community. They also hoped their school would be an anchor and a social hub for this growing area. Our consultation received strong and consistent feedback about the school's design. Our architects used your feedback to help shape your school's interior and its landscape design. Kindergarten We have built a\u00a0kindergarten at Wollert Primary School. This may help local children make a smooth transition from pre-school. It may also reduce the number of drop-offs for some parents with kinder and school-aged children." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2018\u201319 State Budget, $271.7 million was allocated to schools across the state for land acquisition. This included funding for the\u00a0school.In 2020, the school shared in $438.6 million of funding for new schools." + ], + "field_funding_type_name": ["New School"], + "field_landing_page_summary": [ + "Learn more about the build of \u200b\u200b\u200bWollert Primary School." + ], + "field_latitude": ["-37.610697"], + "field_latitude_longitude_value": ["-37.610697,145.026921"], + "field_latitude_value": ["-37.610697"], + "field_longitude": ["145.026921"], + "field_longitude_value": ["145.026921"], + "field_mappintype_name": ["New school"], + "field_mappintype_value": ["New school"], + "field_media_image_absolute_path": [ + "https://develop.content.vic.gov.au/sites/default/files/2021-12/WollertPS_FeatureTile.png" + ], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3750"], + "field_project_code": ["01-5589"], + "field_project_title": ["New School"], + "field_q_complete": ["Q1 2022"], + "field_start_date": ["Q2 2018"], + "field_status_name": ["Complete"], + "field_street_address": ["131 De Rossi Blvd"], + "field_suburb": ["Wollert"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [20692], + "status": [true], + "title": ["\u200b\u200b\u200bWollert Primary School"], + "type": ["project_infrastructure"], + "uid": [0], + "uuid": ["999854e4-7551-4b75-ba37-5be376e9fc8e"] + }, + "sort": ["​​​Wollert Primary School"] + }, + { + "_index": "a83890f7a31dea14e1ae83c6f0afacca--elasticsearch_index_develop_node", + "_id": "entity:node/22619:en", + "_score": null, + "_source": { + "_language": "en", + "node_grants": ["node_access_all:0"], + "url": ["/site-622/drysdale-street-kindergarten"], + "changed": ["2023-12-22T08:45:44+11:00"], + "created": ["2022-02-03T11:56:58+11:00"], + "field_about_project_processed": [ + "We partnered with Bass Coast Shire to expand Drysdale Street Kindergarten. We added an extra kindergarten room and maternal and child health facilities, allowing the centre to offer an extra 33 places from 2023. We also added an outdoor learning space and car park facilities.\u00a0 This kindergarten was built using\u00a0modular\u00a0construction, which means the bulk of the building works took place off-site. Modular kindergartens are an efficient solution for delivering quality buildings in short timeframes. They are constructed in a factory in sections known as \u201cmodules\u201d. These modules are delivered to the kindergarten site, where builders assemble them, connect utilities and complete outdoor areas. Constructing the modules offsite minimises disruptions to the community and kindergarten. The process also reduces the time required for a traditional build and gives children faster access to high-quality learning environments. For information on enrolment, please contact Bass Coast Shire Council or email kinder@basscoast.vic.gov.au." + ], + "field_content_category": [1475], + "field_content_category_name": ["Project"], + "field_funding_processed": [ + "In the 2019\u201320 Budget, this project shared in $283 million allocated over four years for Three-Year-Old Kindergarten." + ], + "field_funding_type_name": ["Kindergarten on a School Site"], + "field_landing_page_summary": [ + "Learn more about our support of the facilities at \ufeffDrysdale Street Kindergarten." + ], + "field_latitude": ["-38.60680461"], + "field_latitude_longitude_value": ["-38.60680461,145.5864425"], + "field_latitude_value": ["-38.60680461"], + "field_longitude": ["145.5864425"], + "field_longitude_value": ["145.5864425"], + "field_mappintype_name": ["Early childhood"], + "field_node_primary_csite": [622], + "field_node_site": [622], + "field_postcode": ["3995"], + "field_project_code": ["15-1430"], + "field_project_title": ["Kindergarten on a School Site"], + "field_q_complete": ["Q1 2023"], + "field_start_date": ["Q4 2021"], + "field_status_name": ["Complete"], + "field_street_address": ["27 Drysdale St"], + "field_suburb": ["Wonthaggi"], + "field_title_value": ["Location"], + "field_topic": [10], + "field_topic_name": ["Education"], + "field_topic_path": ["/topic/education"], + "field_topic_uuid": ["3764c1dc-9475-43cc-a483-96bec239c4f7"], + "langcode": ["en"], + "nid": [22619], + "status": [true], + "title": ["\ufeffDrysdale Street Kindergarten"], + "type": ["project_infrastructure"], + "uid": [9099], + "uuid": ["e4fce561-5005-4de4-bbba-e11426aec414"] + }, + "sort": ["Drysdale Street Kindergarten"] + } + ] + } +} diff --git a/examples/nuxt-app/test/fixtures/map-table/vsba/response-none.json b/examples/nuxt-app/test/fixtures/map-table/vsba/response-none.json new file mode 100644 index 0000000000..5b6ac3a2d2 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/map-table/vsba/response-none.json @@ -0,0 +1,18 @@ +{ + "took": 30, + "timed_out": false, + "_shards": { + "total": 5, + "successful": 5, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } +} diff --git a/examples/nuxt-app/test/fixtures/site/vsba.json b/examples/nuxt-app/test/fixtures/site/vsba.json new file mode 100644 index 0000000000..2bf4892d97 --- /dev/null +++ b/examples/nuxt-app/test/fixtures/site/vsba.json @@ -0,0 +1,440 @@ +{ + "name": "schoolbuildings.vic.gov.au", + "siteAlerts": [], + "siteLogo": { + "href": "/", + "src": "https://develop.content.vic.gov.au/sites/default/files/site_logo/VSBA_Logo_Website_AF272F%20%281%29.svg", + "altText": "" + }, + "showQuickExit": false, + "acknowledgementHeader": "The Victorian Government acknowledges Aboriginal and Torres Strait Islander people as the Traditional Custodians of the land and acknowledges and pays respect to their Elders, past and present.", + "cornerGraphic": { + "top": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2023-10/VictorianSchoolBuilding_Ripple2_Corner-Graphic-Top.png", + "alt": "Top corner graphic", + "title": "", + "width": 1140, + "height": 696, + "drupal_internal__target_id": 317179 + }, + "bottom": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2023-10/VictorianSchoolBuilding_Ripple2_Corner-Graphic-Bottom.png", + "alt": "Bottom corner graphic", + "title": "", + "width": 816, + "height": 288, + "drupal_internal__target_id": 317178 + } + }, + "acknowledgementFooter": "The Victorian Government acknowledges Aboriginal and Torres Strait Islander people as the Traditional Custodians of the land and acknowledges and pays respect to their Elders, past and present.", + "copyrightHtml": "", + "footerLogos": [ + { + "alt": "https://schoolbuildings.vic.gov.au", + "url": "https://schoolbuildings.vic.gov.au", + "src": "https://develop.content.vic.gov.au/sites/default/files/2021-12/VSBA-logo-footer-red.png" + }, + { + "alt": "https://www.vic.gov.au", + "url": "https://www.vic.gov.au", + "src": "https://develop.content.vic.gov.au/sites/default/files/2021-03/Vic_Gov_Logo_Footer_x_3_times%20%282%29.png" + } + ], + "theme": { + "rpl-clr-primary": "#AF272F", + "rpl-clr-primary-alt": "#7B1B21", + "rpl-clr-primary-alpha": "rgba(175, 39, 47, 0.5)", + "rpl-clr-accent": "#C4E4E1", + "rpl-clr-accent-alt": "#F9FCFC", + "rpl-clr-link": "#AF272F", + "rpl-clr-focus": "#50D8D0", + "rpl-clr-gradient-vertical": "linear-gradient(180deg, #C4E4E1 0%, #F6F6F9 100%)", + "rpl-clr-gradient-horizontal": "linear-gradient(90deg, #C4E4E1 0%, #F6F6F9 100%)", + "rpl-clr-type-primary-contrast": "#FFFFFF", + "rpl-clr-type-primary-accessible": "#AF272F", + "rpl-clr-type-primary-alt-accessible": "#7B1B21", + "rpl-clr-type-primary-contrast-alpha": "rgba(255, 255, 255, 0.75)", + "rpl-clr-type-accent-contrast": "#1A1A1A", + "rpl-clr-type-focus-contrast": "#1A1A1A", + "rpl-clr-footer": "#F6F6F9", + "rpl-clr-footer-alt": "#C5C5C7", + "rpl-clr-type-footer-accessible": "#1A1A1A", + "rpl-clr-type-footer-contrast": "#1A1A1A" + }, + "featureFlags": { + "prodMeasurementID": "G-G1LXMM8S05", + "uatMeasurementID": "G-FESP6Q2H33", + "footerTheme": "neutral", + "buttonTheme": "neutral" + }, + "socialImages": { + "twitter": {}, + "og": { + "src": "https://develop.content.vic.gov.au/sites/default/files/2021-11/VSBA-Socia-Media-Tile_0.png", + "alt": "", + "title": "", + "width": 600, + "height": 600, + "drupal_internal__target_id": 38805, + "focalPoint": { + "x": 300, + "y": 300 + } + } + }, + "menus": { + "menuMain": [ + { + "text": "Projects", + "url": "/projects-my-area", + "id": "338ab724-3ac4-4504-9e5f-d51eda426a14", + "parent": null, + "weight": -50 + }, + { + "text": "School funding programs", + "url": "/school-funding-programs", + "id": "9e72e527-a183-4f70-8345-62a90f9193a4", + "parent": null, + "weight": -49, + "items": [ + { + "text": "Australian Government Schools Upgrade Fund", + "url": "/schools-upgrade-fund", + "id": "ce52e7a9-00e6-4a9e-b568-567edc40f614", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -50 + }, + { + "text": "Building Fund for Non-Government Schools - Catholic", + "url": "/building-fund-non-government-schools-catholic", + "id": "0fda51fb-7e31-438d-876a-91a4440b0ebe", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -49 + }, + { + "text": "Building Fund for Non-Government Schools - Independent", + "url": "/building-fund-non-government-schools-independent", + "id": "bee60b5c-e4de-4a2b-a1a3-88494c277242", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -48 + }, + { + "text": "Greener Government School Buildings Program", + "url": "/greener-government-school-buildings-program", + "id": "d7d9cc7d-92bd-4a95-9f59-53d13c75f4e3", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -47 + }, + { + "text": "Hydrotherapy Pools at Specialist Schools Fund", + "url": "/hydrotherapy-pools-at-specialist-schools-fund", + "id": "5d1b9007-d634-4323-bc04-4c02cf97ad77", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -46 + }, + { + "text": "Inclusive Schools Fund", + "url": "/inclusive-schools-fund", + "id": "cb2c76a5-f85c-452f-8dec-604472d27b30", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -45 + }, + { + "text": "Minor Capital Works Fund", + "url": "/minor-capital-works-fund", + "id": "f0476743-6bc7-4d70-aa16-d9506bc4edab", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -44 + }, + { + "text": "Planned Maintenance Program", + "url": "/planned-maintenance-program", + "id": "265907f8-a862-4fbf-ba26-84aeddcc0e3a", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -42 + }, + { + "text": "Safe Tree Program", + "url": "/safe-tree-program", + "id": "cb02cba9-220e-4806-85a4-6c71620577a9", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -41 + }, + { + "text": "School Shade Sails Fund", + "url": "/school-shade-sails-fund", + "id": "e49661ef-2df5-49f2-b782-62478d0d4904", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -40 + }, + { + "text": "Shared Facilities Fund", + "url": "/shared-facilities-fund", + "id": "6423bf79-b214-47d6-bb54-54ef96aa9121", + "parent": "9e72e527-a183-4f70-8345-62a90f9193a4", + "weight": -39 + } + ] + }, + { + "text": "Early childhood grants", + "url": "/early-childhood-grants", + "id": "e7e3ca91-06e8-45ad-a41c-1bb780703b63", + "parent": null, + "weight": -48, + "items": [ + { + "text": "Building Blocks Grants - Capacity Building", + "url": "/building-blocks-grants-capacity-building", + "id": "6da1a42c-7ffc-4d40-8e6b-904222ee12df", + "parent": "e7e3ca91-06e8-45ad-a41c-1bb780703b63", + "weight": -50 + }, + { + "text": "Building Blocks Grants - Improvement", + "url": "/building-blocks-grants-improvement", + "id": "01e58a41-3b59-4dad-9afe-e1a2e3167719", + "parent": "e7e3ca91-06e8-45ad-a41c-1bb780703b63", + "weight": -49 + }, + { + "text": "Building Blocks Grants - Inclusion", + "url": "/building-blocks-grants-inclusion", + "id": "5eb2bb3c-15e9-4179-ad58-3eacdd4160c5", + "parent": "e7e3ca91-06e8-45ad-a41c-1bb780703b63", + "weight": -48 + }, + { + "text": "Building Blocks Grants - Planning", + "url": "/building-blocks-grants-planning", + "id": "6ecbb73c-7afb-4bfb-8589-5f7927b68fc0", + "parent": "e7e3ca91-06e8-45ad-a41c-1bb780703b63", + "weight": -47 + }, + { + "text": "Early Childhood Refurbishment and Minor Works Program", + "url": "/early-childhood-refurbishment-and-minor-works-program", + "id": "78369f44-eb9d-4b82-913a-0e459133b3b9", + "parent": "e7e3ca91-06e8-45ad-a41c-1bb780703b63", + "weight": -46 + } + ] + }, + { + "text": "About us", + "url": "/about-us", + "id": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "parent": null, + "weight": -47, + "items": [ + { + "text": "New schools", + "url": "/new-schools", + "id": "4d4825c6-c780-42ec-84d0-37e65734f9e8", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -50 + }, + { + "text": "New names for new schools opening in 2024", + "url": "/new-names-for-new-schools", + "id": "f1cc156b-05b6-44de-81c3-d485721cbf72", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -49 + }, + { + "text": "Building the kindergartens and early learning centres Victoria needs", + "url": "/building-kindergartens-and-early-learning-centres-victoria-needs", + "id": "2644cf31-7866-42ab-b81b-5ca850e9bd4e", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -48 + }, + { + "text": "Kinders at schools", + "url": "/kinders-at-schools", + "id": "67f5caad-895d-46d3-8dcd-4827557d4ade", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -47 + }, + { + "text": "50 early learning centres for Victoria", + "url": "/50-early-learning-centres-victoria", + "id": "6b40e263-55f2-48e7-bac3-fe6131853724", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -46 + }, + { + "text": "2023 Victorian School Design Awards", + "url": "/2023-victorian-school-design-awards", + "id": "f8328bb1-d7e5-4ec1-8c31-0daeccb06f92", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -44 + }, + { + "text": "Land for new schools", + "url": "/land-new-schools", + "id": "15b8ece0-e488-4cca-870c-812fa74f41b2", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -43 + }, + { + "text": "Principals appointed to new schools for 2024", + "url": "/principals-appointed-new-schools", + "id": "99f96224-eccc-460b-a946-d54458bc91ea", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -42 + }, + { + "text": "2024 school zones now available", + "url": "/2024-school-zones-now-available", + "id": "5008be05-d291-4ec4-b13c-33fa9ada7d19", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -41 + }, + { + "text": "Big budget investment in school and kindergarten buildings", + "url": "/budget-invests-big-school-build", + "id": "55fe055b-76ba-4e55-8cc7-06d8bb2684d1", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -40 + }, + { + "text": "Modular kindergarten facilities", + "url": "/modular-kindergarten-facilities", + "id": "dc2b4c37-bb07-4b23-9944-7d180f6328d7", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -39 + }, + { + "text": "Education plans", + "url": "/education-plans", + "id": "518897c9-976a-45d0-a7ab-e26f6644cc04", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -38 + }, + { + "text": "Specialist schools", + "url": "/specialist-schools", + "id": "fefdc9b3-5ac6-4a3b-a922-1450071ee3a0", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -37 + }, + { + "text": "Supported inclusion schools", + "url": "/supported-inclusion-schools", + "id": "14986620-b482-4a23-ba7e-ddce7e9656be", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -36 + }, + { + "text": "Flexible learning classrooms", + "url": "/flexible-learning-classrooms", + "id": "71915c17-b6e2-42ff-a47e-74e4cc29cd6d", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -35 + }, + { + "text": "Why do we build more primary than secondary schools?", + "url": "/why-do-we-build-more-primary-secondary-schools", + "id": "263a1542-5c97-436b-8003-5244e84fe39f", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -34 + }, + { + "text": "Permanent modular school buildings", + "url": "/permanent-modular-school-buildings-program", + "id": "be4007bf-5f74-4ba1-af05-4809556c0a41", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -33 + }, + { + "text": "Asbestos safety program", + "url": "/asbestos-safety-program", + "id": "1c4e788d-a673-4dbc-ae9e-d8e82aa942ed", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -32 + }, + { + "text": "Land regeneration program", + "url": "/land-regeneration-program", + "id": "bd60ee97-71fd-4c5c-96a3-6b01504a1bb5", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -31 + }, + { + "text": "Construction procurement and opportunities", + "url": "/construction-procurement-and-opportunities", + "id": "ac148f25-481c-44e2-ae13-40074c14212f", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -30 + }, + { + "text": "Careers", + "url": "/careers", + "id": "047db22b-be28-4144-9002-1d101ce44230", + "parent": "286e68aa-ef16-4ad9-869a-3b305d44b421", + "weight": -29 + } + ] + }, + { + "text": "Contact us", + "url": "/contact-victorian-school-building-authority", + "id": "924cfc12-29a2-442f-974f-3f935e8dfe58", + "parent": null, + "weight": -46, + "items": [ + { + "text": "Give us feedback or make a complaint", + "url": "/our-customer-service-commitment", + "id": "6fb253e0-b0cb-44c8-8083-9548de9fb6a2", + "parent": "924cfc12-29a2-442f-974f-3f935e8dfe58", + "weight": -50 + } + ] + } + ], + "menuFooter": [ + { + "text": "Privacy", + "url": "/privacy-vicgovau", + "id": "6e269c02-02c8-40f9-8c45-17f09e0241dd", + "parent": null, + "weight": -50 + }, + { + "text": "Disclaimer", + "url": "/disclaimer", + "id": "43171cc9-bf7b-41bb-aa5a-8b4537cf6b04", + "parent": null, + "weight": -49 + }, + { + "text": "Copyright", + "url": "/copyright", + "id": "4722cab2-48cc-4482-aa40-f5a5a5bd7a36", + "parent": null, + "weight": -48 + }, + { + "text": "Accessibility", + "url": "/accessibility", + "id": "789031c0-c9a3-433e-80c0-ec5f22a52f8f", + "parent": null, + "weight": -47 + }, + { + "text": "Sitemap", + "url": "https://www.schoolbuildings.vic.gov.au/sitemap", + "id": "52c1010a-7397-4dd3-833f-43d769a7abcd", + "parent": null, + "weight": 0 + } + ] + }, + "socialLinks": [], + "sitemap": { + "showTableOfContents": false, + "tableOfContentsTitle": null + } +} diff --git a/examples/nuxt-app/test/support/step_definitions/index.ts b/examples/nuxt-app/test/support/step_definitions/index.ts index acb1b0286d..a1e1f39a45 100644 --- a/examples/nuxt-app/test/support/step_definitions/index.ts +++ b/examples/nuxt-app/test/support/step_definitions/index.ts @@ -1,4 +1,5 @@ import '@dpc-sdp/ripple-test-utils/step_definitions' +import '@frsource/cypress-plugin-visual-regression-diff' Cypress.on('uncaught:exception', (err) => { // https://stackoverflow.com/a/50387233 // Ignore Resize observer loop issue in expand search filters for now diff --git a/packages/nuxt-ripple-analytics/lib/index.ts b/packages/nuxt-ripple-analytics/lib/index.ts index 9fc565f0ae..17ee6efc06 100644 --- a/packages/nuxt-ripple-analytics/lib/index.ts +++ b/packages/nuxt-ripple-analytics/lib/index.ts @@ -547,12 +547,41 @@ export default { } }, // UI Forms components + 'rpl-form/submit': () => { + return (payload: any) => { + trackEvent({ + event: `form_${payload.action}`, + form_id: payload?.id, + form_name: payload?.name, + form_valid: true, + form_data: payload?.value, + element_text: payload?.text, + component: 'rpl-form', + platform_event: 'submit' + }) + } + }, + 'rpl-form/invalid': () => { + return (payload: any) => { + trackEvent({ + event: `form_${payload.action}`, + form_id: payload?.id, + form_name: payload?.name, + form_valid: false, + form_data: payload?.value, + element_text: payload?.text, + component: 'rpl-form', + platform_event: 'submit' + }) + } + }, 'rpl-form/submitted': () => { return (payload: any) => { trackEvent({ event: `form_${payload.action}`, form_id: payload?.id, form_name: payload?.name, + form_data: payload?.value, element_text: payload?.text, component: 'rpl-form', platform_event: 'submit' @@ -718,7 +747,7 @@ export default { name: payload?.name, type: payload?.type, form_id: payload?.contextId, - component: 'tide-search', + component: `tide-${payload.section || 'search'}`, platform_event: 'search' }) } @@ -734,7 +763,7 @@ export default { index: payload?.index, filters: payload?.options, count: payload?.value, - component: 'tide-search', + component: `tide-${payload.section || 'search'}`, platform_event: 'search' }) } @@ -751,7 +780,7 @@ export default { index: payload?.index, count: payload?.value, filters: payload?.options, - component: 'tide-search', + component: `tide-${payload.section || 'search'}`, platform_event: 'paginate' }) } @@ -766,10 +795,27 @@ export default { name: payload?.name, form_id: payload?.contextId, filters: payload?.options, - component: 'tide-search', + component: `tide-${payload.section || 'search'}`, platform_event: 'toggleFilters' }) } + }, + 'tide-search/reset': () => { + return (payload: any) => { + trackEvent({ + event: `${payload.action}_filters`, + element_id: payload?.id, + element_text: payload?.text, + label: payload?.label, + name: payload?.name, + count: payload?.value, + type: payload?.type, + form_id: payload?.contextId, + filters: payload?.options, + component: `tide-${payload.section || 'search'}`, + platform_event: 'clearQuery' + }) + } } } diff --git a/packages/nuxt-ripple-analytics/lib/tracker.ts b/packages/nuxt-ripple-analytics/lib/tracker.ts index 10937d1bfa..ec0773e317 100644 --- a/packages/nuxt-ripple-analytics/lib/tracker.ts +++ b/packages/nuxt-ripple-analytics/lib/tracker.ts @@ -16,6 +16,8 @@ export interface IRplAnalyticsEventPayload { file_size?: string form_id?: string form_name?: string + form_valid?: boolean + form_data?: boolean field_id?: string filters?: string type?: string diff --git a/packages/nuxt-ripple/components/TideBaseLayout.vue b/packages/nuxt-ripple/components/TideBaseLayout.vue index bd938cf968..51a3f83e76 100644 --- a/packages/nuxt-ripple/components/TideBaseLayout.vue +++ b/packages/nuxt-ripple/components/TideBaseLayout.vue @@ -69,7 +69,7 @@