-
Notifications
You must be signed in to change notification settings - Fork 0
/
agrif.ttl
1459 lines (1137 loc) · 71.4 KB
/
agrif.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/agrif#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sdo: <https://schema.org/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <https://linked.data.gov.au/def/agrif> .
<https://linked.data.gov.au/def/agrif> rdf:type owl:Ontology ;
owl:versionIRI <https://linked.data.gov.au/def/agrif/0.9> ;
dcterms:modified "2019-10-21"^^xsd:date ;
dcterms:contributor "Pouya Ghiasnezhad Omran" ,
"Sergio José Rodríguez Méndez" ,
"Kerry Taylor" ,
<http://orcid.org/0000-0002-8742-7730> ;
dcterms:creator [
sdo:name "Katherine Stuart" ;
sdo:affiliation <https://linked.data.gov.au/org/finance> ;
] ,
<http://orcid.org/0000-0003-3425-0780> ,
[
sdo:name "John Machin" ;
sdo:affiliation <https://linked.data.gov.au/org/finance> ;
] ;
owl:priorVersion "0.8" ;
rdfs:label "The Australian Government Records Interoperability Framework (AGRIF) ontology"@en ;
owl:versionInfo "0.9" ;
rdfs:comment "The Australian Government Records Interoperability Framework (AGRIF, ‘the Framework’) is a system of related semantic ontologies that describe the structure, functions, and activities of the Australian Government, providing sufficient context for the effective use – including but not limited to management – of Australian Government information assets. It complies with the World Wide Web Consortium’s Web Ontology Language (OWL2) Recommendation and makes reference to other Recommendations and existing domain ontologies for archival and preservation processes."@en ;
dcterms:publisher <https://linked.data.gov.au/org/finance> ;
vann:preferredNamespaceUri "https://linked.data.gov.au/def/agrif#"^^xsd:string ;
vann:preferredNamespacePrefix "agrif"@en ;
dcterms:license <https://creativecommons.org/licenses/by/4.0/> ;
dcterms:rights "(c) Commonwealth of Australia (Department of Finance) 2019"@en ;
rdfs:seeAlso <https://github.com/agldwg/agrif-ont> ;
dcterms:created "2016-12-06"^^xsd:date .
<http://orcid.org/0000-0003-3425-0780>
a sdo:Person ;
sdo:name "Armin Haller" ;
sdo:identifier <http://orcid.org/0000-0003-3425-0780> ;
sdo:email "[email protected]"^^xsd:anyURI ;
sdo:affiliation <https://www.anu.edu.au> ;
.
<https://www.anu.edu.au>
a sdo:Organization ;
sdo:name "Australian National University" ;
sdo:url "https://www.anu.edu.au"^^xsd:anyURI ;
.
<https://linked.data.gov.au/org/finance>
a sdo:Organization ;
sdo:name "Department of Finance" ;
sdo:url <https://www.finance.gov.au> ;
.
<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> ;
.
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/source
dcterms:source rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### https://schema.org/identifier
sdo:identifier rdf:type owl:AnnotationProperty .
### https://schema.org/name
sdo:name rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://linked.data.gov.au/def/agrif#accessedBy
:accessedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :wasAssociatedWith ;
rdfs:comment "A relation that indicates that an Agent has accessed a Record as defined in an Access Activity."@en ;
rdfs:label "accessed By"@en .
### http://linked.data.gov.au/def/agrif#actsAs
:actsAs rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between an Agent and the Role that Agent acts in."@en ;
rdfs:label "acts As"@en .
### http://linked.data.gov.au/def/agrif#affects
:affects rdf:type owl:ObjectProperty ;
owl:inverseOf :isAffectedBy ;
rdfs:comment "A relation between an Event and an Artefact or a Record."@en ;
rdfs:label "affects"@en .
### http://linked.data.gov.au/def/agrif#associatedFunction
:associatedFunction rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that associates a Function to an Entity, Event or Activity."@en ;
rdfs:label "associated Function"@en .
### http://linked.data.gov.au/def/agrif#associatedRole
:associatedRole rdf:type owl:ObjectProperty ;
dcterms:source <https://www.w3.org/TR/prov-o/#hadRole> ; ;
rdfs:comment "An associated Role is a qualified association between a Role and an Activity or Event defined by an Association."@en ;
rdfs:label "associated Role"@en .
### http://linked.data.gov.au/def/agrif#guidingPolicy
:guidingPolicy rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines a Policy that is guiding an Activity or Change Event."@en ;
rdfs:label "guiding Policy"@en .
### http://linked.data.gov.au/def/agrif#hasActivity
:hasActivity rdf:type owl:ObjectProperty ;
owl:inverseOf :usedRecord ;
dcterms:source <https://www.w3.org/TR/prov-o/#p_activity> ;
rdfs:comment "A relation between a Record and an Activity that acts upon the Record."@en ;
rdfs:label "has Activity"@en .
### http://linked.data.gov.au/def/agrif#hasAgent
:hasAgent rdf:type owl:ObjectProperty ;
dcterms:source <https://www.w3.org/TR/prov-o/#p_agent> ;
rdfs:comment "A qualified relation between an Agent and a Change Event defined through an Association."@en ;
rdfs:label "has Agent"@en .
### http://linked.data.gov.au/def/agrif#hasClassifier
:hasClassifier rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:label "has Classifier"@en ;
owl:deprecated ""@en .
### http://linked.data.gov.au/def/agrif#hasControl
:hasControl rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between a Record, Artefact or Event and a Control that denotes the required level of Access or Security Control." ;
rdfs:label "requires Control"@en .
### http://linked.data.gov.au/def/agrif#hasCoverage
:hasCoverage rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between a Record and its Jurisdictional Coverage, or its Temporal or Spatial Coverage."@en ;
rdfs:label "has Coverage"@en .
### http://linked.data.gov.au/def/agrif#hasDecisionStatus
:hasDecisionStatus rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that indicates what the Decision on a Decision Event was."@en ;
rdfs:label "has Decision Status"@en .
### http://linked.data.gov.au/def/agrif#hasDisposalClass
:hasDisposalClass rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that associates a Disposal Class with a Record."@en ;
rdfs:label "has Disposal Class"@en .
### http://linked.data.gov.au/def/agrif#hasFormFactor
:hasFormFactor rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines the size, shape, and other physical specifications of a Physical Artefact."@en ;
rdfs:label "has Form Factor"@en .
### http://linked.data.gov.au/def/agrif#hasLocation
:hasLocation rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines the Spatial Location of an Activity or Artefact."@en ;
rdfs:label "has Location"@en .
### http://linked.data.gov.au/def/agrif#hasManifest
:hasManifest rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between a Manifest and a Transfer Event that describes the files involved in the transfer of a Record."@en ;
rdfs:label "has Manifest"@en .
### http://linked.data.gov.au/def/agrif#hasNextVersion
:hasNextVersion rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :relatedTo ;
owl:inverseOf :hasPreviousVersion ;
rdfs:comment "A relation that indicates that an Artefact has a newer version."@en ;
rdfs:label "has Next Version"@en .
### http://linked.data.gov.au/def/agrif#hasPart
:hasPart rdf:type owl:ObjectProperty ;
owl:inverseOf :partOf ;
rdfs:comment "A relation that defines part-whole relations."@en ;
rdfs:label "has Part"@en .
### http://linked.data.gov.au/def/agrif#hasPermission
:hasPermission rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between an Agent and the Permission the Agent possesses."@en ;
rdfs:label "has Permission"@en .
### http://linked.data.gov.au/def/agrif#hasPrerequisiteDecisionEvent
:hasPrerequisiteDecisionEvent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :priorEvent ;
rdfs:comment "A relation between a Decision Event and a prerequisite Decision Event, indicating a Decision chain in a Chain of Command."@en ;
rdfs:label "prerequisite Decision Event"@en .
### http://linked.data.gov.au/def/agrif#hasPreviousVersion
:hasPreviousVersion rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :relatedTo ;
rdf:type owl:TransitiveProperty ;
rdfs:comment "A relation that indicates that an Artefact has an older version."@en ;
rdfs:label "has Previous Version"@en .
### http://linked.data.gov.au/def/agrif#hasQuality
:hasQuality rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that indicates a specific Quality of an Artefact."@en ;
rdfs:label "has Quality"@en .
### http://linked.data.gov.au/def/agrif#hasSeries
:hasSeries rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:comment "A relation between a Record and its Series Number."@en ;
rdfs:label "has Series"@en .
### http://linked.data.gov.au/def/agrif#hasSourceAgent
:hasSourceAgent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :wasAssociatedWith ;
rdfs:comment "A relation that denotes the source Agent of a Record or an Artefact in an Event or Activity."@en ;
rdfs:label "has Source Agent"@en .
### http://linked.data.gov.au/def/agrif#hasStatus
:hasStatus rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between an Activity and a Status that indicates its current state."@en ;
rdfs:label "has Status"@en .
### http://linked.data.gov.au/def/agrif#hasTargetAgent
:hasTargetAgent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :wasAssociatedWith ;
rdfs:comment "A relation that denotes the target Agent of a Record or an Artefact in an Event or Activity."@en ;
rdfs:label "has Target Agent"@en .
### http://linked.data.gov.au/def/agrif#hasVersionHistory
:hasVersionHistory rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between a Record and its previous Version qualified through a Replace Event."@en ;
rdfs:label "has Version History"@en .
### http://linked.data.gov.au/def/agrif#isAffectedBy
:isAffectedBy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:comment "A relation between an Artefact or a Record and an Event."@en ;
rdfs:label "is Affected By"@en .
### http://linked.data.gov.au/def/agrif#isAttachedTo
:isAttachedTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :relatedTo ;
rdfs:comment "A relation that indicates that an Artefact is logically or physically attached to another Artefact."@en ;
rdfs:label "is Attached To"@en .
### http://linked.data.gov.au/def/agrif#isBasedOn
:isBasedOn rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :relatedTo ;
rdfs:comment "A relation that indicates that an Artefact is in part or as a whole based on another Artefact."@en ;
rdfs:label "is Based On"@en .
### http://linked.data.gov.au/def/agrif#isChangedBy
:isChangedBy rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that denotes the Information System that has been used to change an Artefact."@en ;
rdfs:label "is Changed By"@en .
### http://linked.data.gov.au/def/agrif#isDuplicateOf
:isDuplicateOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :relatedTo ;
rdfs:comment "A relation that indicates that an Artefact is an exact copy of another Artefact, i.e. the content is exactly the same, but its Record may be different."@en ;
rdfs:label "is Duplicate Of"@en .
### http://linked.data.gov.au/def/agrif#isMentionedIn
:isMentionedIn rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :relatedTo ;
rdfs:comment "A relation that indicates that an Artefact is mentioned in another Artefact. An example of such a relation is a citation of a document in another document."@en ;
rdfs:label "is Mentioned In"@en .
### http://linked.data.gov.au/def/agrif#isPartOf
:isPartOf rdf:type owl:ObjectProperty ;
rdfs:comment "A Collection in which the described Artefact is physically or logically included."@en ;
rdfs:label "is Part Of"@en .
### http://linked.data.gov.au/def/agrif#notifies
:notifies rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between a Trigger and an Agent that is to be notified."@en ;
rdfs:label "notifies"@en .
### http://linked.data.gov.au/def/agrif#partOf
:partOf rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:comment "A relation that defines part-whole relations."@en ;
rdfs:label "part Of"@en .
### http://linked.data.gov.au/def/agrif#positionIn
:positionIn rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines the position an Agent occupies in an Organisation or Organisational Unit."@en ;
rdfs:label "position In"@en .
### http://linked.data.gov.au/def/agrif#priorEvent
:priorEvent rdf:type owl:ObjectProperty ;
rdfs:comment "A relation indicating some causal link between an Event and a previously happening Event."@en ;
rdfs:label "prior Event"@en .
### http://linked.data.gov.au/def/agrif#qualifiedAssociation
:qualifiedAssociation rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that associates an assignment of responsibility to an Agent for an Activity or Event, indicating that the Agent had a Role in the Activity or Event."@en ;
rdfs:label "qualified Association"@en .
### http://linked.data.gov.au/def/agrif#recordOf
:recordOf rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines what Artefact the Record is about."@en ;
rdfs:label "record Of"@en .
### http://linked.data.gov.au/def/agrif#relatedTo
:relatedTo rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that indicates that there is some form of relation between a Record and another Record or between an Artefact and another Artefact."@en ;
rdfs:label "related To"@en .
### http://linked.data.gov.au/def/agrif#replacedBy
:replacedBy rdf:type owl:ObjectProperty ;
owl:inverseOf :replaces ;
rdfs:comment "A relation that defines that a Record has been replaced by another Record, qualified through a Replace Event."@en ;
rdfs:label "replaced By"@en .
### http://linked.data.gov.au/def/agrif#replaces
:replaces rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines that a Record replaces another Record, qualified through a Replace Event."@en ;
rdfs:label "replaces"@en .
### http://linked.data.gov.au/def/agrif#requiresSecurityClassification
:requiresSecurityClassification rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasControl ;
rdfs:comment "A relation between a Record and a Security Classification that denotes the required level of Security Clearance an Agent needs to possess to access the Record."@en ;
rdfs:label "requires Security Classification"@en .
### http://linked.data.gov.au/def/agrif#sharedWith
:sharedWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :wasAssociatedWith ;
rdfs:comment "A relation that indicates that a Record was shared with an Agent as defined in a Share Activity."@en ;
rdfs:label "shared With"@en .
### http://linked.data.gov.au/def/agrif#storedIn
:storedIn rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:comment "A relation that indicates the Storage Location of an Artefact."@en ;
rdfs:label "stored In"@en .
### http://linked.data.gov.au/def/agrif#transferredFrom
:transferredFrom rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines that the Control of a Record has been transferred from that Role."@en ;
rdfs:label "transferred From"@en .
### http://linked.data.gov.au/def/agrif#transferredTo
:transferredTo rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that defines that the Control of a Record has been transferred to that new Role."@en ;
rdfs:label "transferred To"@en .
### http://linked.data.gov.au/def/agrif#triggeredBy
:triggeredBy rdf:type owl:ObjectProperty ;
owl:inverseOf :triggers ;
rdfs:comment "A relation that indicates that an Event has been initiated by a Trigger."@en ;
rdfs:label "triggered By"@en .
### http://linked.data.gov.au/def/agrif#triggers
:triggers rdf:type owl:ObjectProperty ;
rdfs:comment "A relation that indicates that a Trigger has initiated a Change Event."@en ;
rdfs:label "triggers"@en .
### http://linked.data.gov.au/def/agrif#usedRecord
:usedRecord rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between an Activity and a Record the Activity uses."@en ;
rdfs:label "used Record"@en .
### http://linked.data.gov.au/def/agrif#wasAssociatedWith
:wasAssociatedWith rdf:type owl:ObjectProperty ;
dcterms:source <https://www.w3.org/TR/prov-o/#wasAssociatedWith> ;
rdfs:comment "A relation that assigns responsibility of an Agent with an Activity or Event."@en ;
rdfs:label "was Associated With"@en .
#################################################################
# Data properties
#################################################################
### http://linked.data.gov.au/def/agrif#checksum
:checksum rdf:type owl:DatatypeProperty ;
rdfs:range xsd:float ;
rdfs:comment "A checksum is a small-sized datum derived from a block of digital data representing a Record for the purpose of detecting errors during the transfer or storage of a Record."@en .
### http://linked.data.gov.au/def/agrif#disposalClassNumber
:disposalClassNumber rdf:type owl:DatatypeProperty ;
rdfs:range xsd:integer ;
rdfs:comment "The number defining the sentencing requirements of a Record."@en .
### http://linked.data.gov.au/def/agrif#endedAtTime
:endedAtTime rdf:type owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
dcterms:source <https://www.w3.org/TR/prov-o/#endedAtTime> ;
rdfs:comment "The time at which an Activity ended."@en .
### http://linked.data.gov.au/def/agrif#filename
:filename rdf:type owl:DatatypeProperty ;
rdfs:comment "A filename is a name used to uniquely identify a computer file stored in a file system." .
### http://linked.data.gov.au/def/agrif#filesize
:filesize rdf:type owl:DatatypeProperty ;
rdfs:comment "File size is a measure of how much data a computer file contains or how much storage it consumes."@en .
### http://linked.data.gov.au/def/agrif#format
:format rdf:type owl:DatatypeProperty ;
dcterms:source <http://purl.org/dc/elements/1.1/format> ;
rdfs:comment "The file format, physical medium, or dimensions of the resource."@en .
### http://linked.data.gov.au/def/agrif#seriesNumber
:seriesNumber rdf:type owl:DatatypeProperty ;
rdfs:range xsd:integer ;
rdfs:comment "A seriesNumber is a numerical identifier for a Series."@en .
### http://linked.data.gov.au/def/agrif#softwareAssignedID
:softwareAssignedID rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:comment "A softwareAssignedID is an identifier given to an Artefact by an Information System."@en .
### http://linked.data.gov.au/def/agrif#startedAtTime
:startedAtTime rdf:type owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
dcterms:source <https://www.w3.org/TR/prov-o/#startedAtTime> ;
rdfs:comment "The time at which and Activity started"@en .
#################################################################
# Classes
#################################################################
### http://linked.data.gov.au/def/agrif#AGIFTFunction
:AGIFTFunction rdf:type owl:Class ;
rdfs:subClassOf :Function ;
rdfs:comment "An AGIFT Function is a Function that classifies a Record according to the Australian Governments' Interactive Functions Thesaurus."@en ;
rdfs:isDefinedBy "https://data.naa.gov.au/def/agift/"@en ;
rdfs:label "AGIFT Function"@en .
### http://linked.data.gov.au/def/agrif#AccessActivity
:AccessActivity rdf:type owl:Class ;
rdfs:subClassOf :Activity ,
[ rdf:type owl:Restriction ;
owl:onProperty :accessedBy ;
owl:someValuesFrom :Agent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :triggers ;
owl:allValuesFrom :AccessTrigger
] ;
rdfs:comment "An Access Activity is an Activity where a Record is accessed by an Agent over a period of time."@en ;
rdfs:label "Access Activity"@en .
### http://linked.data.gov.au/def/agrif#AccessControl
:AccessControl rdf:type owl:Class ;
rdfs:subClassOf :Control ;
rdfs:comment "Access Control is the selective restriction of access to a Record or Artefact."@en ;
rdfs:label "Access Control"@en .
### http://linked.data.gov.au/def/agrif#AccessTrigger
:AccessTrigger rdf:type owl:Class ;
rdfs:subClassOf :Trigger ;
rdfs:comment "An Access Trigger is a Trigger that can be initiated when a Record is accessed."@en ;
rdfs:label "Access Trigger"@en .
### http://linked.data.gov.au/def/agrif#Activity
:Activity rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :qualifiedAssociation ;
owl:someValuesFrom :Association
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :wasAssociatedWith ;
owl:someValuesFrom :Agent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :associatedFunction ;
owl:allValuesFrom :Function
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :guidingPolicy ;
owl:allValuesFrom :Policy
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasLocation ;
owl:allValuesFrom :SpatialLocation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasStatus ;
owl:allValuesFrom :Status
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :requiresSecurityClassification ;
owl:allValuesFrom :SecurityClassification
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :usedRecord ;
owl:allValuesFrom :Record
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :endedAtTime ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :startedAtTime ;
owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime
] ;
dcterms:source <https://www.w3.org/TR/prov-o/#Activity> ;
rdfs:comment "An Activity is something that occurs over a period of time on a Record."@en ;
rdfs:label "Activity"@en .
### http://linked.data.gov.au/def/agrif#Administrator
:Administrator rdf:type owl:Class ;
rdfs:subClassOf :Role ;
rdfs:comment "An Administrator is a Role that has overall responsibility for the administration and functions of an Information System, but not necessarily for the information stored within."@en ;
rdfs:label "Administrator"@en .
### http://linked.data.gov.au/def/agrif#Agent
:Agent rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :actsAs ;
owl:someValuesFrom :Role
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPermission ;
owl:someValuesFrom :Permission
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :positionIn ;
owl:someValuesFrom :Organisation
] ;
dcterms:source <https://www.w3.org/TR/prov-o/#Agent> ;
rdfs:comment "An Agent is a corporate entity, organisational element or system, or individual responsible for the performance of some Activity or Event, including those on Records."@en ;
rdfs:label "Agent"@en .
### http://linked.data.gov.au/def/agrif#Artefact
:Artefact rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasQuality ;
owl:someValuesFrom :PreservationQuality
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :isAffectedBy ;
owl:someValuesFrom :Event
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :isChangedBy ;
owl:someValuesFrom :InformationSystem
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :storedIn ;
owl:someValuesFrom :IntellectualControlSystem
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasLocation ;
owl:allValuesFrom :SpatialLocation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :relatedTo ;
owl:allValuesFrom :Artefact
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :requiresSecurityClassification ;
owl:allValuesFrom :SecurityClassification
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :softwareAssignedID ;
owl:someValuesFrom xsd:string
] ;
rdfs:comment "An Artefact is an object that is made by a Person and that is to be preserved."@en ;
rdfs:label "Artefact"@en .
### http://linked.data.gov.au/def/agrif#ArtefactChangeEvent
:ArtefactChangeEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ,
[ rdf:type owl:Restriction ;
owl:onProperty :affects ;
owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger ;
owl:onClass :Artefact
] ;
rdfs:comment "An Artefact Change Event is an Event that results in a new version of an Artefact."@en ;
rdfs:label "Artefact Change Event"@en .
### http://linked.data.gov.au/def/agrif#ArtefactControlEvent
:ArtefactControlEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasControl ;
owl:allValuesFrom :Control
] ;
rdfs:comment "An Artefact Control Event is an Event that requires a particular level of access to an Artefact."@en ;
rdfs:label "Artefact Control Event"@en .
### http://linked.data.gov.au/def/agrif#ArtefactPublishEvent
:ArtefactPublishEvent rdf:type owl:Class ;
rdfs:subClassOf :ArtefactControlEvent ;
rdfs:comment "An Artefact Publish Event is an Event that gives indiscriminate access to an Artefact to a set of Agents."@en ;
rdfs:label "Artefact Publish Event"@en .
### http://linked.data.gov.au/def/agrif#ArtefactSendEvent
:ArtefactSendEvent rdf:type owl:Class ;
rdfs:subClassOf :ArtefactChangeEvent ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasTargetAgent ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Agent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasSourceAgent ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Agent
] ;
rdfs:comment "An Artefact Send Event is an Event that results in a new version or a set of new versions of an Artefact at a target Agent or a set of target Agents."@en ;
rdfs:label "Artefact Send Event"@en .
### http://linked.data.gov.au/def/agrif#ArtefactShareEvent
:ArtefactShareEvent rdf:type owl:Class ;
rdfs:subClassOf :ArtefactControlEvent ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasTargetAgent ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Agent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasSourceAgent ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Agent
] ;
rdfs:comment "An Artefact Share Event is an Event that gives access to an Artefact to an Agent or a defined set of Agents."@en ;
rdfs:label "Artefact Share Event"@en .
### http://linked.data.gov.au/def/agrif#Association
:Association rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :associatedRole ;
owl:allValuesFrom :Role
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasAgent ;
owl:allValuesFrom :Agent
] ;
dcterms:source <https://www.w3.org/TR/prov-o/#Association> ;
rdfs:comment "An Association is a qualified assignment of responsibility to an Agent in an Activity or Event, indicating that the Agent had a Role in the Activity."@en ;
rdfs:label "Association"@en .
### http://linked.data.gov.au/def/agrif#BusinessOwner
:BusinessOwner rdf:type owl:Class ;
rdfs:subClassOf :Role ;
rdfs:comment "A Business Owner is the Role that has the managerial control of a Function."@en ;
rdfs:label "Business Owner"@en .
### http://linked.data.gov.au/def/agrif#Classifier
:Classifier rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :associatedFunction ;
owl:allValuesFrom :Function
] ;
rdfs:comment "A Classifier is a machine-generated and applied category that a set of Records belong to."@en ;
rdfs:label "Classifier"@en .
### http://linked.data.gov.au/def/agrif#Collection
:Collection rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasPart ;
owl:someValuesFrom :Artefact
] ;
rdfs:comment "A Collection is an aggregation of Artefact items."@en ;
rdfs:label "Collection"@en .
### http://linked.data.gov.au/def/agrif#Control
:Control rdf:type owl:Class ;
rdfs:comment "A Control is a security or access measure that safeguards or restricts access to an asset."@en ;
rdfs:label "Control"@en .
### http://linked.data.gov.au/def/agrif#ControlledVocabulary
:ControlledVocabulary rdf:type owl:Class ;
rdfs:subClassOf :IntellectualControlSystem ,
[ rdf:type owl:Restriction ;
owl:onProperty :associatedFunction ;
owl:allValuesFrom :Function
] ;
rdfs:comment "A Controlled Vocabulary is an Intellectual Control System that provides a way to organize Records that facilitates a later discovery of a Record."@en ;
rdfs:label "Controlled Vocabulary"@en ;
rdfs:seeAlso "http://www.w3.org/2004/02/skos/core#ConceptScheme" .
### http://linked.data.gov.au/def/agrif#Coverage
:Coverage rdf:type owl:Class ;
rdfs:comment "A Coverage denotes the jurisdictional applicability, or the temporal and/or spatial extent to which a Record is observed."@en ;
rdfs:label "Coverage"@en .
### http://linked.data.gov.au/def/agrif#CreationEvent
:CreationEvent rdf:type owl:Class ;
rdfs:subClassOf :Event ;
rdfs:comment "A Record Creation Event is an Event that results in the creation of a Record."@en ;
rdfs:label "Record Creation Event"@en .
### http://linked.data.gov.au/def/agrif#Creator
:Creator rdf:type owl:Class ;
rdfs:subClassOf :Role ;
rdfs:comment "A Creator is the Agent that has created a Record or Artefact."@en ;
rdfs:label "Creator"@en .
### http://linked.data.gov.au/def/agrif#DecisionStatus
:DecisionStatus rdf:type owl:Class ;
rdfs:subClassOf :Status ;
rdfs:comment "A Decision Status is a Status that indicates the approval or disapproval of a Decision Event."@en ;
rdfs:label "Decision Status"@en .
### http://linked.data.gov.au/def/agrif#DigitalArtefact
:DigitalArtefact rdf:type owl:Class ;
rdfs:subClassOf :Artefact ,
[ rdf:type owl:Restriction ;
owl:onProperty :storedIn ;
owl:someValuesFrom :InformationSystem
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :filename ;
owl:someValuesFrom rdfs:Literal
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :filesize ;
owl:someValuesFrom xsd:long
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :format ;
owl:someValuesFrom rdfs:Literal
] ;
rdfs:comment "A Digital Artefact is an Artefact that is of a digital nature and stored in an Information System."@en ;
rdfs:label "Digital Artefact"@en .
### http://linked.data.gov.au/def/agrif#DigitalHoldingSpace
:DigitalHoldingSpace rdf:type owl:Class ;
rdfs:subClassOf :HoldingSpace ;
rdfs:comment "A Digital Holding Space is a space that is used or reserved for the storage of a Digital Artefact on a storage medium or virtual storage space."@en ;
rdfs:label "Digital Holding Space"@en .
### http://linked.data.gov.au/def/agrif#DigitalPreservationPolicy
:DigitalPreservationPolicy rdf:type owl:Class ;
rdfs:subClassOf :Policy ;
rdfs:comment "The Digital Preservation Policy defines the process of active management by which the National Archives ensures that a digital object will be accessible in the future."@en ;
rdfs:label "Digital Preservation Policy"@en .
### http://linked.data.gov.au/def/agrif#DisposalClass
:DisposalClass rdf:type owl:Class ;
rdfs:subClassOf :RecordsAuthorityPolicy ,
[ rdf:type owl:Restriction ;
owl:onProperty :disposalClassNumber ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:integer
] ;
rdfs:comment "A Disposal Class is a Policy that defines the sentencing requirements of an item."@en ;
rdfs:label "Disposal Class"@en .
### http://linked.data.gov.au/def/agrif#Event
:Event rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :affects ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( :Artefact
:Record
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :qualifiedAssociation ;
owl:someValuesFrom :Association
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :wasAssociatedWith ;
owl:someValuesFrom :Agent
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :associatedFunction ;
owl:allValuesFrom :Function
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :guidingPolicy ;
owl:allValuesFrom :Policy
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasStatus ;
owl:allValuesFrom :Status
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :priorEvent ;
owl:allValuesFrom :Event
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :triggeredBy ;
owl:allValuesFrom :Trigger
] ;
dcterms:source <https://www.w3.org/TR/prov-o/#InstantaneousEvent> ;
rdfs:comment "An Event denotes an instantaneous transition in the world."@en ;
rdfs:label "Event"@en .
### http://linked.data.gov.au/def/agrif#FormFactor
:FormFactor rdf:type owl:Class ;
rdfs:comment "A Form Factor defines and prescribes the size, shape, and other physical specifications of a Physical Artefact that is stored."@en ;
rdfs:label "Form Factor"@en .
### http://linked.data.gov.au/def/agrif#Function
:Function rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :guidingPolicy ;
owl:allValuesFrom :Policy
] ;
rdfs:comment "A Function is a process that is performed routinely to carry out a part of the mandate of an Australian Government Agency."@en ,
"A Function reflects the responsibilities of an Organisation that can be delegated through official channels. [Commonwealth Records Series Manual]"@en ;
rdfs:label "Function"@en .
### http://linked.data.gov.au/def/agrif#HoldingSpace
:HoldingSpace rdf:type owl:Class ;
rdfs:subClassOf :SpatialLocation ;
rdfs:comment "A Holding Space is a space that is used or reserved for the storage of an Artefact."@en ;
rdfs:label "Holding Space"@en .
### http://linked.data.gov.au/def/agrif#InformationManagementPolicy
:InformationManagementPolicy rdf:type owl:Class ;
rdfs:subClassOf :Policy ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasDisposalClass ;
owl:allValuesFrom :DisposalClass
] ;
rdfs:comment "An Information Management Policy is a Policy that helps to align information management practices to fulfill the requirements of an information governance framework. An Information Management Policy provides direction and guidance to staff for creating, capturing and managing information to satisfy business, legal and stakeholder requirements, and assigns responsibilities across the agency."@en ;
rdfs:label "Information Management Policy"@en .
### http://linked.data.gov.au/def/agrif#InformationSystem
:InformationSystem rdf:type owl:Class ;
rdfs:comment "An Information System is an organized system for the collection, organization, storage and communication of information, typically Digital Artefacts or Records."@en ;
rdfs:label "Information System"@en .
### http://linked.data.gov.au/def/agrif#IntellectualControlSystem
:IntellectualControlSystem rdf:type owl:Class ;
rdfs:subClassOf :InformationSystem ,
[ rdf:type owl:Restriction ;
owl:onProperty :guidingPolicy ;
owl:allValuesFrom :Policy
] ;
rdfs:comment "An Intellectual Control System is a System that enables Agents to locate and manage information."@en ;
rdfs:label "Intellectual Control System"@en .
### http://linked.data.gov.au/def/agrif#JurisdictionalCoverage
:JurisdictionalCoverage rdf:type owl:Class ;
rdfs:subClassOf :Coverage ;
rdfs:comment "A Jurisdictional Coverage denotes the jurisdictional applicability of the Record."@en ;
rdfs:label "Jurisdictional Coverage"@en ;
rdfs:seeAlso "http://purl.org/dc/terms/Jurisdiction" .
### http://linked.data.gov.au/def/agrif#LogicalCollection
:LogicalCollection rdf:type owl:Class ;
rdfs:subClassOf :Collection ;
rdfs:comment "A Logical Collection is an aggregation of Artefact items that are stored within one physical file."@en ;
rdfs:label "Logical Collection"@en .
### http://linked.data.gov.au/def/agrif#MaintainActivity
:MaintainActivity rdf:type owl:Class ;
rdfs:subClassOf :Activity ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasQuality ;
owl:someValuesFrom :PreservationQuality
] ;
rdfs:comment "A Maintain Activity is an Activity to maintain a Record over a period of time due to a BusinessFunction or Policy."@en ;
rdfs:label "Maintain Activity"@en .
### http://linked.data.gov.au/def/agrif#Manifest
:Manifest rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :checksum ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:float
] ;
rdfs:comment "A Manifest describes the files involved in the transfer of a Record from an Agency to the National Archives, including details such as the filesize, the destination hierarchy and the file's metadata."@en ;
rdfs:label "Manifest"@en .
### http://linked.data.gov.au/def/agrif#MinimumMetadataSetPolicy
:MinimumMetadataSetPolicy rdf:type owl:Class ;
rdfs:subClassOf :Policy ;
rdfs:comment "The Minimum Metadata Set Policy is a Policy that has been developed by the National Archives of Australia to identify metadata properties essential for agency management of information as well as those needed for records which will be transferred to the Archives. It supports the Digital Continuity 2020 principles of interoperable systems and processes and is a practical application of the Australian Government Recordkeeping Metadata Standard 2.2 (AGRkMS) to support metadata implementation and information use in agencies."@en ;
rdfs:label "Minimum Metadata Set Policy"@en .
### http://linked.data.gov.au/def/agrif#Organisation
:Organisation rdf:type owl:Class ;
rdfs:subClassOf :Agent ,
[ rdf:type owl:Restriction ;
owl:onProperty :associatedFunction ;
owl:someValuesFrom :Function
] ;
dcterms:source <https://www.w3.org/TR/prov-o/#Organization> ;
rdfs:comment "An Organisation is a type of Agent that denotes a social or legal institution such as a government agency, a corporation, society, etc."@en ;
rdfs:label "Organisation"@en .