Skip to content

Commit

Permalink
Merge pull request #1 from nswdpc/update-20230405
Browse files Browse the repository at this point in the history
Update 20230405
  • Loading branch information
tardinha authored Apr 18, 2023
2 parents 380bf36 + 225034b commit 097813e
Show file tree
Hide file tree
Showing 3 changed files with 146 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ The data can be used to represent form controls and lists of governance data.

### Usage

Load the v20220701 dataset
Load the v20230405 dataset

```php
// @var GovernanceArrangementsService
$service = GovernanceArrangementsService::create(20220701);
$service = GovernanceArrangementsService::create(20230405);
// @var array
$data = $service->getData();
```
Expand Down
122 changes: 122 additions & 0 deletions data/yml/governance-arrangements/20230405.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
---
name: 'nswgov-clusters-agencies'
version: 20230405
supersedes: 20220701
created: '2023-04-05'
fromdate: '2023-04-05'
title: 'Governance Arrangements Chart from 5 April 2023'
author: 'NSW Department of Premier and Cabinet'
source: 'https://www.dpc.nsw.gov.au/assets/dpc-nsw-gov-au/Governance-Arrangements-Chart.pdf'
description: 'Please note: This chart contains information about Ministers, State-owned corporations established under Schedule 5 to the State Owned Corporations Act 1989 (NSW), and those NSW Government agencies that are established under Schedule 1 to the Government Sector Employment Act 2013 (NSW). There are a range of other NSW statutory bodies and statutory positions that are established under other Acts. Information on which portfolio statutory bodies and positions holders are part of can be obtained by consulting the Allocation of the Administration of Acts and the legislation that establishes the statutory body or officer (available at www.legislation.nsw.gov.au). The NSW legislation website is the primary source of information about the legal structure of the NSW Government.'
clusters:
'Premier and Cabinet':
departments:
- 'Department of Premier and Cabinet'
executive_agencies:
- 'Natural Resources Commission Staff Agency'
- 'Parliamentary Counsel''s Office'
separate_agencies:
- 'Ombudsman''s Office'
- 'Public Service Commission'
- 'New South Wales Electoral Commission Staff Agency'
- 'Office of the Law Enforcement Conduct Commission'
- 'Office of the Inspector of the Law Enforcement Conduct Commission'
'Education':
departments:
- 'Department of Education'
other_services:
- 'Teaching Service'
separate_agencies:
- 'TAFE Commission (Senior Executives) Staff Agency'
- 'NSW Education Standards Authority Staff Agency'
'Environment and Planning':
departments:
- 'Department of Planning and Environment'
executive_agencies:
- 'NSW Reconstruction Authority Staff Agency'
- 'Greater Cities Commission Staff Agency'
- 'Western Parkland City Authority Staff Agency'
separate_agencies:
- 'Office of the Independent Planning Commission'
- 'Environment Protection Authority Staff Agency'
corporations:
- 'Landcom'
- 'Essential Energy'
- 'Water NSW'
- 'Hunter Water Corporation'
- 'Sydney Water Corporation'
'Jobs and Tourism':
departments:
- 'Department of Enterprise, Investment and Trade'
executive_agencies:
- 'Venues NSW Staff Agency'
- 'Destination NSW Staff Agency'
- 'Art Gallery of NSW Trust Staff Agency'
- 'Australian Museum Trust Staff Agency'
- 'Library Council of NSW Staff Agency'
- 'Trustees of the Museum of Applied Arts and Sciences Staff Agency'
- 'Sydney Opera House Trust Staff Agency'
- 'Museums of History NSW and State Records Authority NSW Staff Agency'
separate_agencies:
- 'Office of the Greyhound Welfare and Integrity Commission'
- 'Independent Liquor and Gaming Authority Staff Agency'
- 'NSW Independent Casino Commission Staff Agency'
'Treasury':
departments:
- 'Treasury'
executive_agencies:
- 'Infrastructure NSW Staff Agency'
- 'SAS Trustee Corporation Staff Agency'
'Health':
departments:
- 'Ministry of Health'
executive_agencies:
- 'Health Professional Councils Authority Office'
- 'Mental Health Commission Staff Agency'
other_services:
- 'NSW Health Service'
separate_agencies:
- 'Health Care Complaints Commission Staff Agency'
'Transport':
departments:
- 'Department of Transport'
other_services:
- 'Transport Service'
corporations:
- 'Newcastle Port Corporation (known as the Port Authority of New South Wales)'
- 'Transport Asset Holding Entity of New South Wales'
'Customer Service':
departments:
- 'Department of Customer Service'
executive_agencies:
- 'Service NSW'
separate_agencies:
- 'Information and Privacy Commission'
- 'Independent Pricing and Regulatory Tribunal Staff Agency'
- 'Office of the Independent Review Officer'
'Communities and Justice':
departments:
- 'Department of Communities and Justice'
executive_agencies:
- 'Crown Solicitor''s Office'
- 'Fire and Rescue NSW'
- 'Office of the NSW Rural Fire Service'
- 'Office of the NSW State Emergency Service'
- 'Institute of Sport Staff Agency'
- 'Office of Sport'
- 'Multicultural NSW Staff Agency'
other_services:
- 'NSW Police Force'
separate_agencies:
- 'Office of the Director of Public Prosecutions'
- 'Legal Aid Commission Staff Agency'
- 'NSW Crime Commission Staff Agency'
- 'Office of the Children''s Guardian'
- 'Office of the Ageing and Disability Commissioner'
'Regional NSW':
departments:
- 'Department of Regional NSW'
executive_agencies:
- 'Local Land Services Staff Agency'
corporations:
- 'Forestry Corporation'
22 changes: 22 additions & 0 deletions tests/v20230405Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

namespace NSWDPC\GovernanceArrangements\Test;

require_once( dirname(__FILE__) . '/GovernanceArrangementsServiceTest.php' );

/**
* Test for v20230405
*/
class v20230405Test extends GovernanceArrangementsServiceTest {

/**
* @var float
*/
protected $dataVersion = 20230405;

/**
* @var int|null
*/
protected $totalClusters = 10;

}

0 comments on commit 097813e

Please sign in to comment.