-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdataset.html
More file actions
5452 lines (5452 loc) · 296 KB
/
Copy pathdataset.html
File metadata and controls
5452 lines (5452 loc) · 296 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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Dataset Ontology</title>
<link href="http://www.linked.data.gov.au/theme/owl.css" rel="stylesheet" type="text/css">
<link href="http://www.linked.data.gov.au/theme/Primer.css" rel="stylesheet" type="text/css">
<link href="http://www.linked.data.gov.au/theme/rec.css" rel="stylesheet" type="text/css">
<link href="http://www.linked.data.gov.au/theme/extra.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="head">
<h1>Dataset Ontology</h1>
<dl>
<dt>
IRI:
</dt>
<dd>
http://linked.data.gov.au/def/dataset
</dd>
<dt>
Version IRI:
</dt>
<dd>
http://linked.data.gov.au/def/dataset/1.0
</dd>
</dl>
<dl>
<dt>
Current version:
</dt>
<dd>
1.0
</dd>
<dt>
Previous version:
</dt>
<dd>
<a href="https://github.com/AGLDWG/TR/blob/master/government.ttl">https://github.com/AGLDWG/TR/blob/master/government.ttl</a>
</dd>
</dl>
<dl>
<dt>
Contributors:
</dt>
<dd>
<a href="mailto:armin.haller@anu.edu.au">armin.haller@anu.edu.au</a>
</dd>
<dd>
<a href="mailto:d.lowe@bom.gov.au">d.lowe@bom.gov.au</a>
</dd>
<dd>
<a href="mailto:nicholas.car@csiro.au">nicholas.car@csiro.au</a>
</dd>
<dd>
<a href="mailto:simon.cox@csiro.au">simon.cox@csiro.au</a>
</dd>
</dl>
<dl>
<dt>
Publisher:
</dt>
<dd>
Australian Government Linked Data Working Group
</dd>
</dl>
<dl>
<dt>
Imported Ontologies:
</dt>
<dd>
<a href="http://www.opengis.net/ont/geosparql">http://www.opengis.net/ont/geosparql</a>
</dd>
<dd>
<a href="http://www.w3.org/2006/time">http://www.w3.org/2006/time</a>
</dd>
<dd>
<a href="http://www.w3.org/2006/vcard/ns">http://www.w3.org/2006/vcard/ns</a>
</dd>
<dd>
<a href="http://www.w3.org/ns/dcat">http://www.w3.org/ns/dcat</a>
</dd>
<dd>
<a href="http://www.w3.org/ns/prov-o">http://www.w3.org/ns/prov-o</a>
</dd>
</dl>
<dl>
<dt>
Ontology source:
</dt>
<dd>
<a href="http://linked.data.gov.au/def/dataset.ttl">RDF (turtle)</a>
</dd>
</dl>
</div>
<hr>
<h2>Abstract</h2>
<p>The data.gov.au Dataset Ontology is an OWL ontology designed to describe the characteristics of datasets published on data.gov.au.</p> <p>The ontology contains elements which describe the publication, update, origin, governance, spatial and temporal coverage and other contextual information about the dataset. The ontology also covers aspects of organisational custodianship and governance.</p> <p>By using this ontology to describe datasets on data.gov.au publishers increase discoverability and enable the consumption of this information in other applications/systems as Linked Data. It further enables decentralised publishing of catalogs and facilitates federated dataset search across sites, e.g. in datasets that are published by the States.</p> <p>Other publishers of Linked Data may make assertions about data published using this ontology, e.g. they may publish information about the use of the dataset in other applications.</p>
<div id="toc">
<h2>Table of Content</h2>
<ol>
<li><a href="#classes">Classes</a></li>
<li><a href="#objectproperties">Object Properties</a></li>
<li><a href="#dataproperties">Data Properties</a></li>
<li><a href="#namedindividuals">Named Individuals</a></li>
<li><a href="#annotationproperties">Annotation Properties</a></li>
<li><a href="#namespacedeclarations">Namespace Declarations</a></li>
</ol>
</div>
<div id="diagram">
<img src="dataset.png" alt="Dataset ontology diagram" style="width: 900px;" />
</div>
<div id="classes">
<h2>Classes</h2>
<ul class="hlist">
<li><a href="#d4e2465" title="http://purl.org/dc/terms/AgentClass"><span>Agent Class</span></a></li>
<li><a href="#d4e2587" title="http://www.agls.gov.au/agls/terms/AGLSAgentClass">AGLS Agent Class</a></li>
<li><a href="#d4e2712" title="http://www.agls.gov.au/agls/terms/agls-audience">AGLS Audience Vocabulary</a></li>
<li><a href="#AssociatedOrganisation" title="http://linked.data.gov.au/def/dataset#AssociatedOrganisation"><span>associated organisation</span></a></li>
<li><a href="#d4e2615" title="http://www.agls.gov.au/agls/terms/AvailClass">Availability Class</a></li>
<li><a href="#Catalog" title="http://linked.data.gov.au/def/dataset#Catalog">Catalog</a></li>
<li><a href="#Classifier" title="http://linked.data.gov.au/def/dataset#Classifier"><span>classifier</span></a></li>
<li><a href="#Dataset" title="http://linked.data.gov.au/def/dataset#Dataset">Dataset</a></li>
<li><a href="#DatasetChangeEvent" title="http://linked.data.gov.au/def/dataset#DatasetChangeEvent">Dataset Change Event</a></li>
<li><a href="#MaintenanceResponsibility" title="http://linked.data.gov.au/def/dataset#MaintenanceResponsibility">Dataset Maintenance Arrangement</a></li>
<li><a href="#DatasetPublicationEvent" title="http://linked.data.gov.au/def/dataset#DatasetPublicationEvent">Dataset Publication Event</a></li>
<li><a href="#Distribution" title="http://linked.data.gov.au/def/dataset#Distribution">Distribution</a></li>
<li><a href="#Document" title="http://linked.data.gov.au/def/dataset#Document">Document</a></li>
<li><a href="#d4e2634" title="http://www.agls.gov.au/agls/terms/DocumentClass">Document Class</a></li>
<li><a href="#Federal" title="http://linked.data.gov.au/def/dataset#Federal">Federal Government</a></li>
<li><a href="#FieldOfResearch" title="http://linked.data.gov.au/def/dataset#FieldOfResearch">Field of Research</a></li>
<li><a href="#d4e2476" title="http://purl.org/dc/terms/FileFormat"><span>File Format</span></a></li>
<li><a href="#AGIFTFunction" title="http://linked.data.gov.au/def/dataset#AGIFTFunction">Function</a></li>
<li><a href="#d4e2654" title="http://www.agls.gov.au/agls/terms/FunctionClass">Function Class</a></li>
<li><a href="#Geometry" title="http://linked.data.gov.au/def/dataset#Geometry"><span>geometry</span></a></li>
<li><a href="#GovernmentAgency" title="http://linked.data.gov.au/def/dataset#GovernmentAgency">Government Agency</a></li>
<li><a href="#d4e2488" title="http://purl.org/dc/terms/Jurisdiction"><span>Jurisdiction</span></a></li>
<li><a href="#d4e2673" title="http://www.agls.gov.au/agls/terms/JuriClass">Jurisdiction Class</a></li>
<li><a href="#LevelOfGovernment" title="http://linked.data.gov.au/def/dataset#LevelOfGovernment">Level of Government</a></li>
<li><a href="#d4e2495" title="http://purl.org/dc/terms/LicenseDocument"><span>License Document</span></a></li>
<li><a href="#LocalGovernmentArea" title="http://linked.data.gov.au/def/dataset#LocalGovernmentArea">Local Government</a></li>
<li><a href="#Locality" title="http://linked.data.gov.au/def/dataset#Locality"><span>locality</span></a></li>
<li><a href="#d4e2507" title="http://purl.org/dc/terms/Location"><span>Location</span></a></li>
<li><a href="#d4e2519" title="http://purl.org/dc/terms/MediaType"><span>Media Type</span></a></li>
<li><a href="#Organisation" title="http://linked.data.gov.au/def/dataset#Organisation">Organisation</a></li>
<li><a href="#d4e2539" title="http://purl.org/dc/terms/PeriodOfTime"><span>Period of Time</span></a></li>
<li><a href="#d4e2546" title="http://purl.org/dc/terms/PhysicalMedium"><span>Physical Medium</span></a></li>
<li><a href="#Point" title="http://linked.data.gov.au/def/dataset#Point">Point</a></li>
<li><a href="#Polygon" title="http://linked.data.gov.au/def/dataset#Polygon">Polygon</a></li>
<li><a href="#Role" title="http://linked.data.gov.au/def/dataset#Role">Role</a></li>
<li><a href="#d4e2692" title="http://www.agls.gov.au/agls/terms/ServiceClass">Service Class</a></li>
<li><a href="#d4e2571" title="http://purl.org/dc/terms/SizeOrDuration"><span>Size or Duration</span></a></li>
<li><a href="#GazettedLocality" title="http://linked.data.gov.au/def/dataset#GazettedLocality">Spatial Gazetteer</a></li>
<li><a href="#SpatialThing" title="http://linked.data.gov.au/def/dataset#SpatialThing">Spatial Thing</a></li>
<li><a href="#StateOrTerritory" title="http://linked.data.gov.au/def/dataset#StateOrTerritory">State and Territories Government</a></li>
<li><a href="#Timelnterval" title="http://linked.data.gov.au/def/dataset#Timelnterval">Time Interval</a></li>
</ul>
<div id="d4e2465" class="entity">
<a name="http://purl.org/dc/terms/AgentClass"></a>
<h3>Agent Class<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/AgentClass</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/2000/01/rdf-schema#Class">class</span>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#d4e1625" title="http://purl.org/dc/terms/audience">Audience</a>
<sup title="object property" class="type-op">op</sup>,
<a href="#d4e1652" title="http://purl.org/dc/terms/educationLevel">Audience Education Level</a>
<sup title="object property" class="type-op">op</sup>,
<a href="#d4e1688" title="http://purl.org/dc/terms/mediator">Mediator</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
has members
</dt>
<dd>
<a href="#d4e2790" title="http://purl.org/dc/terms/Agent">Agent</a>
<sup title="named individual" class="type-ni">ni</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="d4e2587" class="entity">
<a name="http://www.agls.gov.au/agls/terms/AGLSAgentClass"></a>
<h3>AGLS Agent Class<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.agls.gov.au/agls/terms/AGLSAgentClass</p>
<dl class="definedBy">
<dt>
is defined by
</dt>
<dd>
<a href="http://www.agls.gov.au/agls/terms/">http://www.agls.gov.au/agls/terms/</a>
</dd>
</dl>
<div class="comment">
<p>A set of agent encoding schemes and/or formats</p>
</div>
</div>
<div id="d4e2712" class="entity">
<a name="http://www.agls.gov.au/agls/terms/agls-audience"></a>
<h3>AGLS Audience Vocabulary<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.agls.gov.au/agls/terms/agls-audience</p>
<dl class="definedBy">
<dt>
is defined by
</dt>
<dd>
<a href="http://www.agls.gov.au/agls/terms/">http://www.agls.gov.au/agls/terms/</a>
</dd>
</dl>
<div class="comment">
<p>The set of audience types specified by the AGLS Audience Scheme.</p>
</div>
</div>
<div id="AssociatedOrganisation" class="entity">
<a name="http://linked.data.gov.au/def/dataset#AssociatedOrganisation"></a>
<h3>associated organisation<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#AssociatedOrganisation</p>
<div class="comment">
<p>An AssociatedOrganisation is an Organisation that is responsible for an Event that changed a Dataset the Organisation is associated with.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Association">association</span>
</dd>
</dl>
</div>
<div id="d4e2615" class="entity">
<a name="http://www.agls.gov.au/agls/terms/AvailClass"></a>
<h3>Availability Class<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.agls.gov.au/agls/terms/AvailClass</p>
<dl class="definedBy">
<dt>
is defined by
</dt>
<dd>
<a href="http://www.agls.gov.au/agls/terms/">http://www.agls.gov.au/agls/terms/</a>
</dd>
</dl>
<div class="comment">
<p>A set of availability encoding schemes and/or formats</p>
</div>
</div>
<div id="Catalog" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Catalog"></a>
<h3>Catalog<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Catalog</p>
<dl class="definedBy">
<dt>
is defined by
</dt>
<dd>
http://linked.data.gov.au/def/datasetttl
</dd>
</dl>
<div class="comment">
<p>A Catalog is a curated collection of metadata about datasets.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/ns/dcat#Catalog">catalog</span>
</dd>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Entity">entity</span>
</dd>
</dl>
</div>
<div id="Classifier" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Classifier"></a>
<h3>classifier<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Classifier</p>
<div class="comment">
<p>A classifier used for Australian Government Data.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/2004/02/skos/core#Concept">concept</span>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#FieldOfResearch" title="http://linked.data.gov.au/def/dataset#FieldOfResearch">Field of Research</a>
<sup title="class" class="type-c">c</sup>,
<a href="#AGIFTFunction" title="http://linked.data.gov.au/def/dataset#AGIFTFunction">Function</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#classifiedAs" title="http://linked.data.gov.au/def/dataset#classifiedAs">classified as</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="Dataset" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Dataset"></a>
<h3>Dataset<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Dataset</p>
<div class="comment">
<p>A Dataset is a collection of resources, published or curated by an agent, and openly available for download in one or more formats.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/ns/dcat#Dataset">dataset</span>
</dd>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Entity">entity</span>
</dd>
<dd>
<a href="#d4e1681" title="http://purl.org/dc/terms/license">License</a>
<sup title="object property" class="type-op">op</sup>
<span class="logic">some</span>
<a href="#d4e2495" title="http://purl.org/dc/terms/LicenseDocument">License Document</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dd>
<a href="#agiftFunction" title="http://linked.data.gov.au/def/dataset#agiftFunction">AGIFT Theme</a>
<sup title="object property" class="type-op">op</sup>
<span class="logic">min</span> 1
</dd>
<dd>
<a href="#dateChangeEvent" title="http://linked.data.gov.au/def/dataset#dateChangeEvent">Change Event Date</a>
<sup title="data property" class="type-dp">dp</sup>
<span class="logic">some</span>
<span class="dotted" title="http://www.w3.org/2000/01/rdf-schema#Literal">literal</span>
</dd>
<dd>
<a href="#dateUpdated" title="http://linked.data.gov.au/def/dataset#dateUpdated">Update Date</a>
<sup title="data property" class="type-dp">dp</sup>
<span class="logic">some</span>
<span class="dotted" title="http://www.w3.org/2000/01/rdf-schema#Literal">literal</span>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#classifiedAs" title="http://linked.data.gov.au/def/dataset#classifiedAs">classified as</a>
<sup title="object property" class="type-op">op</sup>,
<a href="#hasDistribution" title="http://linked.data.gov.au/def/dataset#hasDistribution">has distribution</a>
<sup title="object property" class="type-op">op</sup>,
<a href="#hasPurpose" title="http://linked.data.gov.au/def/dataset#hasPurpose">has purpose</a>
<sup title="data property" class="type-dp">dp</sup>,
<a href="#hasTemporalExtent" title="http://linked.data.gov.au/def/dataset#hasTemporalExtent">has temporal extent</a>
<sup title="object property" class="type-op">op</sup>,
<a href="#isChangedBy" title="http://linked.data.gov.au/def/dataset#isChangedBy">is changed by</a>
<sup title="object property" class="type-op">op</sup>,
<a href="#isDescribedBy" title="http://linked.data.gov.au/def/dataset#isDescribedBy">is described by</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="DatasetChangeEvent" class="entity">
<a name="http://linked.data.gov.au/def/dataset#DatasetChangeEvent"></a>
<h3>Dataset Change Event<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#DatasetChangeEvent</p>
<div class="comment">
<p>A Dataset Change Event is a description of an event that happens at a given point in time and that results in any type of change to the Dataset.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Activity">activity</span>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#DatasetPublicationEvent" title="http://linked.data.gov.au/def/dataset#DatasetPublicationEvent">Dataset Publication Event</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#isAssociatedWith" title="http://linked.data.gov.au/def/dataset#isAssociatedWith">is associated with</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#isChangedBy" title="http://linked.data.gov.au/def/dataset#isChangedBy">is changed by</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="MaintenanceResponsibility" class="entity">
<a name="http://linked.data.gov.au/def/dataset#MaintenanceResponsibility"></a>
<h3>Dataset Maintenance Arrangement<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#MaintenanceResponsibility</p>
<div class="comment">
<p>Provides information about the maintenance arrangements for the dataset. At a minimum the Agent and start-time for the maintenance responsibility is required.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Activity">activity</span>
</dd>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#wasAssociatedWith">was associated with</span>
<span class="logic">min</span> 1
</dd>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#endedAtTime">ended at time</span>
<span class="logic">min</span> 0
</dd>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#startedAtTime">started at time</span>
<span class="logic">exactly</span> 1
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#maintenanceArrangement" title="http://linked.data.gov.au/def/dataset#maintenanceArrangement">maintenance arrangement</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="DatasetPublicationEvent" class="entity">
<a name="http://linked.data.gov.au/def/dataset#DatasetPublicationEvent"></a>
<h3>Dataset Publication Event<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#DatasetPublicationEvent</p>
<div class="comment">
<p>A Dataset Publication Event is a description of an event that happens at a given point in time and that results in the publication of a Dataset on data.gov.au.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#DatasetChangeEvent" title="http://linked.data.gov.au/def/dataset#DatasetChangeEvent">Dataset Change Event</a>
<sup title="class" class="type-c">c</sup>
</dd>
</dl>
</div>
<div id="Distribution" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Distribution"></a>
<h3>Distribution<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Distribution</p>
<div class="comment">
<p>A Distribution defines the available form of a Dataset, i.e. different formats of the Dataset or different type of endpoints the Dataset can be retrieved from.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/ns/dcat#Distribution">distribution</span>
</dd>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Entity">entity</span>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasDistribution" title="http://linked.data.gov.au/def/dataset#hasDistribution">has distribution</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="Document" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Document"></a>
<h3>Document<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Document</p>
<dl class="description">
<dt>
is equivalent to
</dt>
<dd>
<span class="dotted" title="http://xmlns.com/foaf/0.1/Document">document</span>
</dd>
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Entity">entity</span>
</dd>
</dl>
</div>
<div id="d4e2634" class="entity">
<a name="http://www.agls.gov.au/agls/terms/DocumentClass"></a>
<h3>Document Class<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.agls.gov.au/agls/terms/DocumentClass</p>
<dl class="definedBy">
<dt>
is defined by
</dt>
<dd>
<a href="http://www.agls.gov.au/agls/terms/">http://www.agls.gov.au/agls/terms/</a>
</dd>
</dl>
<div class="comment">
<p>A set of document encoding schemes and/or formats</p>
</div>
</div>
<div id="Federal" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Federal"></a>
<h3>Federal Government<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Federal</p>
<div class="comment">
<p>Federal Government denotes the federal democratic administrative authority of the Commonwealth of Australia.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#LevelOfGovernment" title="http://linked.data.gov.au/def/dataset#LevelOfGovernment">Level of Government</a>
<sup title="class" class="type-c">c</sup>
</dd>
</dl>
</div>
<div id="FieldOfResearch" class="entity">
<a name="http://linked.data.gov.au/def/dataset#FieldOfResearch"></a>
<h3>Field of Research<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#FieldOfResearch</p>
<div class="comment">
<p>The Field of Research defined by the Australian and New Zealand Standard Research Classification (ANZSRC) that best describes the type of methods applied to obtain the data contained within a Dataset.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#Classifier" title="http://linked.data.gov.au/def/dataset#Classifier">classifier</a>
<sup title="class" class="type-c">c</sup>
</dd>
</dl>
</div>
<div id="d4e2476" class="entity">
<a name="http://purl.org/dc/terms/FileFormat"></a>
<h3>File Format<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/FileFormat</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#d4e2519" title="http://purl.org/dc/terms/MediaType">Media Type</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="AGIFTFunction" class="entity">
<a name="http://linked.data.gov.au/def/dataset#AGIFTFunction"></a>
<h3>Function<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#AGIFTFunction</p>
<div class="comment">
<p>The Government Function defined by the Australian Governments' Interactive Functions Thesaurus that best describes the data contained within a Dataset.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#Classifier" title="http://linked.data.gov.au/def/dataset#Classifier">classifier</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#agiftFunction" title="http://linked.data.gov.au/def/dataset#agiftFunction">AGIFT Theme</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="d4e2654" class="entity">
<a name="http://www.agls.gov.au/agls/terms/FunctionClass"></a>
<h3>Function Class<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.agls.gov.au/agls/terms/FunctionClass</p>
<dl class="definedBy">
<dt>
is defined by
</dt>
<dd>
<a href="http://www.agls.gov.au/agls/terms/">http://www.agls.gov.au/agls/terms/</a>
</dd>
</dl>
<div class="comment">
<p>A set of function encoding schemes and/or formats</p>
</div>
</div>
<div id="Geometry" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Geometry"></a>
<h3>geometry<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Geometry</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#SpatialThing" title="http://linked.data.gov.au/def/dataset#SpatialThing">Spatial Thing</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dd>
<span class="dotted" title="http://www.opengis.net/ont/geosparql#Geometry">geometry</span>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#Point" title="http://linked.data.gov.au/def/dataset#Point">Point</a>
<sup title="class" class="type-c">c</sup>,
<a href="#Polygon" title="http://linked.data.gov.au/def/dataset#Polygon">Polygon</a>
<sup title="class" class="type-c">c</sup>
</dd>
</dl>
</div>
<div id="GovernmentAgency" class="entity">
<a name="http://linked.data.gov.au/def/dataset#GovernmentAgency"></a>
<h3>Government Agency<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#GovernmentAgency</p>
<div class="comment">
<p>A Government Agency is a kind of Organisation in the Commonwealth of Australia that is a distinct and recognisable body which has responsibility for carrying out administrative functions.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#Organisation" title="http://linked.data.gov.au/def/dataset#Organisation">Organisation</a>
<sup title="class" class="type-c">c</sup>
</dd>
</dl>
</div>
<div id="d4e2488" class="entity">
<a name="http://purl.org/dc/terms/Jurisdiction"></a>
<h3>Jurisdiction<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/Jurisdiction</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://purl.org/dc/terms/LocationPeriodOrJurisdiction">Location, Period, or Jurisdiction</span>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#d4e1778" title="http://www.agls.gov.au/agls/terms/jurisdiction">Jurisdiction</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="d4e2673" class="entity">
<a name="http://www.agls.gov.au/agls/terms/JuriClass"></a>
<h3>Jurisdiction Class<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://www.agls.gov.au/agls/terms/JuriClass</p>
<dl class="definedBy">
<dt>
is defined by
</dt>
<dd>
<a href="http://www.agls.gov.au/agls/terms/">http://www.agls.gov.au/agls/terms/</a>
</dd>
</dl>
<div class="comment">
<p>A set of jurisdiction encoding schemes and/or formats</p>
</div>
</div>
<div id="LevelOfGovernment" class="entity">
<a name="http://linked.data.gov.au/def/dataset#LevelOfGovernment"></a>
<h3>Level of Government<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#LevelOfGovernment</p>
<div class="comment">
<p>Level of Government is a description that is used to describe the Jurisidiction of an Organisation.</p>
</div>
<dl class="description">
<dt>
has sub-classes
</dt>
<dd>
<a href="#Federal" title="http://linked.data.gov.au/def/dataset#Federal">Federal Government</a>
<sup title="class" class="type-c">c</sup>,
<a href="#LocalGovernmentArea" title="http://linked.data.gov.au/def/dataset#LocalGovernmentArea">Local Government</a>
<sup title="class" class="type-c">c</sup>,
<a href="#StateOrTerritory" title="http://linked.data.gov.au/def/dataset#StateOrTerritory">State and Territories Government</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasLevelOfGovernment" title="http://linked.data.gov.au/def/dataset#hasLevelOfGovernment">has level of government</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="d4e2495" class="entity">
<a name="http://purl.org/dc/terms/LicenseDocument"></a>
<h3>License Document<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/LicenseDocument</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://purl.org/dc/terms/RightsStatement">Rights Statement</span>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#d4e1681" title="http://purl.org/dc/terms/license">License</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="LocalGovernmentArea" class="entity">
<a name="http://linked.data.gov.au/def/dataset#LocalGovernmentArea"></a>
<h3>Local Government<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#LocalGovernmentArea</p>
<div class="comment">
<p>Local Government is the lowest tier of government in the Commonwealth of Australia administered under the states and territories.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#LevelOfGovernment" title="http://linked.data.gov.au/def/dataset#LevelOfGovernment">Level of Government</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dd>
<a href="#inState" title="http://linked.data.gov.au/def/dataset#inState">in state</a>
<sup title="object property" class="type-op">op</sup>
<span class="logic">exactly</span> 1
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#hasLocalGovernmentArea" title="http://linked.data.gov.au/def/dataset#hasLocalGovernmentArea">has local government area</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="Locality" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Locality"></a>
<h3>locality<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Locality</p>
<div class="comment">
<p>Locality is a Spatial Thing corresponding to a place or area, which is denoted by a commonly recognised, or formally designated, name or description.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#SpatialThing" title="http://linked.data.gov.au/def/dataset#SpatialThing">Spatial Thing</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#GazettedLocality" title="http://linked.data.gov.au/def/dataset#GazettedLocality">Spatial Gazetteer</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#hasLocalGovernmentArea" title="http://linked.data.gov.au/def/dataset#hasLocalGovernmentArea">has local government area</a>
<sup title="object property" class="type-op">op</sup>,
<a href="#inState" title="http://linked.data.gov.au/def/dataset#inState">in state</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="d4e2507" class="entity">
<a name="http://purl.org/dc/terms/Location"></a>
<h3>Location<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/Location</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://purl.org/dc/terms/LocationPeriodOrJurisdiction">Location, Period, or Jurisdiction</span>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#d4e1730" title="http://purl.org/dc/terms/spatial">Spatial Coverage</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="d4e2519" class="entity">
<a name="http://purl.org/dc/terms/MediaType"></a>
<h3>Media Type<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/MediaType</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://purl.org/dc/terms/MediaTypeOrExtent">Media Type or Extent</span>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#d4e2476" title="http://purl.org/dc/terms/FileFormat">File Format</a>
<sup title="class" class="type-c">c</sup>,
<a href="#d4e2546" title="http://purl.org/dc/terms/PhysicalMedium">Physical Medium</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="Organisation" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Organisation"></a>
<h3>Organisation<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Organisation</p>
<div class="comment">
<p>An Organisation is a kind of Agent representing, for example, a business or government, or organisational subunits thereof.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://purl.org/dc/terms/Agent">Agent</span>
<sup title="class" class="type-c">c</sup>
</dd>
<dd>
<span class="dotted" title="http://www.w3.org/ns/prov#Organization">organization</span>
</dd>
<dt>
has sub-classes
</dt>
<dd>
<a href="#GovernmentAgency" title="http://linked.data.gov.au/def/dataset#GovernmentAgency">Government Agency</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in domain of
</dt>
<dd>
<a href="#hasLevelOfGovernment" title="http://linked.data.gov.au/def/dataset#hasLevelOfGovernment">has level of government</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#isMemberOf" title="http://linked.data.gov.au/def/dataset#isMemberOf">is member of</a>
<sup title="object property" class="type-op">op</sup>
</dd>
</dl>
</div>
<div id="d4e2539" class="entity">
<a name="http://purl.org/dc/terms/PeriodOfTime"></a>
<h3>Period of Time<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/PeriodOfTime</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<span class="dotted" title="http://purl.org/dc/terms/LocationPeriodOrJurisdiction">Location, Period, or Jurisdiction</span>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#d4e1745" title="http://purl.org/dc/terms/temporal">Temporal Coverage</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="d4e2546" class="entity">
<a name="http://purl.org/dc/terms/PhysicalMedium"></a>
<h3>Physical Medium<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://purl.org/dc/terms/PhysicalMedium</p>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#d4e2519" title="http://purl.org/dc/terms/MediaType">Media Type</a>
<sup title="class" class="type-c">c</sup>
</dd>
<dt>
is in range of
</dt>
<dd>
<a href="#d4e1697" title="http://purl.org/dc/terms/medium">Medium</a>
<sup title="object property" class="type-op">op</sup>
</dd>
<dt>
is also defined as
</dt>
<dd>
named individual
</dd>
</dl>
</div>
<div id="Point" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Point"></a>
<h3>Point<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Point</p>
<div class="comment">
<p>A Point is a point in space using its geographic coordinates.</p>
</div>
<dl class="description">
<dt>
has super-classes
</dt>
<dd>
<a href="#Geometry" title="http://linked.data.gov.au/def/dataset#Geometry">geometry</a>
<sup title="class" class="type-c">c</sup>
</dd>
</dl>
</div>
<div id="Polygon" class="entity">
<a name="http://linked.data.gov.au/def/dataset#Polygon"></a>
<h3>Polygon<sup title="class" class="type-c">c</sup><span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a></span></h3>
<p><strong>IRI:</strong> http://linked.data.gov.au/def/dataset#Polygon</p>
<div class="comment">
<p>This is a stub class which allows us to defer which external vocabulary to adopt. Adoption can be at run-time through a owl:equivalentClass axiom in the data - likely to be from WGS84_pos or OGC GeoSPARQL or both, or something else as proposed by the W3C SDWWG.</p>
</div>