-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasgs-code.ttl
More file actions
1128 lines (865 loc) · 48.1 KB
/
asgs-code.ttl
File metadata and controls
1128 lines (865 loc) · 48.1 KB
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
@prefix : <http://linked.data.gov.au/def/asgs/code#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix sf: <http://www.opengis.net/ont/sf#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix asgs: <http://linked.data.gov.au/def/asgs#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sdo: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix schema: <http://schema.org/> .
@base <http://linked.data.gov.au/def/asgs/code> .
<http://linked.data.gov.au/def/asgs/code> rdf:type owl:Ontology ;
owl:imports <http://linked.data.gov.au/def/asgs> ;
dcterms:contributor <https://orcid.org/0000-0002-3884-3420> ,
"Simon J D Cox, CSIRO" ;
dcterms:created "2019-12-11" ;
dcterms:creator <https://orcid.org/0000-0002-4305-6085> ,
"Laurent Lefort, Australian Bureau of Statistics" ;
dcterms:description """<p>Australian Statistical Geography Standard (ASGS) ABS Structures and non-ABS structures</p>
<p>Ontology for the Australian Statistical Geography Standard (ASGS), a framework of statistical areas used by the Australian Bureau of Statistics (ABS) and other organisations to enable the publication of statistics that are comparable and spatially integrated. This ontology contains the definitions for the ABS Structures which are areas that the ABS designs specifically for outputting statistics.</p>
<p>Properties for specific codes and names</p>"""^^rdf:HTML ;
dcterms:modified "2019-12-11" ;
dcterms:publisher <http://linked.data.gov.au/org/abs> ;
dcterms:rights "Copyright 2018 Australian Bureau of Statistics." ;
dcterms:title "ASGS Ontology - code properties" ;
owl:deprecated "true"^^xsd:boolean .
<http://linked.data.gov.au/org/abs>
a sdo:Organization ;
sdo:name "Australian Bureau of Statistics" ;
sdo:url "https://www.abs.gov.au" ;
.
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
dcterms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dcterms:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
dcterms:publisher rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/rights
dcterms:rights rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dcterms:title rdf:type owl:AnnotationProperty .
#################################################################
# Data properties
#################################################################
### http://linked.data.gov.au/def/asgs#addCode2011
asgs:addCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:AustralianDrainageDivision ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs> ,
<http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "addCode2011" ;
rdfs:seeAlso asgs:AustralianDrainageDivision .
### http://linked.data.gov.au/def/asgs#addCode2016
asgs:addCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:AustralianDrainageDivision ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs> ,
<http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "addCode2016" ;
rdfs:seeAlso asgs:AustralianDrainageDivision .
### http://linked.data.gov.au/def/asgs#addName2011
asgs:addName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:AustralianDrainageDivision ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs> ,
<http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "addName2011" ;
rdfs:seeAlso asgs:AustralianDrainageDivision .
### http://linked.data.gov.au/def/asgs#addName2016
asgs:addName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:AustralianDrainageDivision ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs> ,
<http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "addName2016" ;
rdfs:seeAlso asgs:AustralianDrainageDivision .
### http://linked.data.gov.au/def/asgs#ausCode2011
asgs:ausCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:Country ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs> ,
<http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "ausCode2011" ;
rdfs:seeAlso asgs:Country .
### http://linked.data.gov.au/def/asgs#ausCode2016
asgs:ausCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:Country ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs> ,
<http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "ausCode2016" ;
rdfs:seeAlso asgs:Country .
### http://linked.data.gov.au/def/asgs#code
asgs:code rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf dcterms:identifier ;
rdfs:domain asgs:Feature ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "code" ;
rdfs:seeAlso asgs:Feature .
### http://linked.data.gov.au/def/asgs#dzn5dig11
asgs:dzn5dig11 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:DestinationZone ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "dzn5dig11" ;
rdfs:seeAlso asgs:DestinationZone .
### http://linked.data.gov.au/def/asgs#dznCode11
asgs:dznCode11 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:DestinationZone ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "dznCode11" ;
rdfs:seeAlso asgs:DestinationZone .
### http://linked.data.gov.au/def/asgs#dznCode2016
asgs:dznCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:DestinationZone ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "dznCode2016" ;
rdfs:seeAlso asgs:DestinationZone .
### http://linked.data.gov.au/def/asgs#gccsaCode2011
asgs:gccsaCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:GreaterCapitalCityStatisticalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "gccsaCode2011" ;
rdfs:seeAlso asgs:GreaterCapitalCityStatisticalArea .
### http://linked.data.gov.au/def/asgs#gccsaCode2016
asgs:gccsaCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:GreaterCapitalCityStatisticalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "gccsaCode2016" ;
rdfs:seeAlso asgs:GreaterCapitalCityStatisticalArea .
### http://linked.data.gov.au/def/asgs#gccsaName2011
asgs:gccsaName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:GreaterCapitalCityStatisticalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "gccsaName2011" ;
rdfs:seeAlso asgs:GreaterCapitalCityStatisticalArea .
### http://linked.data.gov.au/def/asgs#gccsaName2016
asgs:gccsaName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:GreaterCapitalCityStatisticalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "gccsaName2016" ;
rdfs:seeAlso asgs:GreaterCapitalCityStatisticalArea .
### http://linked.data.gov.au/def/asgs#greaterCapitalCityStatisticalAreasGccsa5CharacterAlphanumericCode
asgs:greaterCapitalCityStatisticalAreasGccsa5CharacterAlphanumericCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:GreaterCapitalCityStatisticalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Greater Capital City Statistical Areas (GCCSA) 5-character alphanumeric code" ;
rdfs:seeAlso asgs:GreaterCapitalCityStatisticalArea .
### http://linked.data.gov.au/def/asgs#iareCode2011
asgs:iareCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iareCode2011" ;
rdfs:seeAlso asgs:IndigenousArea .
### http://linked.data.gov.au/def/asgs#iareCode2016
asgs:iareCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iareCode2016" ;
rdfs:seeAlso asgs:IndigenousArea .
### http://linked.data.gov.au/def/asgs#iareName2011
asgs:iareName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:IndigenousArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iareName2011" ;
rdfs:seeAlso asgs:IndigenousArea .
### http://linked.data.gov.au/def/asgs#iareName2016
asgs:iareName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:IndigenousArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iareName2016" ;
rdfs:seeAlso asgs:IndigenousArea .
### http://linked.data.gov.au/def/asgs#ilocCode2011
asgs:ilocCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousLocation ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "ilocCode2011" ;
rdfs:seeAlso asgs:IndigenousLocation .
### http://linked.data.gov.au/def/asgs#ilocCode2016
asgs:ilocCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousLocation ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "ilocCode2016" ;
rdfs:seeAlso asgs:IndigenousLocation .
### http://linked.data.gov.au/def/asgs#ilocName2011
asgs:ilocName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:IndigenousLocation ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "ilocName2011" ;
rdfs:seeAlso asgs:IndigenousLocation .
### http://linked.data.gov.au/def/asgs#ilocName2016
asgs:ilocName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:IndigenousLocation ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "ilocName2016" ;
rdfs:seeAlso asgs:IndigenousLocation .
### http://linked.data.gov.au/def/asgs#indigenousAreas6DigitCode
asgs:indigenousAreas6DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Indigenous Areas 6-digit code" ;
rdfs:seeAlso asgs:IndigenousArea .
### http://linked.data.gov.au/def/asgs#indigenousRegions3DigitCode
asgs:indigenousRegions3DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Indigenous Regions 3-digit code" ;
rdfs:seeAlso asgs:IndigenousRegion .
### http://linked.data.gov.au/def/asgs#iregCode2011
asgs:iregCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iregCode2011" ;
rdfs:seeAlso asgs:IndigenousRegion .
### http://linked.data.gov.au/def/asgs#iregCode2016
asgs:iregCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:IndigenousRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iregCode2016" ;
rdfs:seeAlso asgs:IndigenousRegion .
### http://linked.data.gov.au/def/asgs#iregName2011
asgs:iregName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:IndigenousRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iregName2011" ;
rdfs:seeAlso asgs:IndigenousRegion .
### http://linked.data.gov.au/def/asgs#iregName2016
asgs:iregName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:IndigenousRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "iregName2016" ;
rdfs:seeAlso asgs:IndigenousRegion .
### http://linked.data.gov.au/def/asgs#label
asgs:label rdf:type owl:DatatypeProperty .
### http://linked.data.gov.au/def/asgs#lgaCode2012
asgs:lgaCode2012 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:LocalGovernmentArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "lgaCode2012" ;
rdfs:seeAlso asgs:LocalGovernmentArea .
### http://linked.data.gov.au/def/asgs#lgaName2012
asgs:lgaName2012 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:LocalGovernmentArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "lgaName2012" ;
rdfs:seeAlso asgs:LocalGovernmentArea .
### http://linked.data.gov.au/def/asgs#mbCode2011
asgs:mbCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:MeshBlock ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "mbCode2011" ;
rdfs:seeAlso asgs:MeshBlock .
### http://linked.data.gov.au/def/asgs#mbCode2016
asgs:mbCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:MeshBlock ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "mbCode2016" ;
rdfs:seeAlso asgs:MeshBlock .
### http://linked.data.gov.au/def/asgs#nrmrCode2011
asgs:nrmrCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:NaturalResourceManagementRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "nrmrCode2011" ;
rdfs:seeAlso asgs:NaturalResourceManagementRegion .
### http://linked.data.gov.au/def/asgs#nrmrCode2016
asgs:nrmrCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:NaturalResourceManagementRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "nrmrCode2016" ;
rdfs:seeAlso asgs:NaturalResourceManagementRegion .
### http://linked.data.gov.au/def/asgs#nrmrName2011
asgs:nrmrName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:NaturalResourceManagementRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "nrmrName2011" ;
rdfs:seeAlso asgs:NaturalResourceManagementRegion .
### http://linked.data.gov.au/def/asgs#nrmrName2016
asgs:nrmrName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:NaturalResourceManagementRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "nrmrName2016" ;
rdfs:seeAlso asgs:NaturalResourceManagementRegion .
### http://linked.data.gov.au/def/asgs#poaCode2011
asgs:poaCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:PostalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "poaCode2011" ;
rdfs:seeAlso asgs:PostalArea .
### http://linked.data.gov.au/def/asgs#poaCode2016
asgs:poaCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:PostalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "poaCode2016" ;
rdfs:seeAlso asgs:PostalArea .
### http://linked.data.gov.au/def/asgs#poaName2011
asgs:poaName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "poaName2011" .
### http://linked.data.gov.au/def/asgs#poaName2016
asgs:poaName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:PostalArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "poaName2016" ;
rdfs:seeAlso asgs:PostalArea .
### http://linked.data.gov.au/def/asgs#raCode2011
asgs:raCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:RemotenessArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "raCode2011" ;
rdfs:seeAlso asgs:RemotenessArea .
### http://linked.data.gov.au/def/asgs#raCode2016
asgs:raCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:RemotenessArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "raCode2016" ;
rdfs:seeAlso asgs:RemotenessArea .
### http://linked.data.gov.au/def/asgs#raName2011
asgs:raName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:RemotenessArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "raName2011" ;
rdfs:seeAlso asgs:RemotenessArea .
### http://linked.data.gov.au/def/asgs#raName2016
asgs:raName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:RemotenessArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "raName2016" ;
rdfs:seeAlso asgs:RemotenessArea .
### http://linked.data.gov.au/def/asgs#sa1Maincode2011
asgs:sa1Maincode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel1 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa1Maincode2011" ;
rdfs:seeAlso asgs:StatisticalAreaLevel1 .
### http://linked.data.gov.au/def/asgs#sa1Maincode2016
asgs:sa1Maincode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel1 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa1Maincode2016" ;
rdfs:seeAlso asgs:StatisticalAreaLevel1 .
### http://linked.data.gov.au/def/asgs#sa2Maincode2011
asgs:sa2Maincode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel2 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa2Maincode2011" ;
rdfs:seeAlso asgs:StatisticalAreaLevel2 .
### http://linked.data.gov.au/def/asgs#sa2Maincode2016
asgs:sa2Maincode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel2 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa2Maincode2016" ;
rdfs:seeAlso asgs:StatisticalAreaLevel2 .
### http://linked.data.gov.au/def/asgs#sa2Name2011
asgs:sa2Name2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StatisticalAreaLevel2 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa2Name2011" ;
rdfs:seeAlso asgs:StatisticalAreaLevel2 .
### http://linked.data.gov.au/def/asgs#sa2Name2016
asgs:sa2Name2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StatisticalAreaLevel2 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa2Name2016" ;
rdfs:seeAlso asgs:StatisticalAreaLevel2 .
### http://linked.data.gov.au/def/asgs#sa3Code2011
asgs:sa3Code2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel3 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa3Code2011" ;
rdfs:seeAlso asgs:StatisticalAreaLevel3 .
### http://linked.data.gov.au/def/asgs#sa3Code2016
asgs:sa3Code2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel3 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa3Code2016" ;
rdfs:seeAlso asgs:StatisticalAreaLevel3 .
### http://linked.data.gov.au/def/asgs#sa3Name2011
asgs:sa3Name2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StatisticalAreaLevel3 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa3Name2011" ;
rdfs:seeAlso asgs:StatisticalAreaLevel3 .
### http://linked.data.gov.au/def/asgs#sa3Name2016
asgs:sa3Name2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StatisticalAreaLevel3 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa3Name2016" ;
rdfs:seeAlso asgs:StatisticalAreaLevel3 .
### http://linked.data.gov.au/def/asgs#sa4Code2011
asgs:sa4Code2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel4 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa4Code2011" ;
rdfs:seeAlso asgs:StatisticalAreaLevel4 .
### http://linked.data.gov.au/def/asgs#sa4Code2016
asgs:sa4Code2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel4 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa4Code2016" ;
rdfs:seeAlso asgs:StatisticalAreaLevel4 .
### http://linked.data.gov.au/def/asgs#sa4Name2011
asgs:sa4Name2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StatisticalAreaLevel4 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa4Name2011" ;
rdfs:seeAlso asgs:StatisticalAreaLevel4 .
### http://linked.data.gov.au/def/asgs#sa4Name2016
asgs:sa4Name2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StatisticalAreaLevel4 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sa4Name2016" ;
rdfs:seeAlso asgs:StatisticalAreaLevel4 .
### http://linked.data.gov.au/def/asgs#sectionOfState2DigitCode
asgs:sectionOfState2DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SectionOfState ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Section of state 2-digit code" ;
rdfs:seeAlso asgs:SectionOfState .
### http://linked.data.gov.au/def/asgs#sectionOfStateRange3DigitCode
asgs:sectionOfStateRange3DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SectionOfStateRange ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Section of state range 3-digit code" ;
rdfs:seeAlso asgs:SectionOfStateRange .
### http://linked.data.gov.au/def/asgs#sedCode2011
asgs:sedCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StateElectoralDivision ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "SED code 2011" ;
rdfs:seeAlso asgs:StateElectoralDivision .
### http://linked.data.gov.au/def/asgs#sedCode2016
asgs:sedCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StateElectoralDivision ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "SED code 2016" ;
rdfs:seeAlso asgs:StateElectoralDivision .
### http://linked.data.gov.au/def/asgs#sosCode2011
asgs:sosCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SectionOfState ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosCode2011" ;
rdfs:seeAlso asgs:SectionOfState .
### http://linked.data.gov.au/def/asgs#sosCode2016
asgs:sosCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SectionOfState ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosCode2016" ;
rdfs:seeAlso asgs:SectionOfState .
### http://linked.data.gov.au/def/asgs#sosName2011
asgs:sosName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:SectionOfState ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosName2011" ;
rdfs:seeAlso asgs:SectionOfState .
### http://linked.data.gov.au/def/asgs#sosName2016
asgs:sosName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:SectionOfState ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosName2016" ;
rdfs:seeAlso asgs:SectionOfState .
### http://linked.data.gov.au/def/asgs#sosrCode2011
asgs:sosrCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SectionOfStateRange ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosrCode2011" ;
rdfs:seeAlso asgs:SectionOfStateRange .
### http://linked.data.gov.au/def/asgs#sosrCode2016
asgs:sosrCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SectionOfStateRange ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosrCode2016" ;
rdfs:seeAlso asgs:SectionOfStateRange .
### http://linked.data.gov.au/def/asgs#sosrName2011
asgs:sosrName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:SectionOfStateRange ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosrName2011" ;
rdfs:seeAlso asgs:SectionOfStateRange .
### http://linked.data.gov.au/def/asgs#sosrName2016
asgs:sosrName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:SectionOfStateRange ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sosrName2016" ;
rdfs:seeAlso asgs:SectionOfStateRange .
### http://linked.data.gov.au/def/asgs#sscCode2016
asgs:sscCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StateSuburb ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sscCode2016" ;
rdfs:seeAlso asgs:StateSuburb .
### http://linked.data.gov.au/def/asgs#sscName2016
asgs:sscName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StateSuburb ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "sscName2016" ;
rdfs:seeAlso asgs:StateSuburb .
### http://linked.data.gov.au/def/asgs#stateCode2011
asgs:stateCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StateOrTerritory ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "stateCode2011" ;
rdfs:seeAlso asgs:StateOrTerritory .
### http://linked.data.gov.au/def/asgs#stateCode2016
asgs:stateCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StateOrTerritory ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "stateCode2016" ;
rdfs:seeAlso asgs:StateOrTerritory .
### http://linked.data.gov.au/def/asgs#stateName2011
asgs:stateName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StateOrTerritory ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "stateName2011" ;
rdfs:seeAlso asgs:StateOrTerritory .
### http://linked.data.gov.au/def/asgs#stateName2016
asgs:stateName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:StateOrTerritory ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "stateName2016" ;
rdfs:seeAlso asgs:StateOrTerritory .
### http://linked.data.gov.au/def/asgs#stateOrTerritory1DigitCode
asgs:stateOrTerritory1DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StateOrTerritory ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "State or Territory 1 digit code" ;
rdfs:seeAlso asgs:StateOrTerritory .
### http://linked.data.gov.au/def/asgs#stateelectoraldivisionIdentifier
asgs:stateelectoraldivisionIdentifier rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StateElectoralDivision ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "stateelectoraldivisionIdentifier" ;
rdfs:seeAlso asgs:StateElectoralDivision .
### http://linked.data.gov.au/def/asgs#statisticalArea1Sa111DigitCode
asgs:statisticalArea1Sa111DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel1 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Statistical area 1 (SA1) 11-digit code" ;
rdfs:seeAlso asgs:StatisticalAreaLevel1 .
### http://linked.data.gov.au/def/asgs#statisticalArea2Sa29DigitCode
asgs:statisticalArea2Sa29DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel2 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Statistical area 2 (SA2) 9-digit code" ;
rdfs:seeAlso asgs:StatisticalAreaLevel2 .
### http://linked.data.gov.au/def/asgs#statisticalArea3Sa35DigitCode
asgs:statisticalArea3Sa35DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel3 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Statistical area 3 (SA3) 5-digit code" ;
rdfs:seeAlso asgs:StatisticalAreaLevel3 .
### http://linked.data.gov.au/def/asgs#statisticalArea4Sa43DigitCode
asgs:statisticalArea4Sa43DigitCode rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:StatisticalAreaLevel4 ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "Statistical area 4 (SA4) 3-digit code" ;
rdfs:seeAlso asgs:StatisticalAreaLevel4 .
### http://linked.data.gov.au/def/asgs#suaCode2011
asgs:suaCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SignificantUrbanArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "suaCode2011" ;
rdfs:seeAlso asgs:SignificantUrbanArea .
### http://linked.data.gov.au/def/asgs#suaCode2016
asgs:suaCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:SignificantUrbanArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "suaCode2016" ;
rdfs:seeAlso asgs:SignificantUrbanArea .
### http://linked.data.gov.au/def/asgs#suaName2011
asgs:suaName2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:SignificantUrbanArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "suaName2011" ;
rdfs:seeAlso asgs:SignificantUrbanArea .
### http://linked.data.gov.au/def/asgs#suaName2016
asgs:suaName2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:label ;
rdfs:domain asgs:SignificantUrbanArea ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "suaName2016" ;
rdfs:seeAlso asgs:SignificantUrbanArea .
### http://linked.data.gov.au/def/asgs#trCode2011
asgs:trCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:TourismRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "trCode2011" ;
rdfs:seeAlso asgs:TourismRegion .
### http://linked.data.gov.au/def/asgs#trCode2012
asgs:trCode2012 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:TourismRegion ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "trCode2012" ;
rdfs:seeAlso asgs:TourismRegion .
### http://linked.data.gov.au/def/asgs#uclCode2011
asgs:uclCode2011 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:UrbanCentreAndLocality ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "uclCode2011" ;
rdfs:seeAlso asgs:UrbanCentreAndLocality .
### http://linked.data.gov.au/def/asgs#uclCode2016
asgs:uclCode2016 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf asgs:code ;
rdfs:domain asgs:UrbanCentreAndLocality ;
rdfs:range xsd:string ;
rdfs:isDefinedBy <http://linked.data.gov.au/def/asgs/code> ;
rdfs:label "uclCode2016" ;
rdfs:seeAlso asgs:UrbanCentreAndLocality .
### http://linked.data.gov.au/def/asgs#uclName2011