-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathparties.json
2034 lines (2034 loc) · 55.4 KB
/
parties.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Id": 1339,
"Name": "Animal Justice Party",
"Code": "AJP",
"Abbreviation": "AJP",
"RegisterDate": "3 May 2011",
"AmendmentDate": "3 May 2011",
"Address": "Ground Floor\n470 St Kilda Rd\nMELBOURNE VIC 3004",
"Officer": {
"Title": "Dr",
"FamilyName": "Cheung",
"GivenNames": "William",
"Capacity": "Party Agent",
"Address": {
"Line1": "Ground Floor",
"Line2": "470 St Kilda Road",
"Suburb": "Melbourne",
"State": "VIC",
"Postcode": 3004
}
},
"DeputyOfficers": [
{
"Title": "Ms",
"FamilyName": "Sutton",
"GivenNames": "Alicia",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "24 Malvolio Road",
"Suburb": "Coolbellup",
"State": "WA",
"Postcode": 6163
}
},
{
"Title": "Mr",
"FamilyName": "Cram",
"GivenNames": "Austin",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "11 Hosking Road",
"Suburb": "Jeetho",
"State": "VIC",
"Postcode": 3945
}
}
],
"Branches": []
},
{
"Id": 1347,
"Name": "Australian Christians",
"Code": "Australian Christians",
"Abbreviation": "Australian Christians",
"RegisterDate": "19 December 2011",
"AmendmentDate": "19 December 2011",
"Address": "PO Box 1077\nOSBORNE PARK WA 6916",
"Officer": {
"Title": "Ms",
"FamilyName": "Groenewald",
"GivenNames": "Maryka",
"Address": {
"Line1": "3/16 Guthrie Street",
"Suburb": "Osborne Park",
"State": "WA",
"Postcode": 6017
}
},
"DeputyOfficers": [
{
"Title": "Ms",
"FamilyName": "Hinton",
"GivenNames": "Margret",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "PO Box 1077",
"Suburb": "Osborne Park",
"State": "WA",
"Postcode": 6916
}
}
],
"Branches": []
},
{
"Id": 1181,
"Name": "Australian Citizens Party",
"Code": "Citizens Party",
"Abbreviation": "Citizens Party",
"RegisterDate": "4 September 2007",
"AmendmentDate": "4 September 2007",
"Address": "PO Box 376\nCOBURG VIC 3058",
"Officer": {
"Title": "Mr",
"FamilyName": "Isherwood",
"GivenNames": "Craig William",
"Capacity": "Secretary",
"Address": {
"Line1": "29 Hare Street",
"Suburb": "Fawkner",
"State": "VIC",
"Postcode": 3060
}
},
"DeputyOfficers": [
{
"Title": "Ms",
"FamilyName": "Lawler",
"GivenNames": "Ann",
"Address": {
"Line1": "312 Wollombi Road",
"Suburb": "Farley",
"State": "NSW",
"Postcode": 2320
}
},
{
"Title": "Mr",
"FamilyName": "Pukallus",
"GivenNames": "Dennis",
"Address": {
"Line1": "30 Plover Driver",
"Suburb": "Eagleby",
"State": "QLD",
"Postcode": 4207
}
},
{
"Title": "Ms",
"FamilyName": "Pukallus",
"GivenNames": "Jan",
"Address": {
"Line1": "30 Plover Drive",
"Suburb": "Eagleby",
"State": "QLD",
"Postcode": 4207
}
},
{
"Title": "Mrs",
"FamilyName": "Robinson",
"GivenNames": "Jean",
"Address": {
"Line1": "Lot 308 Potts Rd",
"Suburb": "Kojonup",
"State": "WA",
"Postcode": 6395
}
},
{
"Title": "Mr",
"FamilyName": "Butler",
"GivenNames": "Robert",
"Address": {
"Line1": "27 De Villiers Avenue",
"Suburb": "Chatswood",
"State": "NSW",
"Postcode": 2067
}
},
{
"Title": "Mrs",
"FamilyName": "Campbell",
"GivenNames": "Trudy",
"Address": {
"Line1": "695 Reedbeds Road",
"Suburb": "DARWIN RIVER",
"State": "NT",
"Postcode": 838
}
}
],
"Branches": []
},
{
"Id": 1472,
"Name": "Australian Democrats",
"Code": "DEM",
"Abbreviation": "Australian Democrats",
"RegisterDate": "7 April 2019",
"AmendmentDate": "7 April 2019",
"Address": "PO Box 547\nGLENELG SA 5045",
"Officer": {
"Title": "Mr",
"FamilyName": "Churchill",
"GivenNames": "Darren Mark",
"Capacity": "National President",
"Address": {
"Line1": "15 Bassett Street",
"Suburb": "Nairne",
"State": "SA",
"Postcode": 5252
}
},
"DeputyOfficers": [
{
"Title": "Mr",
"FamilyName": "Shannon",
"GivenNames": "André Anthony",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "6 Fife Gardens",
"Suburb": "OCEANS REEF",
"State": "WA",
"Postcode": 6027
}
},
{
"Title": "Mr",
"FamilyName": "Castrique",
"GivenNames": "Andrew John",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "15 Bassett Street",
"Suburb": "Nairne",
"State": "SA",
"Postcode": 5252
}
},
{
"Title": "Mr",
"FamilyName": "Kanck",
"GivenNames": "Asbjorn Jan",
"Address": {
"Line1": "25 Meadowvale Road",
"Suburb": "Athelstone",
"State": "SA",
"Postcode": 5076
}
},
{
"Title": "Mr ",
"FamilyName": "Urquhart",
"GivenNames": "Ian Alistair",
"Address": {
"Line1": "8 Morey Road",
"Suburb": "Beaumaris",
"State": "VIC",
"Postcode": 3193
}
},
{
"Title": "Ms",
"FamilyName": "Hicks DeVylder",
"GivenNames": "Janna",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "67 Renwick Street",
"Suburb": "Drummoyne",
"State": "NSW",
"Postcode": 2047
}
},
{
"Title": "Ms",
"FamilyName": "Clothier",
"GivenNames": "Lucy Grace",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "PO Box 547",
"Suburb": "Glenelg",
"State": "SA",
"Postcode": 5045
}
},
{
"Title": "Mr",
"FamilyName": "McKee",
"GivenNames": "Robert",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "62 Skyline Way",
"Suburb": "Berwick",
"State": "VIC",
"Postcode": 3806
}
},
{
"Title": "Mr",
"FamilyName": "Roberts",
"GivenNames": "Scott Frazer",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "10 Carrington Place",
"Suburb": "Bridgeman Downs",
"State": "QLD",
"Postcode": 4035
}
}
],
"Branches": []
},
{
"Id": 2,
"Name": "Australian Labor Party (ALP)",
"Code": "ALP",
"Abbreviation": "ALP",
"RegisterDate": "31 May 1984",
"AmendmentDate": "31 May 1984",
"Address": "PO Box 6222\nKINGSTON ACT 2604",
"Officer": {
"Title": "Mr",
"FamilyName": "Erickson",
"GivenNames": "Paul",
"Address": {
"Line1": "Unit 5, 9 Sydney Avenue",
"Suburb": "Barton",
"State": "ACT",
"Postcode": 2600
}
},
"DeputyOfficers": [
{
"Title": "Ms",
"FamilyName": "Light",
"GivenNames": "Jennifer",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "5/9 Sydney Ave",
"Suburb": "Barton",
"State": "ACT",
"Postcode": 2600
}
}
],
"Branches": [
{
"Id": 200,
"Name": "Australian Labor Party (ACT Branch)",
"Code": "ALP",
"Abbreviation": "Australian Labor Party",
"RegisterDate": "13 June 1985",
"AmendmentDate": "13 June 1985",
"Address": "GPO Box 3065\nCANBERRA ACT 2601",
"Officer": {
"Title": "Mr",
"FamilyName": "van Dijk",
"GivenNames": "Ash",
"Capacity": "Secretary",
"Address": {
"Line1": "U14 Level 1",
"Line2": "222 City Walk",
"Suburb": "Canberra",
"State": "ACT",
"Postcode": 2601
}
},
"DeputyOfficers": [
{
"Title": "Ms",
"FamilyName": "Johnston",
"GivenNames": "Sophie",
"Address": {
"Line1": "GPO Box 3065",
"Suburb": "Canberra",
"State": "ACT",
"Postcode": 2601
}
}
]
},
{
"Id": 194,
"Name": "Australian Labor Party (N.S.W. Branch)",
"Code": "ALP",
"Abbreviation": "Labor",
"RegisterDate": "13 June 1985",
"AmendmentDate": "13 June 1985",
"Address": "PO Box K408\nHAYMARKET NSW 1240",
"Officer": {
"Title": "Mr",
"FamilyName": "Ofner",
"GivenNames": "Dominic",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Level 9",
"Line2": "377 Sussex Street",
"Suburb": "Sydney",
"State": "NSW",
"Postcode": 2000
}
},
"DeputyOfficers": [
{
"Title": "Mr",
"FamilyName": "Dobson",
"GivenNames": "David Luke",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "PO Box 1240",
"Suburb": "Haymarket",
"State": "NSW",
"Postcode": 1240
}
},
{
"Title": "Mr",
"FamilyName": "Ofner",
"GivenNames": "Dominic",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Level 9",
"Line2": "377 Sussex Street",
"Suburb": "Sydney",
"State": "NSW",
"Postcode": 2000
}
},
{
"Title": "Mr",
"FamilyName": "Simon",
"GivenNames": "George",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "Level 9",
"Line2": "377 Sussex Street",
"Suburb": "Sydney",
"State": "NSW",
"Postcode": 2000
}
}
]
},
{
"Id": 229,
"Name": "Australian Labor Party (Northern Territory) Branch",
"Code": "ALP",
"Abbreviation": "Australian Labor Party",
"RegisterDate": "18 July 1984",
"AmendmentDate": "18 July 1984",
"Address": "PO Box 2026\nDARWIN NT 0801",
"Officer": {
"Title": "Mrs",
"FamilyName": "Dalton",
"GivenNames": "Karlee",
"Capacity": "Party Agent",
"Address": {
"Line1": "Ground Floor",
"Line2": "38 Woods Street",
"Suburb": "Darwin",
"State": "NT",
"Postcode": 800
}
},
"DeputyOfficers": []
},
{
"Id": 198,
"Name": "Australian Labor Party (South Australian Branch)",
"Code": "ALP",
"Abbreviation": "Australian Labor Party",
"RegisterDate": "13 June 1985",
"AmendmentDate": "13 June 1985",
"Address": "141 Gilles Street\nADELAIDE SA 5000",
"Officer": {
"Title": "Mr",
"FamilyName": "Bourke",
"GivenNames": "Aemon",
"Capacity": "Registered Officer",
"Address": {
"Line1": "141 Gilles Street",
"Suburb": "Adelaide",
"State": "SA",
"Postcode": 5000
}
},
"DeputyOfficers": []
},
{
"Id": 196,
"Name": "Australian Labor Party (State of Queensland)",
"Code": "ALP",
"Abbreviation": "Australian Labor Party",
"RegisterDate": "13 June 1985",
"AmendmentDate": "13 June 1985",
"Address": "PO Box 5032\nWEST END QLD 4101",
"Officer": {
"Title": "Ms",
"FamilyName": "Flanders",
"GivenNames": "Katherine",
"Capacity": "Party Agent",
"Address": {
"Line1": "1/16 Peel Street",
"Suburb": "South Brisbane",
"State": "QLD",
"Postcode": 4101
}
},
"DeputyOfficers": [
{
"Title": "Mr",
"FamilyName": "Beers",
"GivenNames": "Zac",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "PO Box 5032",
"Suburb": "West End",
"State": "QLD",
"Postcode": 4101
}
}
]
},
{
"Id": 31,
"Name": "Australian Labor Party (Tasmanian Branch)",
"Code": "ALP",
"Abbreviation": "Australian Labor Party",
"RegisterDate": "13 June 1985",
"AmendmentDate": "13 June 1985",
"Address": "GPO Box 1115\nHOBART TAS 7001",
"Officer": {
"Title": "Mr ",
"FamilyName": "Moore",
"GivenNames": "Jarryd",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Level 2",
"Line2": "63 Salamanca Place",
"Suburb": "Hobart",
"State": "TAS",
"Postcode": 7000
}
},
"DeputyOfficers": [
{
"Title": "Ms",
"FamilyName": "Brown",
"GivenNames": "Carol Louise",
"Address": {
"Line1": "1 Websters Road",
"Suburb": "Leslie Vale",
"State": "TAS",
"Postcode": 7054
}
}
]
},
{
"Id": 195,
"Name": "Australian Labor Party (Victorian Branch)",
"Code": "ALP",
"Abbreviation": "Australian Labor Party",
"RegisterDate": "13 June 1985",
"AmendmentDate": "13 June 1985",
"Address": "Locked Bag 3240\nMELBOURNE VIC 3001",
"Officer": {
"Title": "Mr",
"FamilyName": "Fogarty",
"GivenNames": "Jett",
"Capacity": "Party Agent",
"Address": {
"Line1": "438 Docklands Drive",
"Suburb": "Docklands",
"State": "VIC",
"Postcode": 3008
}
},
"DeputyOfficers": [
{
"Title": "Mr",
"FamilyName": "Staikos",
"GivenNames": "Efstratios Steven",
"Capacity": "Secretary",
"Address": {
"Line1": "438 Docklands Drive",
"Suburb": "Docklands",
"State": "VIC",
"Postcode": 3008
}
},
{
"Title": "Ms",
"FamilyName": "Sadkiewicz",
"GivenNames": "Mikaela",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "438 Docklands Drive",
"Suburb": "Docklands",
"State": "VIC",
"Postcode": 3008
}
}
]
},
{
"Id": 197,
"Name": "Australian Labor Party (Western Australian Branch)",
"Code": "ALP",
"Abbreviation": "Australian Labor Party",
"RegisterDate": "13 June 1985",
"AmendmentDate": "13 June 1985",
"Address": "PO Box 8117\nPERTH BUSINESS CENTRE WA 6849",
"Officer": {
"Title": "Ms",
"FamilyName": "Whiteaker",
"GivenNames": "Eleanor Elizabeth Margaret",
"Capacity": "Party Agent",
"Address": {
"Line1": "85 Havelock Street",
"Suburb": "West Perth",
"State": "WA",
"Postcode": 6005
}
},
"DeputyOfficers": [
{
"Title": "Ms",
"FamilyName": "Cayoun",
"GivenNames": "Lauren Annie",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "85 Havelock Street",
"Suburb": "West Perth",
"State": "WA",
"Postcode": 6005
}
}
]
}
]
},
{
"Id": 1523,
"Name": "Australia's Voice",
"Code": "Australia's Voice",
"Abbreviation": "Australia's Voice",
"RegisterDate": "17 December 2024",
"AmendmentDate": "17 December 2024",
"Address": "112/1 Anthony Rolfe Avenue\nGUNGAHLIN ACT 2912",
"Officer": {
"Title": "Senator",
"FamilyName": "Payman",
"GivenNames": "Fatima",
"Capacity": "Registered Officer",
"Address": {
"Line1": "112/1 Anthony Rolfe Avenue",
"Suburb": "Gungahlin",
"State": "ACT",
"Postcode": 2912
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1388,
"Name": "Centre Alliance",
"Code": "Centre Alliance",
"Abbreviation": "Centre Alliance",
"RegisterDate": "1 July 2013",
"AmendmentDate": "1 July 2013",
"Address": "PO Box 3192\nUNLEY SA 5061",
"Officer": {
"Title": "Ms",
"FamilyName": "Sharkie",
"GivenNames": "Rebekha",
"Capacity": "Registered Officer",
"Address": {
"Line1": "58 Adelaide Road",
"Suburb": "Mount Barker",
"State": "SA",
"Postcode": 5251
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 26,
"Name": "Country Liberal Party (NT)",
"Code": "NT CLP",
"Abbreviation": "NT CLP",
"RegisterDate": "18 July 1984",
"AmendmentDate": "18 July 1984",
"Address": "PO Box 4194\nDARWIN NT 0801",
"Officer": {
"Title": "Mr",
"FamilyName": "Delosa",
"GivenNames": "Michael",
"Capacity": "Party Agent",
"Address": {
"Line1": "2/229 McMillans Road",
"Suburb": "Jingili",
"State": "NT",
"Postcode": 810
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1514,
"Name": "Dai Le & Frank Carbone W.S.C.",
"Code": "Frank Carbone Western Sydney Community",
"Abbreviation": "Frank Carbone Western Sydney Community",
"RegisterDate": "8 August 2023",
"AmendmentDate": "8 August 2023",
"Address": "68A Canley Vale Road\nCANLEY VALE NSW 2166",
"Officer": {
"Title": "Ms",
"FamilyName": "Le",
"GivenNames": "Dai",
"Capacity": "Registered Officer",
"Address": {
"Line1": "68A Canley Vale Road",
"Suburb": "Canley Vale",
"State": "NSW",
"Postcode": 2166
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1507,
"Name": "David Pocock",
"Code": "David Pocock",
"Abbreviation": "David Pocock",
"RegisterDate": "18 March 2022",
"AmendmentDate": "18 March 2022",
"Address": "Level 1\n33 Allara Street\nCANBERRA ACT 2601",
"Officer": {
"Title": "Mr",
"FamilyName": "Cummings",
"GivenNames": "Glenn",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Level 1",
"Line2": "33 Allara Street",
"Suburb": "Canberra",
"State": "ACT",
"Postcode": 2601
}
},
"DeputyOfficers": [
{
"Title": "Mr",
"FamilyName": "Reid",
"GivenNames": "Colin",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "Level 1",
"Line2": "33 Allara Street",
"Suburb": "Canberra",
"State": "ACT",
"Postcode": 2601
}
}
],
"Branches": []
},
{
"Id": 1517,
"Name": "Family First Party Australia",
"Code": "Family First",
"Abbreviation": "Family First",
"RegisterDate": "20 September 2024",
"AmendmentDate": "20 September 2024",
"Address": "PO Box 894\nCHATSWOOD NSW 2057",
"Officer": {
"Title": "Mr",
"FamilyName": "Kenyon",
"GivenNames": "Thomas Richard",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Level 20 Tower A The Zenith",
"Line2": "821 Pacific Highway",
"Suburb": "Chatswood",
"State": "NSW",
"Postcode": 2067
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1481,
"Name": "FUSION: Science, Pirate, Secular, Climate Emergency",
"Code": "FUSION",
"Abbreviation": "FUSION",
"RegisterDate": "11 October 2019",
"AmendmentDate": "11 October 2019",
"Address": "254 McLeod Lane\nMANSFIELD VIC 3722",
"Officer": {
"Title": "Ms",
"FamilyName": "Cordner Hunt",
"GivenNames": "Kammy",
"Capacity": "Registered Officer",
"Address": {
"Line1": "254 McLeod Lane",
"Suburb": "Mansfield",
"State": "VIC",
"Postcode": 3722
}
},
"DeputyOfficers": [
{
"Title": "Mr",
"FamilyName": "Woodings",
"GivenNames": "Adam",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "35 Olympus Loop",
"Suburb": "Merriwa",
"State": "WA",
"Postcode": 6030
}
},
{
"Title": "Mr",
"FamilyName": "Jago",
"GivenNames": "Alexander Benjamin",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "2 Torcasio Court",
"Suburb": "Brendale",
"State": "QLD",
"Postcode": 4500
}
},
{
"Title": "Mr",
"FamilyName": "Finno",
"GivenNames": "Andrea",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "14/2-6 Schwebel Street",
"Suburb": "Marrickville",
"State": "NSW",
"Postcode": 2204
}
},
{
"Title": "Mr",
"FamilyName": "Wolfendale ",
"GivenNames": "Drew Rhys",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "57 Sixth Avenue",
"Suburb": "St Peters",
"State": "SA",
"Postcode": 5069
}
}
],
"Branches": []
},
{
"Id": 1521,
"Name": "Gerard Rennick People First",
"Code": "Gerard Rennick People First",
"Abbreviation": "Gerard Rennick People First",
"RegisterDate": "5 December 2024",
"AmendmentDate": "5 December 2024",
"Address": "Level 1, 1024 Ann Street\nFORTITUDE VALLEY QLD 4006",
"Officer": {
"Title": "Mrs",
"FamilyName": "Eaton",
"GivenNames": "Stephanie",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Level 1, 1024 Ann Street",
"Suburb": "Fortitude Valley",
"State": "QLD",
"Postcode": 4006
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1496,
"Name": "Indigenous - Aboriginal Party of Australia",
"Code": "Indigenous Party of Australia",
"Abbreviation": "Indigenous Party of Australia",
"RegisterDate": "29 November 2021",
"AmendmentDate": "29 November 2021",
"Address": "13 Hood St\nThe Mallee\nWILCANNIA NSW 2836",
"Officer": {
"Title": "Mr",
"FamilyName": "Whyman",
"GivenNames": "Owen",
"Capacity": "Registered Officer",
"Address": {
"Line1": "13 Hood Street",
"Line2": "The Mallee",
"Suburb": "Wilcannia",
"State": "NSW",
"Postcode": 2836
}
},
"DeputyOfficers": [
{
"Title": "Mr",
"FamilyName": "Cookson",
"GivenNames": "Jonathan",
"Capacity": "Deputy Registered Officer",
"Address": {
"Line1": "69 Roseleigh Street",
"Suburb": "KALINGA",
"State": "QLD",
"Postcode": 4030
}
}
],
"Branches": []
},
{
"Id": 1408,
"Name": "Jacqui Lambie Network",
"Code": "JLN",
"Abbreviation": "JLN",
"RegisterDate": "14 May 2015",
"AmendmentDate": "14 May 2015",
"Address": "PO Box 256\nBURNIE TAS 7320",
"Officer": {
"Title": "Senator",
"FamilyName": "Lambie",
"GivenNames": "Jacquiline",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Level 6, Reserve Bank Building, Macquarie Street ",
"Suburb": "Hobart",
"State": "TAS",
"Postcode": 7000
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1346,
"Name": "Katter's Australian Party (KAP)",
"Code": "KAP",
"Abbreviation": "KAP",
"RegisterDate": "27 September 2011",
"AmendmentDate": "27 September 2011",
"Address": "PO Box 1022\nTOWNSVILLE QLD 4810",
"Officer": {
"Title": "Ms",
"FamilyName": "Boschen",
"GivenNames": "Shannan Christine",
"Capacity": "Registered Officer",
"Address": {
"Line1": "2/321 Sturt Street",
"Suburb": "Townsville",
"State": "QLD",
"Postcode": 4810
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1504,
"Name": "Kim for Canberra",
"Code": "Kim for Canberra",
"Abbreviation": "Kim for Canberra",
"RegisterDate": "18 January 2022",
"AmendmentDate": "18 January 2022",
"Address": "Level 6, 9 Barrack Street\nSYDNEY NSW 2000",
"Officer": {
"Title": "Ms",
"FamilyName": "Rubenstein",
"GivenNames": "Kim",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Suite 259 M Centre",
"Line2": "11 Palmerston Lane",
"Suburb": "Manuka",
"State": "ACT",
"Postcode": 2603
}
},
"DeputyOfficers": [],
"Branches": []
},
{
"Id": 1332,
"Name": "Legalise Cannabis Australia",
"Code": "Legalise Cannabis Party",
"Abbreviation": "Legalise Cannabis Party",
"RegisterDate": "23 September 2010",
"AmendmentDate": "23 September 2010",
"Address": "GPO Box 3426\nSYDNEY NSW 2001",
"Officer": {
"Title": "Mr",
"FamilyName": "Ellis",
"GivenNames": "Craig",
"Capacity": "Registered Officer",
"Address": {
"Line1": "Suite 302",
"Line2": "183 Macquarie Street",
"Suburb": "Sydney",
"State": "NSW",
"Postcode": 2000
}
},