-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso19160-1.ttl
1513 lines (1280 loc) · 90.5 KB
/
iso19160-1.ttl
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 : <https://linked.data.gov.au/def/iso19160-1-address#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix iso19150-2: <http://def.isotc211.org/iso19150/-2/2012/base#> .
@prefix iso19103_300: <http://def.isotc211.org/iso19103/2015/AnyType#> .
@prefix iso19107_401: <http://def.isotc211.org/iso19107/2003/GeometryRoot#> .
@prefix iso19135_1055: <http://def.isotc211.org/iso19135/2005/ProceduresForItemRegistration#> .
@prefix iso19152_1252: <http://def.isotc211.org/iso19152/2012/SpecialClasses#> .
@prefix iso19115-1_1505: <http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation#> .
@prefix iso19115-1_1508: <http://def.isotc211.org/iso19115/-1/2014/LineageInformation#> .
@prefix iso19135-1_1058: <http://def.isotc211.org/iso19135/-1/2015/ExtendedModel#> .
@prefix iso19160-1_1124: <http://def.isotc211.org/iso19160/-1/2015/ExternalClasses#> .
@prefix iso19160-1_1128: <http://def.isotc211.org/iso19160/-1/2015/Profile_Minimal#> .
@base <https://linked.data.gov.au/def/iso19160-1-address> .
<https://linked.data.gov.au/def/iso19160-1-address> a owl:Ontology ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address> ;
owl:versionIRI <https://linked.data.gov.au/def/iso19160-1-address/1.1> ;
owl:imports <http://def.isotc211.org/iso19160/-1/2015/Profile_Minimal> ,
<http://def.isotc211.org/iso19160/-1/2015/ExternalClasses> ,
<http://def.isotc211.org/iso19150/-2/2012/base> ;
dct:creator <https://def.isotc211.org> ;
dct:contributor <https://orcid.org/0000-0002-8742-7730> ;
dct:title "ISO19160-1:2015 Address ontology" ;
dct:description """This ontology is a version of the ISO TC211, Group for Ontology Management (GOM)'s OWL ontology interpretation of the ISO19160-1:2015 \"Addressing -- Part 1: Conceptual model\" standard (see https://www.iso.org/standard/61710.html) taken from that ontology's source code, published at https://github.com/ISO-TC211/GOM/tree/master/isotc211_GOM_harmonizedOntology/19160-1/2015.
This version uses different URIs for the ontology so that they can be made to resolve through the Australian Government Linked Data Working Groups redirect services where the original ontology's URIs do not resolve.
This ontology also has had the code lists removed thus preserving the data model but not the vocabularies. The code lists are published separately at https://linked.data.gov.au/def/iso19160-1-address/codelist.
Additionally, this version adds some metadata, such as this explanation, some further annotation properties to better display elements of the ontology and includes a human-readable (HTML) version of the ontology generated from the RDF version.
As the GOM's version of the ontology evolves, we will keep this version up-to-date as we intend to only publish an easier-to-access version of their ontology here, not to profile it."""@en ;
dct:source <http://standards.iso.org/iso/19160/-1/ed-1/en/> ;
owl:versionInfo "Updates to the ontology documentation; changed URIs from reference.data.gov.au to linked.data.gov.au"^^xsd:string ;
dct:publisher <https://linked.data.gov.au/org/agldwg> ;
dct:created "2017-11-27"^^xsd:date ;
dct:modified "2019-10-24"^^xsd:date ;
skos:historyNote "This version of the ISO 19160-1 standard presented as an OWL ontology was mostly taken from the original OWL interpretation prepared by the ISO TC211, Group for Ontology Management"@en ;
prov:wasGeneratedBy [
a doap:Project , prov:Activity ;
doap:repository <https://github.com/AGLDWG/iso19160-1-address-ont>
] ;
.
<https://def.isotc211.org>
a sdo:Organization ;
sdo:name "ISO TC211, Group for Ontology Management" ;
sdo:url "https://def.isotc211.org"^^xsd:anyURI ;
.
<http://orcid.org/0000-0002-8742-7730>
a sdo:Person ;
sdo:name "Nicholas J. Car" ;
sdo:identifier <http://orcid.org/0000-0002-8742-7730> ;
sdo:email "[email protected]"^^xsd:anyURI ;
sdo:affiliation <https://surroundaustralia.com> ;
.
<https://linked.data.gov.au/org/agldwg>
a sdo:Organization ;
sdo:identifier <https://linked.data.gov.au/org/agldwg> ;
sdo:name "Australian Government Linked Data Working Group" ;
sdo:url "https://www.linked.data.gov.au"^^xsd:anyURI ;
.
#################################################################
# Annotation properties
#################################################################
### http://def.isotc211.org/iso19150/-2/2012/base#aggregationType
iso19150-2:aggregationType rdf:type owl:AnnotationProperty ;
rdfs:label "aggregation type"@en .
### http://def.isotc211.org/iso19150/-2/2012/base#associationName
iso19150-2:associationName rdf:type owl:AnnotationProperty ;
rdfs:label "assocation name"@en .
### http://def.isotc211.org/iso19150/-2/2012/base#constraint
iso19150-2:constraint rdf:type owl:AnnotationProperty ;
rdfs:label "constraint"@en .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://linked.data.gov.au/def/iso19160-1-address#Address.addressComponent
:Address.addressComponent rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.addressComponent> ;
rdfs:domain :Address ;
rdfs:range :AddressComponent ;
iso19150-2:aggregationType "partOfSharedAggregation" ;
iso19150-2:associationName "comprises" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "address component"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.business_branch
:Address.business_branch rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.business_branch> ;
rdfs:domain :Address ;
rdfs:range iso19160-1_1124:BusinessRegister ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "business"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.business_headOffice
:Address.business_headOffice rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.business_headOffice> ;
rdfs:domain :Address ;
rdfs:range iso19160-1_1124:BusinessRegister ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "business"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.childAddress
:Address.childAddress rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.childAddress> ;
owl:inverseOf :Address.parentAddress ;
rdfs:domain :Address ;
rdfs:range :Address ;
iso19150-2:associationName "parent" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "child address"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.class
:Address.class rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.class> ;
rdfs:domain :Address ;
rdfs:range :AddressClass ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "class"@en ;
skos:definition "Code that specifies the address class to which the address belongs."@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.client
:Address.client rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.client> ;
rdfs:domain :Address ;
rdfs:range iso19160-1_1124:Client ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "client"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.employee
:Address.employee rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.employee> ;
rdfs:domain :Address ;
rdfs:range iso19160-1_1124:Employee ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "employee"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.id
:Address.id rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.id> ;
rdfs:domain :Address ;
rdfs:range iso19152_1252:Oid ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "id"@en ;
skos:definition "Unique character string that identifies the address."@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.lifecycleStage
:Address.lifecycleStage rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.lifecycleStage> ;
rdfs:domain :Address ;
rdfs:range :AddressLifecycleStage ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "lifecycle stage"@en ;
skos:definition "Code that specifies the phase an address has reached in its lifecycle."@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.lifespan
:Address.lifespan rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.lifespan> ;
rdfs:domain :Address ;
rdfs:range :Lifespan ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "lifespan"@en ;
skos:definition "Information about the period over which an address exists"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.locale
:Address.locale rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.locale> ;
rdfs:domain :Address ;
rdfs:range iso19135-1_1058:RE_Locale ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "locale"@en ;
skos:definition "A set or parameters that specify the cultural and linguistic environment."@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.parentAddress
:Address.parentAddress rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.parentAddress> ;
rdfs:domain :Address ;
rdfs:range :Address ;
iso19150-2:associationName "parent" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "parent address"@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.position
:Address.position rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.position> ;
rdfs:domain :Address ;
rdfs:range :AddressPosition ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "position"@en ;
skos:definition "Geometry (coordinates) that represents the address location."@en .
### https://linked.data.gov.au/def/iso19160-1-address#Address.provenance
:Address.provenance rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.provenance> ;
rdfs:domain :Address ;
rdfs:range :AddressProvenance ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "provenance"@en ;
skos:definition "Information about the source or origin of the address, such as the authority who assigned the address, the owner of the address data instance, and lineage of the address."@en .
### http://linked.data.gov.au/def/iso19160-1-address#Address.specification
:Address.specification rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.specification> ;
rdfs:domain :Address ;
rdfs:range :AddressSpecification ;
iso19150-2:associationName "specifies" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "specification"@en .
### http://linked.data.gov.au/def/iso19160-1-address#Address.status
:Address.status rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.status> ;
rdfs:domain :Address ;
rdfs:range :AddressStatus ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "status"@en ;
skos:definition "Code that specifies the nature of the address assignment."@en .
### http://linked.data.gov.au/def/iso19160-1-address#Address.theAddressAlias
:Address.theAddressAlias rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.theAddressAlias> ;
owl:inverseOf :AddressAlias.address ,
:AddressAlias.aliasAddress ;
rdfs:domain :Address ;
rdfs:range :AddressAlias ;
iso19150-2:associationName "alias" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "the address alias"@en .
### http://linked.data.gov.au/def/iso19160-1-address#Address.theAddressedPeriod
:Address.theAddressedPeriod rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.theAddressedPeriod> ;
owl:inverseOf :AddressedPeriod.address ;
rdfs:domain :Address ;
rdfs:range :AddressedPeriod ;
iso19150-2:associationName "allows unambiguous determination" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "the addressed period"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressAlias.address
:AddressAlias.address rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressAlias.address> ;
rdfs:domain :AddressAlias ;
rdfs:range :Address ;
iso19150-2:associationName "alias" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "address"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressAlias.aliasAddress
:AddressAlias.aliasAddress rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressAlias.aliasAddress> ;
rdfs:domain :AddressAlias ;
rdfs:range :Address ;
iso19150-2:associationName "alias" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "alias address"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressAlias.type
:AddressAlias.type rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressAlias.type> ;
rdfs:domain :AddressAlias ;
rdfs:range :AddressAliasType ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "type"@en ;
skos:definition "Code that specifies which justification for an alias applies to the address at the destination end of the association. The default value is unspecifiedAlias."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressClassSpecification.class
:AddressClassSpecification.class rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressClassSpecification.class> ;
rdfs:domain :AddressClassSpecification ;
rdfs:range :AddressClass ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "class"@en ;
skos:definition "Code that specifies the address class to which the address belongs."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressClassSpecification.component
:AddressClassSpecification.component rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressClassSpecification.component> ;
rdfs:domain :AddressClassSpecification ;
rdfs:range :AddressComponentType ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "component"@en ;
skos:definition "The set of one or more address component types that may be considered together in various combinations to constitute an address of this class."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressClassSpecification.typology
:AddressClassSpecification.typology rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressClassSpecification.typology> ;
rdfs:domain :AddressClassSpecification ;
rdfs:range :AddressTypology ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "typology"@en ;
skos:definition "Code that specifies the type of address class."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.id
:AddressComponent.id rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.id> ;
rdfs:domain :AddressComponent ;
rdfs:range iso19152_1252:Oid ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "id"@en ;
skos:definition "Unique character string that identifies the address component."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.lifecycleStage
:AddressComponent.lifecycleStage rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.lifecycleStage> ;
rdfs:domain :AddressComponent ;
rdfs:range :AddressLifecycleStage ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "lifecycle stage"@en ;
skos:definition "Code that specifies the phase an address component has reached in its lifecycle."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.lifespan
:AddressComponent.lifespan rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.lifespan> ;
rdfs:domain :AddressComponent ;
rdfs:range :Lifespan ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "lifespan"@en ;
skos:definition """Information about the period over which an address component exists.
NOTE See Annex D for lifecycle examples of an address component."""@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.locale
:AddressComponent.locale rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.locale> ;
rdfs:domain :AddressComponent ;
rdfs:range iso19135-1_1058:RE_Locale ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "locale"@en ;
skos:definition "A set of parameters that specify the cultural and linguistic environment."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.provenance
:AddressComponent.provenance rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.provenance> ;
rdfs:domain :AddressComponent ;
rdfs:range :AddressProvenance ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "provenance"@en ;
skos:definition "Information about the source or origin of the address component, such as the authority who assigned the address component value, the owner of the address component data instance, and the lineage of the address component."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.referenceObject
:AddressComponent.referenceObject rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.referenceObject> ;
owl:inverseOf :ReferenceObject.addressComponent ;
rdfs:domain :AddressComponent ;
rdfs:range :ReferenceObject ;
iso19150-2:associationName "references" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "reference object"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.scopeComponent
:AddressComponent.scopeComponent rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.scopeComponent> ;
owl:inverseOf :AddressComponent.valueComponent ;
rdfs:domain :AddressComponent ;
rdfs:range :AddressComponent ;
iso19150-2:associationName "withinScopeOf" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "scope component"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.type
:AddressComponent.type rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.type> ;
rdfs:domain :AddressComponent ;
rdfs:range :AddressComponentType ;
iso19150-2:constraint "type is mandatory if there are no subclasses of AddressableObject" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "type"@en ;
skos:definition "Code that specifies the kind of address component."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.valueComponent
:AddressComponent.valueComponent rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.valueComponent> ;
rdfs:domain :AddressComponent ;
rdfs:range :AddressComponent ;
iso19150-2:associationName "withinScopeOf" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "value component"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponent.valueInformation
:AddressComponent.valueInformation rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.valueInformation> ;
rdfs:domain :AddressComponent ;
rdfs:range :AddressComponentValue ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "value information"@en ;
skos:definition "Value of and information about one or more address component values."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponentValue.locale
:AddressComponentValue.locale rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponent.locale> ;
rdfs:domain :AddressComponentValue ;
rdfs:range iso19135_1055:RE_Locale ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "locale"@en ;
skos:definition "A set of parameters that specify the cultural and linguistic environment."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponentValue.type
:AddressComponentValue.type rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponentValue.type> ;
rdfs:domain :AddressComponentValue ;
rdfs:range :AddressComponentValueType ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "type"@en ;
skos:definition "Code that specifies the kind of value, i.e. whether it is a variation of the default address component value, and if so, what the variation is."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponentValue.value
:AddressComponentValue.value rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponentValue.value> ;
rdfs:domain :AddressComponentValue ;
rdfs:range iso19103_300:Any ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "value"@en ;
skos:definition "One or more instances of the value of the address component."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressPosition.geometry
:AddressPosition.geometry rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressPosition.geometry> ;
rdfs:domain :AddressPosition ;
rdfs:range iso19107_401:GM_Object ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "geometry"@en ;
skos:definition "Geometry (coordinates) representing the address position."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressPosition.type
:AddressPosition.type rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressPosition.type> ;
rdfs:domain :AddressPosition ;
rdfs:range :AddressPositionType ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "type"@en ;
skos:definition """Code that specifies how the geometry shall be interpreted.
EXAMPLES centroid, streetFront, approximated"""@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressProvenance.authority
:AddressProvenance.authority rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressProvenance.authority> ;
rdfs:domain :AddressProvenance ;
rdfs:range iso19115-1_1505:CI_Organisation ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "authority"@en ;
skos:definition "The body that assigns the address or address component value."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressProvenance.lineage
:AddressProvenance.lineage rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressProvenance.lineage> ;
rdfs:domain :AddressProvenance ;
rdfs:range iso19115-1_1508:LI_Lineage ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "lineage"@en ;
skos:definition "Provenance, source(s) and production process(es) used in producing an address or address component."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressProvenance.owner
:AddressProvenance.owner rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressProvenance.owner> ;
rdfs:domain :AddressProvenance ;
rdfs:range iso19115-1_1505:CI_Organisation ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "owner"@en ;
skos:definition "Organization that maintains the data."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressSpecification.addressSpecificationCitation
:AddressSpecification.addressSpecificationCitation rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressSpecification.addressSpecificationCitation> ;
rdfs:domain :AddressSpecification ;
rdfs:range iso19115-1_1505:CI_Citation ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "address specification citation"@en ;
skos:definition "Reference to a specification or document that contains a definition of the address classes."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressSpecification.classSpecification
:AddressSpecification.classSpecification rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressSpecification.classSpecification> ;
rdfs:domain :AddressSpecification ;
rdfs:range :AddressClassSpecification ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "class specification"@en ;
skos:definition "Information about one or more address classes, such as typology and valid component types." .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.childAddressableObject
:AddressableObject.childAddressableObject rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.childAddressableObject> ;
owl:inverseOf :AddressableObject.parentAddressableObject ;
rdfs:domain :AddressableObject ;
rdfs:range :AddressableObject ;
iso19150-2:associationName "parent" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "child addressable object"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.id
:AddressableObject.id rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.id> ;
rdfs:domain :AddressableObject ;
rdfs:range iso19152_1252:Oid ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "id"@en ;
skos:definition "Unique character string that identifies the addressable object."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.lifecycleStage
:AddressableObject.lifecycleStage rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.lifecycleStage> ;
rdfs:domain :AddressableObject ;
rdfs:range :AddressableObjectLifecycleStage ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "lifecycle stage"@en ;
skos:definition "Code that specifies the phase an addressable object has reached in its lifecycle."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.lifespan
:AddressableObject.lifespan rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.lifespan> ;
rdfs:domain :AddressableObject ;
rdfs:range :Lifespan ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "lifespan"@en ;
skos:definition "Information about the period over which an addressable object exists."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.parentAddressableObject
:AddressableObject.parentAddressableObject rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.parentAddressableObject> ;
rdfs:domain :AddressableObject ;
rdfs:range :AddressableObject ;
iso19150-2:associationName "parent" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "parent addressable object"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.position
:AddressableObject.position rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.position> ;
rdfs:domain :AddressableObject ;
rdfs:range :AddressPosition ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "position"@en ;
skos:definition "Geometry (coordinates) representing the addressable object."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.theAddressedPeriod
:AddressableObject.theAddressedPeriod rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.theAddressedPeriod> ;
owl:inverseOf :AddressedPeriod.addressedObject ;
rdfs:domain :AddressableObject ;
rdfs:range :AddressedPeriod ;
iso19150-2:associationName "allows unambiguous determination" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "the addressed period"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressableObject.type
:AddressableObject.type rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressableObject.type> ;
rdfs:domain :AddressableObject ;
rdfs:range :AddressableObjectType ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "type"@en ;
skos:definition "Code that specifies the kind of object to which an address may be assigned."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressedPeriod.address
:AddressedPeriod.address rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressedPeriod.address> ;
rdfs:domain :AddressedPeriod ;
rdfs:range :Address ;
iso19150-2:associationName "allows unambiguous determination" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "address"@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressedPeriod.addressedObject
:AddressedPeriod.addressedObject rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressedPeriod.addressedObject> ;
rdfs:domain :AddressedPeriod ;
rdfs:range :AddressableObject ;
iso19150-2:associationName "allows unambiguous determination" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "addressed object"@en .
### http://linked.data.gov.au/def/iso19160-1-address#ReferenceObject.addressComponent
:ReferenceObject.addressComponent rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#ReferenceObject.addressComponent> ;
rdfs:domain :ReferenceObject ;
rdfs:range :AddressComponent ;
iso19150-2:associationName "references" ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "address component"@en .
### http://linked.data.gov.au/def/iso19160-1-address#ReferenceObject.geometry
:ReferenceObject.geometry rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#ReferenceObject.geometry> ;
rdfs:domain :ReferenceObject ;
rdfs:range iso19107_401:GM_Object ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "geometry"@en ;
skos:definition "Geometry (coordinates) representing the reference object."@en .
### http://linked.data.gov.au/def/iso19160-1-address#ReferenceObject.id
:ReferenceObject.id rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#ReferenceObject.id> ;
rdfs:domain :ReferenceObject ;
rdfs:range iso19152_1252:Oid ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "id"@en ;
skos:definition "Unique character string that identifies the reference object."@en .
### http://linked.data.gov.au/def/iso19160-1-address#ReferenceObject.type
:ReferenceObject.type rdf:type owl:ObjectProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#ReferenceObject.type> ;
rdfs:domain :ReferenceObject ;
rdfs:range :ReferenceObjectType ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "type"@en ;
skos:definition "Code that specifies the kind of reference object."@en .
#################################################################
# Data properties
#################################################################
### http://linked.data.gov.au/def/iso19160-1-address#Address.preferenceLevel
:Address.preferenceLevel rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address.preferenceLevel> ;
rdfs:domain :Address ;
rdfs:range xsd:integer ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "preference level"@en ;
skos:definition """Indicates the ranking of the address in a set of address aliases. 1 indicates highest ranking.
EXAMPLE 1 A building on a street corner could be referenced by two addresses. One of them could have its preferenceLevel set to 1.
EXAMPLE 2 In Switzerland, addresses containing German and French names, e.g. Biel (German) and Bienne (French), are different addresses with the same preference level."""@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressComponentValue.preferenceLevel
:AddressComponentValue.preferenceLevel rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressComponentValue.preferenceLevel> ;
rdfs:domain :AddressComponentValue ;
rdfs:range xsd:integer ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "preference level"@en ;
skos:definition """Indicates the ranking of the address component in a set of alternatives. 1 indicates highest ranking.
EXAMPLE 1 A building on a street corner could be referenced by two addresses, each with a different component value for the thoroughfare name address component. For one of them the preferenceLevel could be set to 1.
EXAMPLE 2 In Switzerland, Biel (German) and Bienne (French) are different address components with the same preference level."""@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressedPeriod.addressedFrom
:AddressedPeriod.addressedFrom rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressedPeriod.addressedFrom> ;
rdfs:domain :AddressedPeriod ;
rdfs:range xsd:dateTime ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "addressed from"@en ;
skos:definition "Date and time from which the addressed object is unambiguously determined by the address."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressedPeriod.addressedTo
:AddressedPeriod.addressedTo rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressedPeriod.addressedTo> ;
rdfs:domain :AddressedPeriod ;
rdfs:range xsd:dateTime ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "addressed to"@en ;
skos:definition "Date and time when the addressed object ceased to be unambiguously determined by the address."@en .
### http://linked.data.gov.au/def/iso19160-1-address#Lifespan.closeRecord
:Lifespan.closeRecord rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Lifespan.closeRecord> ;
rdfs:domain :Lifespan ;
rdfs:range xsd:dateTime ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "close record"@en ;
skos:definition "Specifies the date and time at which this version of the data object was superseded by another version or retired in the dataset."@en .
### http://linked.data.gov.au/def/iso19160-1-address#Lifespan.openRecord
:Lifespan.openRecord rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Lifespan.openRecord> ;
rdfs:domain :Lifespan ;
rdfs:range xsd:dateTime ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "open record"@en ;
skos:definition "Specifies the date and time at which this version of the data object was inserted into the dataset."@en .
### http://linked.data.gov.au/def/iso19160-1-address#Lifespan.validFrom
:Lifespan.validFrom rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Lifespan.validFrom> ;
rdfs:domain :Lifespan ;
rdfs:range xsd:dateTime ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "valid from"@en ;
skos:definition "Date and time from which the object is valid in the physical world."@en .
### http://linked.data.gov.au/def/iso19160-1-address#Lifespan.validTo
:Lifespan.validTo rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Lifespan.validTo> ;
rdfs:domain :Lifespan ;
rdfs:range xsd:dateTime ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "valid to"@en ;
skos:definition "Date and time when this object ceased to be valid in the physical world."@en .
### http://linked.data.gov.au/def/iso19160-1-address#Lifespan.version
:Lifespan.version rdf:type owl:DatatypeProperty ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Lifespan.version> ;
rdfs:domain :Lifespan ;
rdfs:range xsd:string ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "version"@en ;
skos:definition """Unique identifier of this variant of the address record.
NOTE The version is incremented with any change to the data object."""@en .
#################################################################
# Classes
#################################################################
### http://def.isotc211.org/iso19103/2015/AnyType#Any
iso19103_300:Any rdf:type owl:Class .
### http://def.isotc211.org/iso19107/2003/GeometryRoot#GM_Object
iso19107_401:GM_Object rdf:type owl:Class .
### http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation#CI_Citation
iso19115-1_1505:CI_Citation rdf:type owl:Class .
### http://def.isotc211.org/iso19115/-1/2014/CitationAndResponsiblePartyInformation#CI_Organisation
iso19115-1_1505:CI_Organisation rdf:type owl:Class .
### http://def.isotc211.org/iso19115/-1/2014/LineageInformation#LI_Lineage
iso19115-1_1508:LI_Lineage rdf:type owl:Class .
### http://def.isotc211.org/iso19135/-1/2015/ExtendedModel#RE_Locale
iso19135-1_1058:RE_Locale rdf:type owl:Class .
### http://def.isotc211.org/iso19135/2005/ProceduresForItemRegistration#RE_Locale
iso19135_1055:RE_Locale rdf:type owl:Class .
### http://def.isotc211.org/iso19152/2012/SpecialClasses#Oid
iso19152_1252:Oid rdf:type owl:Class .
### http://def.isotc211.org/iso19160/-1/2015/ExternalClasses#BusinessRegister
iso19160-1_1124:BusinessRegister rdf:type owl:Class .
### http://def.isotc211.org/iso19160/-1/2015/ExternalClasses#Client
iso19160-1_1124:Client rdf:type owl:Class .
### http://def.isotc211.org/iso19160/-1/2015/ExternalClasses#Employee
iso19160-1_1124:Employee rdf:type owl:Class .
### http://linked.data.gov.au/def/iso19160-1-address#Address
:Address rdf:type owl:Class ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#Address> ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :Address.addressComponent ;
owl:allValuesFrom :AddressComponent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.business_branch ;
owl:allValuesFrom iso19160-1_1124:BusinessRegister
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.business_headOffice ;
owl:allValuesFrom iso19160-1_1124:BusinessRegister
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.childAddress ;
owl:allValuesFrom :Address
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.class ;
owl:allValuesFrom :AddressClass
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.client ;
owl:allValuesFrom iso19160-1_1124:Client
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.employee ;
owl:allValuesFrom iso19160-1_1124:Employee
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.id ;
owl:allValuesFrom iso19152_1252:Oid
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.lifecycleStage ;
owl:allValuesFrom :AddressLifecycleStage
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.lifespan ;
owl:allValuesFrom :Lifespan
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.locale ;
owl:allValuesFrom iso19135-1_1058:RE_Locale
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.parentAddress ;
owl:allValuesFrom :Address
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.position ;
owl:allValuesFrom :AddressPosition
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.provenance ;
owl:allValuesFrom :AddressProvenance
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.specification ;
owl:allValuesFrom :AddressSpecification
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.status ;
owl:allValuesFrom :AddressStatus
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.theAddressAlias ;
owl:allValuesFrom :AddressAlias
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.theAddressedPeriod ;
owl:allValuesFrom :AddressedPeriod
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.addressComponent ;
owl:minCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.class ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.id ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.lifecycleStage ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.lifespan ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.locale ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.parentAddress ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.provenance ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.status ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.preferenceLevel ;
owl:allValuesFrom xsd:integer
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :Address.preferenceLevel ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger
] ;
iso19150-2:constraint "For Provenance conformance, provenance shall be mandatory"@en ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "Address"@en ;
skos:definition "Structured information that allows the unambiguous determination of an object for purposes of identification and location."@en .
### http://linked.data.gov.au/def/iso19160-1-address#AddressAlias
:AddressAlias rdf:type owl:Class ;
owl:sameAs <http://def.isotc211.org/iso19160/-1/2015/Address#AddressAlias> ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :AddressAlias.address ;
owl:allValuesFrom :Address
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :AddressAlias.aliasAddress ;
owl:allValuesFrom :Address
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :AddressAlias.type ;
owl:allValuesFrom :AddressAliasType
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :AddressAlias.address ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :AddressAlias.aliasAddress ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :AddressAlias.type ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ;
rdfs:isDefinedBy "http://standards.iso.org/iso/19160/-1/ed-1/en/" ;
rdfs:label "Address Alias"@en ;
skos:definition "Information about an address alias."@en .