forked from peterjohnlawrence/pronom2020
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Pronom.def.v1.ttl
1535 lines (1532 loc) · 74.5 KB
/
Pronom.def.v1.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
# baseURI: http://data.nationalarchives.gov.uk/formatregistry/def/
# imports: http://data.nationalarchives.gov.uk/formatregistry/def/reification/
# prefix: pronom2020
@prefix chr: <http://www.nationalarchives.gov.uk/PRONOM/chr/> .
@prefix cmp: <http://www.nationalarchives.gov.uk/PRONOM/cmp/> .
@prefix fmt: <http://www.nationalarchives.gov.uk/PRONOM/fmt/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pronom: <http://data.nationalarchives.gov.uk/formatregistry/id/> .
@prefix pronom.Activity: <http://data.nationalarchives.gov.uk/formatregistry/id/Activity/> .
@prefix pronom.Actor: <http://data.nationalarchives.gov.uk/formatregistry/id/Actor/> .
@prefix pronom.ActorType: <http://data.nationalarchives.gov.uk/formatregistry/id/ActorType/> .
@prefix pronom.Alias: <http://data.nationalarchives.gov.uk/formatregistry/id/Alias/> .
@prefix pronom.ByteOrder: <http://data.nationalarchives.gov.uk/formatregistry/id/ByteOrder/> .
@prefix pronom.ByteSequence: <http://data.nationalarchives.gov.uk/formatregistry/id/ByteSequence/> .
@prefix pronom.ByteSequencePosition: <http://data.nationalarchives.gov.uk/formatregistry/id/ByteSequencePosition/> .
@prefix pronom.Classification: <http://data.nationalarchives.gov.uk/formatregistry/id/Classification/> .
@prefix pronom.Container: <http://data.nationalarchives.gov.uk/formatregistry/id/Container/> .
@prefix pronom.ContainerFile: <http://data.nationalarchives.gov.uk/formatregistry/id/ContainerFile/> .
@prefix pronom.ContainerSignature: <http://data.nationalarchives.gov.uk/formatregistry/id/ContainerSignature/> .
@prefix pronom.ContainerType: <http://data.nationalarchives.gov.uk/formatregistry/id/ContainerType/> .
@prefix pronom.Country: <http://data.nationalarchives.gov.uk/formatregistry/id/Country/> .
@prefix pronom.Document: <http://data.nationalarchives.gov.uk/formatregistry/id/Document/> .
@prefix pronom.DocumentType: <http://data.nationalarchives.gov.uk/formatregistry/id/DocumentType/> .
@prefix pronom.ExternalSignature: <http://data.nationalarchives.gov.uk/formatregistry/id/ExternalSignature/> .
@prefix pronom.FileFormatFamily: <http://data.nationalarchives.gov.uk/formatregistry/id/FileFormatFamily/> .
@prefix pronom.FormatIdentifier: <http://data.nationalarchives.gov.uk/formatregistry/id/FormatIdentifier/> .
@prefix pronom.FormatRegistry: <http://data.nationalarchives.gov.uk/formatregistry/id/FormatRegistry/> .
@prefix pronom.InternalSignature: <http://data.nationalarchives.gov.uk/formatregistry/id/InternalSignature/> .
@prefix pronom.Lossiness: <http://data.nationalarchives.gov.uk/formatregistry/id/Lossiness/> .
@prefix pronom.Process: <http://data.nationalarchives.gov.uk/formatregistry/id/Process/> .
@prefix pronom.ProcessType: <http://data.nationalarchives.gov.uk/formatregistry/id/ProcessType/> .
@prefix pronom.Relationship: <http://data.nationalarchives.gov.uk/formatregistry/id/Relationship/> .
@prefix pronom.SoftwareType: <http://data.nationalarchives.gov.uk/formatregistry/id/SoftwareType/> .
@prefix pronom2020: <http://data.nationalarchives.gov.uk/formatregistry/def/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sfw: <http://www.nationalarchives.gov.uk/PRONOM/sfw/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix x-chr: <http://www.nationalarchives.gov.uk/PRONOM/x-chr/> .
@prefix x-cmp: <http://www.nationalarchives.gov.uk/PRONOM/x-cmp/> .
@prefix x-fmt: <http://www.nationalarchives.gov.uk/PRONOM/x-fmt/> .
@prefix x-sfw: <http://www.nationalarchives.gov.uk/PRONOM/x-sfw/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
pronom2020:
rdf:type owl:Ontology ;
owl:imports <http://data.nationalarchives.gov.uk/formatregistry/def/reification/> ;
owl:priorVersion <http://data.nationalarchives.gov.uk/formatregistry/def/0.7/> ;
owl:versionIRI <http://data.nationalarchives.gov.uk/formatregistry/def/0.8/> ;
.
pronom2020:Activity
rdf:type owl:Class ;
rdfs:comment "The group of relationships associated with activities by actors with other entities"@en ;
rdfs:label "Activity relationship"@en ;
rdfs:subClassOf pronom2020:Relation ;
skos:prefLabel "Activity relationship"@en ;
.
pronom2020:Actor
rdf:type owl:Class ;
rdfs:comment "Actors that perform some role with respect to fileFormats, documentation, etc"@en ;
rdfs:label "Actor"@en ;
rdfs:subClassOf pronom2020:Related ;
skos:prefLabel "Actor"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:ActorType
rdf:type owl:Class ;
rdfs:comment "defines the capacity within which an actor functions"@en ;
rdfs:label "ActorType"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "ActorType"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Alias
rdf:type owl:Class ;
rdfs:comment "An alias of an entry in the Registry"@en ;
rdfs:label "Alias"@en ;
rdfs:subClassOf pronom2020:Related ;
skos:prefLabel "Alias"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:AuthoringActivity
rdf:type owl:Class ;
rdfs:label "Authoring activity" ;
rdfs:subClassOf pronom2020:Activity ;
.
pronom2020:ByteOrder
rdf:type owl:Class ;
rdfs:comment "Classification for the byteOrder (endianess) types used."@en ;
rdfs:label "Byte order"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "Byte order" ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:ByteSequence
rdf:type owl:Class ;
rdfs:comment "The individual byteSequences which form an internal or container signature."@en ;
rdfs:label "Byte sequence"@en ;
rdfs:subClassOf pronom2020:Related ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ByteSequencePosition> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.Value> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ByteOrder> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.IndirectOffsetLength> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.IndirectOffsetLocation> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.MaxOffset> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.Offset> ;
] ;
skos:prefLabel "Byte sequence"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:ByteSequencePosition
rdf:type owl:Class ;
rdfs:comment "Classification for the position within the bytestream of the bytesequence pattern."@en ;
rdfs:label "Byte sequence position"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "Byte sequence position"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:CanBeContainedByRelationship
rdf:type owl:Class ;
rdfs:label "Can be contained by Relationship"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Can be contained by Relationship"@en ;
.
pronom2020:CanContainRelationship
rdf:type owl:Class ;
rdfs:label "Can contain"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Can contain"@en ;
.
pronom2020:Classification
rdf:type owl:Class ;
rdfs:comment "The use to which a file format is put" ;
rdfs:label "Classification"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "Classification"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:CompressionType
rdf:type owl:Class ;
pronom2020:seeExternal "http://dbpedia.org/resource/Data_compression"^^xsd:anyURI ;
rdfs:comment "A method of encoding binary data that reduces its overall size. Compression may be lossless or lossy. Lossless compression stores information more efficiently, but ensures the data is the same decoded as it was before encoding. Lossy compression techniques remove information considered to be irrelevant to the representation, meaning that the file is different when decoded to how it was before encoding. Compression is possible because most digital objects contain superfluous data that is not essential to represent the digital object. This superfluous data is known as redundancy. A digital object may be uncompressed."@en ;
rdfs:label "CompressionType"@en ;
rdfs:subClassOf pronom2020:Registry ;
skos:definition "A method of encoding binary data that reduces its overall size. Compression may be lossless or lossy. Lossless compression stores information more efficiently, but ensures the data is the same decoded as it was before encoding. Lossy compression techniques remove information considered to be irrelevant to the representation, meaning that the file is different when decoded to how it was before encoding. Compression is possible because most digital objects contain superfluous data that is not essential to represent the digital object. This superfluous data is known as redundancy. A digital object may be uncompressed."@en ;
skos:prefLabel "CompressionType"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:ContainerFile
rdf:type owl:Class ;
rdfs:comment "A description of one of the files that are anticipated within the associated containerType"@en ;
rdfs:label "ContainerFile"@en ;
rdfs:subClassOf pronom2020:Related ;
skos:prefLabel "ContainerFile"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:ContainerSignature
rdf:type owl:Class ;
rdfs:comment "The signature of a containers contents"@en ;
rdfs:label "Container signature"@en ;
rdfs:subClassOf pronom2020:Signature ;
skos:prefLabel "Container signature"@en ;
.
pronom2020:ContainerType
rdf:type owl:Class ;
rdfs:comment "A category of containers which will have one or more fileFormats with which it is associated. If any of these associated fileFormats are recognozed, then that should aslo trigger the associated container matching"@en ;
rdfs:label "ContainerType"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "ContainerType"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Country
rdf:type owl:Class ;
rdfs:comment "Countries that perform some role with respect to fileFormats, documentaion, etc"@en ;
rdfs:label "Country"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "Country"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:CreateProcess
rdf:type owl:Class ;
rdfs:label "Create process"@en ;
rdfs:subClassOf pronom2020:Process ;
skos:prefLabel "Create process relationship" ;
.
pronom2020:DevelopingActivity
rdf:type owl:Class ;
rdfs:label "Developing activity"@en ;
rdfs:subClassOf pronom2020:Activity ;
.
pronom2020:Document
rdf:type owl:Class ;
rdfs:comment "Documents that perform some role with respect to fileFormats, documentation, etc"@en ;
rdfs:label "Document"@en ;
rdfs:subClassOf pronom2020:Related ;
skos:prefLabel "Document"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:DocumentType
rdf:type owl:Class ;
rdfs:comment "The statii of the usage of a document: authoritive, informative, and speculative"@en ;
rdfs:label "DocumentType"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "DocumentType"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Encoding
rdf:type owl:Class ;
pronom2020:seeExternal "http://www.unicode.org/reports/tr17/"^^xsd:anyURI ;
rdfs:comment "This entity models character encodings (character maps) employed by file formats. Defined in Whistler, K and Davis, M, 2000, Character Encoding Model, Unicode Technical Report, 17 " ;
rdfs:label "Encoding" ;
rdfs:subClassOf pronom2020:Registry ;
skos:prefLabel "Encoding" ;
.
pronom2020:EquivalentToRelationship
rdf:type owl:Class ;
rdfs:label "Equivalent to Relationship"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Equivalent to Relationship"@en ;
.
pronom2020:ExternalSignature
rdf:type owl:Class ;
pronom2020:seeExternal "http://dbpedia.org/resource/Filename_extension"^^xsd:anyURI ;
pronom2020:seeExternal "https://www.file-extension.org"^^xsd:anyURI ;
rdfs:comment "A file extension is a suffix to the name of a computer file applied to indicate the type of file format. It gives a human readable identifier for the file; such that users can quickly understand the type of file it is without having to open it. The filename extension associates the file with certain software packages, helping an application program recognise whether it is of a type that it can work with. In some operating systems, such as DOS, a file extension is required, but in others, such as Unix, it is optional. Some operating systems limit the length of the extension and some are case sensitive. On Windows computers, extensions consist of a dot '.' at the end of a file name, typically followed by three letters to identify the type of file. On a Unix based system, the file name is a single string, with the '.' being just another character, and with the file name being of variable-length. A file extension is not a reliable identifier of the format of the file. An extension may be linked to more than one program; they are not assigned by a controlling authority, and can be easily changed."@en ;
rdfs:label "External Signature"@en ;
rdfs:subClassOf pronom2020:Signature ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/externalSignature.Extension> ;
] ;
skos:prefLabel "External Signature"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:ExtractMetadataProcess
rdf:type owl:Class ;
rdfs:label "Extract Metadata process"@en ;
rdfs:subClassOf pronom2020:Process ;
skos:prefLabel "Extract Metadata process" ;
.
pronom2020:Family
rdf:type owl:Class ;
rdfs:comment "A collection or family of things with a feature in common."@en ;
rdfs:label "Family"@en ;
rdfs:subClassOf skos:Collection ;
skos:inScheme pronom2020:PRONOM ;
skos:prefLabel "Family"@en ;
.
pronom2020:FileFormat
rdf:type owl:Class ;
rdfs:label "File Format"@en ;
rdfs:subClassOf pronom2020:Registry ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/registry.puid> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.ByteOrder> ;
] ;
skos:prefLabel "File Format"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:FileFormatFamily
rdf:type owl:Class ;
rdfs:comment "A collection of file formats with a common feature"@en ;
rdfs:label "File format family"@en ;
rdfs:subClassOf pronom2020:Family ;
skos:prefLabel "File format family"@en ;
.
pronom2020:FormatIdentifier
rdf:type owl:Class ;
rdfs:comment "External identifier of the file format registered with an external registry of formats"@en ;
rdfs:label "Format identifier"@en ;
rdfs:subClassOf pronom2020:Related ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/formatIdentifier.FormatRegistry> ;
] ;
skos:prefLabel "Format identifier"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:FormatRegistry
rdf:type owl:Class ;
rdfs:comment "An external registry/catalog of file formats"@en ;
rdfs:label "Format Registry" ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "Format Registry"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:HasPriorityOverRelationship
rdf:type owl:Class ;
rdfs:label "Has priority over Relationship"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Has priority over Relationship"@en ;
.
pronom2020:ID
rdf:type owl:AnnotationProperty ;
rdfs:comment "The superproperty that contains the properties that reference the SQL primary keys for the purpose of maintaining a crosss reference with the legacy database."@en ;
rdfs:label "ID"@en ;
.
pronom2020:IdentifyProcess
rdf:type owl:Class ;
rdfs:label "Identify process"@en ;
rdfs:subClassOf pronom2020:Process ;
skos:prefLabel "Identify process" ;
.
pronom2020:InternalSignature
rdf:type owl:Class ;
rdfs:comment "In PRONOM, we attempt to associate each file format it with a binary signature, termed an internal signature. Internal signatures are created from unique byte sequences that are com-mon within digital objects of the same type. The internal signature is a representation of these byte sequences using hexadecimal notation and simple regular expression features that allow signature developers to create more precise signatures. A signature byte sequence is mod-elled by describing its starting position within a bitstream and its value. The starting position can be either absolute (the byte sequence starts at a fixed position within the bitstream) or variable (the byte sequence starts at any offset within the bitstream). By definition, a file for-mat specification imposes a specific structure upon the content of the bitstream, which is consistent between all digital objects in that format. The characteristics of this structure may therefore be used as a signature for identifying the format."@en ;
rdfs:label "Internal signature"@en ;
rdfs:subClassOf pronom2020:Signature ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/internalSignature.Sequence> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty <http://data.nationalarchives.gov.uk/formatregistry/def/internalSignature.ByteSequence> ;
] ;
skos:prefLabel "Internal signature"@en ;
.
pronom2020:Lossiness
rdf:type owl:Class ;
rdfs:comment "Lossless compression is a class of data compression algorithms that allows the original data to be perfectly reconstructed from the compressed data. By contrast, lossy compression permits reconstruction only of an approximation of the original data, though usually with greatly improved compression rates (and therefore reduced media sizes)."@en ;
rdfs:label "Lossiness"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:definition "Lossless compression is a class of data compression algorithms that allows the original data to be perfectly reconstructed from the compressed data. By contrast, lossy compression permits reconstruction only of an approximation of the original data, though usually with greatly improved compression rates (and therefore reduced media sizes)."@en ;
skos:prefLabel "Lossiness"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:MaintainingActivity
rdf:type owl:Class ;
rdfs:label "Maintaining activity"@en ;
rdfs:subClassOf pronom2020:Activity ;
.
pronom2020:PRONOM
rdf:type skos:ConceptScheme ;
rdfs:comment "PRONOM (Public Record Office and Nôm 喃) [1] is a web-based technical registry to support digital preservation services, developed by The National Archives of the United Kingdom." ;
rdfs:label "PRONOM" ;
skos:prefLabel "PRONOM" ;
.
pronom2020:PriorVersionOfRelationship
rdf:type owl:Class ;
rdfs:label "Prior version of Relationship"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Prior version of Relationship"@en ;
.
pronom2020:Process
rdf:type owl:Class ;
rdfs:comment "The group of relationships associated with processes by software and fileFormats"@en ;
rdfs:label "Process"@en ;
rdfs:subClassOf pronom2020:Relation ;
skos:prefLabel "Process relationship" ;
.
pronom2020:PublishingActivity
rdf:type owl:Class ;
rdfs:label "Publishing activity"@en ;
rdfs:subClassOf pronom2020:Activity ;
.
pronom2020:Reference
rdf:type owl:Class ;
rdfs:comment "The superclass of all reference things"@en ;
rdfs:label "Reference"@en ;
rdfs:subClassOf skos:Concept ;
skos:prefLabel "Reference"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Registry
rdf:type owl:Class ;
rdfs:comment "The superclass of all registry things, aka things that have been given a PUID"@en ;
rdfs:label "Registry"@en ;
rdfs:subClassOf skos:Concept ;
skos:prefLabel "Registry"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Related
rdf:type owl:Class ;
rdfs:comment "The superclass of things associated with Registry entities, providing additional information"@en ;
rdfs:label "Related"@en ;
rdfs:subClassOf skos:Concept ;
skos:prefLabel "Related"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Relation
rdf:type owl:Class ;
rdfs:comment "The superclass of relations between entities. It is not intended that this should be instantiated, an abstract entity"@en ;
rdfs:label "Relation"@en ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf skos:Concept ;
skos:prefLabel "Relation"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Relationship
rdf:type owl:Class ;
rdfs:comment "The group of relationships between fileFormats"@en ;
rdfs:label "File format relationship"@en ;
rdfs:subClassOf pronom2020:Relation ;
skos:prefLabel "File format relationship" ;
.
pronom2020:RenderProcess
rdf:type owl:Class ;
rdfs:label "Render process"@en ;
rdfs:subClassOf pronom2020:Process ;
skos:prefLabel "Render process" ;
.
pronom2020:Signature
rdf:type owl:Class ;
rdfs:comment "The superclass of all signatures: container, external, and internal."@en ;
rdfs:label "Signature"@en ;
rdfs:subClassOf pronom2020:Related ;
skos:prefLabel "Signature"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:Software
rdf:type owl:Class ;
rdfs:comment "Software related to the fileFormats"@en ;
rdfs:label "Software"@en ;
rdfs:subClassOf pronom2020:Registry ;
skos:prefLabel "Software"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:SoftwareType
rdf:type owl:Class ;
rdfs:comment "Generic software type: the purpose to which the software might be put"@en ;
rdfs:label "SoftwareType"@en ;
rdfs:subClassOf pronom2020:Reference ;
skos:prefLabel "SoftwareType"@en ;
skos:topConceptOf pronom2020:PRONOM ;
.
pronom2020:SourcingActivity
rdf:type owl:Class ;
rdfs:label "Sourcing activity"@en ;
rdfs:subClassOf pronom2020:Activity ;
.
pronom2020:SubTypeOfRelationship
rdf:type owl:Class ;
rdfs:label "Subtype of Relationship"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Subtype of Relationship"@en ;
.
pronom2020:SubsequentVersionOfRelationship
rdf:type owl:Class ;
rdfs:label "Subsequent version of Relationship"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Subsequent version of Relationship"@en ;
.
pronom2020:SuperTypeOfRelationship
rdf:type owl:Class ;
rdfs:label "Supertype of Relationship"@en ;
rdfs:subClassOf pronom2020:Relationship ;
skos:prefLabel "Supertype of Relationship"@en ;
.
pronom2020:SupportingActivity
rdf:type owl:Class ;
rdfs:label "Supporting activity"@en ;
rdfs:subClassOf pronom2020:Activity ;
.
pronom2020:ValidateProcess
rdf:type owl:Class ;
rdfs:label "Validate process"@en ;
rdfs:subClassOf pronom2020:Process ;
skos:prefLabel "Validate process" ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/about.Relationship>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:FileFormat ;
rdfs:label "about Relationship"@en ;
rdfs:range pronom2020:Relationship ;
rdfs:subPropertyOf pronom2020:relationship ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/with.FileFormat> ;
skos:prefLabel "about Relationship"@en ;
.
pronom2020:activity
rdf:type owl:ObjectProperty ;
rdfs:comment "Abstract property solely to act as a super property of similarly related properties" ;
rdfs:label "activity relationship"@en ;
rdfs:subPropertyOf pronom2020:relationships ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/activity.On>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:Activity ;
rdfs:label "activity on" ;
rdfs:subPropertyOf pronom2020:activity ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/resultOf.Activity> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor.Address>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The address of the actor"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "address"@en ;
rdfs:range xsd:string ;
skos:prefLabel "address"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor.Contact>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The name of the contact or department within the actor organization"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "contact"@en ;
rdfs:range xsd:string ;
skos:prefLabel "contact"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor.Country>
rdf:type owl:ObjectProperty ;
rdfs:comment "Country within which actor resides/operates"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "has address in Country"@en ;
rdfs:range pronom2020:Country ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/country.Actor> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor.Email>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The email of the actor"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "email Address"@en ;
rdfs:range xsd:anyURI ;
skos:prefLabel "email Address"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor.Support.Website>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The support website of the actor"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "support website"@en ;
rdfs:range xsd:anyURI ;
skos:prefLabel "support website"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor.Telephone>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The telephone of the actor"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "telephone"@en ;
rdfs:range xsd:string ;
skos:prefLabel "telephone"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor.Website>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The website of the actor"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "website"@en ;
rdfs:range xsd:anyURI ;
skos:prefLabel "website"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actor_types.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: actor_types"@en ;
rdfs:domain pronom2020:ActorType ;
rdfs:label "actor_types.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/actors.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: actors"@en ;
rdfs:domain pronom2020:Actor ;
rdfs:label "actors.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/alias.Registry>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:Alias ;
rdfs:label "for RegistryThing" ;
rdfs:range pronom2020:Registry ;
rdfs:subPropertyOf pronom2020:relations ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/registry.Alias> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/alias.Version>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The version of the alias"@en ;
rdfs:domain pronom2020:Alias ;
rdfs:label "version"@en ;
rdfs:range xsd:string ;
skos:prefLabel "version"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteOrder.ByteSequence>
rdf:type owl:ObjectProperty ;
rdfs:comment "ByteSequences that use this byteOrder"@en ;
rdfs:label "used by byteSequence"@en ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ByteOrder> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteOrder.FileFormat>
rdf:type owl:ObjectProperty ;
rdfs:comment "FileFormats that use this byteOrder"@en ;
rdfs:domain pronom2020:ByteOrder ;
rdfs:label "used by fileFormat"@en ;
rdfs:range pronom2020:FileFormat ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.ByteOrder> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ByteOrder>
rdf:type owl:ObjectProperty ;
rdfs:comment "Allowable byte orders for the byteSequence"@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "uses byteOrder"@en ;
rdfs:range pronom2020:ByteOrder ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/byteOrder.ByteSequence> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ByteSequencePosition>
rdf:type owl:ObjectProperty ;
rdfs:comment "Indicates whether the sequence occurs at a absolute or variable offset within the bitstream"@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "is in position"@en ;
rdfs:range pronom2020:ByteSequencePosition ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequencePosition.ByteSequence> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ContainerFile>
rdf:type owl:ObjectProperty ;
rdfs:comment "A byte sequence that forms part of the containerFile signature within a containerSignature"@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "referenced by containerFile"@en ;
rdfs:range pronom2020:ContainerFile ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/containerFile.ByteSequence> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.IndirectOffsetLength>
rdf:type owl:DatatypeProperty ;
rdfs:comment """If Byte Sequence Position Type is “Absolute from BOF”: offset in bytes from the beginning of the bitstream (offset 0) at which the sequence begins
If Byte Sequence Position Type is “Absolute from EOF”: offset in bytes from the end of the bitstream (offset 0) at which the sequence ends"""@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "indirect offset length" ;
rdfs:range xsd:integer ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.IndirectOffsetLocation>
rdf:type owl:DatatypeProperty ;
rdfs:comment "Defines the location of the indirect offset within the byte stream."@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "indirect offset location"@en ;
rdfs:range xsd:integer ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.InternalSignature>
rdf:type owl:ObjectProperty ;
rdfs:comment "Internal signature that uses this byteSequence"@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "used by internalSignature" ;
rdfs:range pronom2020:InternalSignature ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/internalSignature.ByteSequence> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.MaxOffset>
rdf:type owl:DatatypeProperty ;
rdfs:comment "Maximum permissable offset"@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "max offset"@en ;
rdfs:range xsd:integer ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.Offset>
rdf:type owl:DatatypeProperty ;
rdfs:comment "If Byte Sequence Position Type is “Absolute from BOF”: offset in bytes from the beginning of the bitstream (offset 0) at which the sequence begins" ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "offset"@en ;
rdfs:range xsd:integer ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.Position>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The cardinailty of this byteSequence within the InternalSignatureCollection of the BinarySignature" ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "position"@en ;
rdfs:range xsd:integer ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.Value>
rdf:type owl:DatatypeProperty ;
rdfs:comment "Value of the sequence, expressed as hexadecimal byte values and regular expressions"@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "value"@en ;
rdfs:range xsd:string ;
skos:prefLabel "value" ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byteSequencePosition.ByteSequence>
rdf:type owl:ObjectProperty ;
rdfs:comment "Byte sequence poistion used by byteSequences"@en ;
rdfs:domain pronom2020:ByteSequencePosition ;
rdfs:label "used by byteSequence"@en ;
rdfs:range pronom2020:ByteSequence ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ByteSequencePosition> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byte_orders.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: byte_orders"@en ;
rdfs:domain pronom2020:ByteOrder ;
rdfs:label "byte_orders.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/byte_sequences.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: byte_sequences"@en ;
rdfs:domain pronom2020:ByteSequence ;
rdfs:label "byte_sequences.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/classification.FileFormat>
rdf:type owl:ObjectProperty ;
rdfs:comment "The fileFormats that belong to this classification."@en ;
rdfs:label "for fileFormat"@en ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.Classification> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/compressionType.FileFormat>
rdf:type owl:ObjectProperty ;
rdfs:comment "Fileformats that used this CompressionType@en}" ;
rdfs:domain pronom2020:CompressionType ;
rdfs:label "used by fileFormat"@en ;
rdfs:range pronom2020:FileFormat ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.CompressionType> ;
skos:prefLabel "used by fileFormat"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/compressionType.Lossiness>
rdf:type owl:ObjectProperty ;
rdfs:comment "Lossiness class of this compressionType"@en ;
rdfs:domain pronom2020:CompressionType ;
rdfs:label "exhibits lossiness"@en ;
rdfs:range pronom2020:Lossiness ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/lossiness.CompressionType> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/compression_aliases.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: compression_aliases"@en ;
rdfs:domain pronom2020:Alias ;
rdfs:label "compression_aliases.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/compression_types.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: compression_types"@en ;
rdfs:domain pronom2020:CompressionType ;
rdfs:label "compression_types.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerFile.ByteSequence>
rdf:type owl:ObjectProperty ;
rdfs:comment "ByteSequence required for this file within a containerSignature"@en ;
rdfs:domain pronom2020:ContainerFile ;
rdfs:label "requires byteSequence"@en ;
rdfs:range pronom2020:ByteSequence ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/byteSequence.ContainerFile> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerFile.ContainerSignature>
rdf:type owl:ObjectProperty ;
rdfs:comment "Specifies the containerSignature that is associated with this containerFile pattern"@en ;
rdfs:domain pronom2020:ContainerFile ;
rdfs:label "belongs to containerSignature"@en ;
rdfs:range pronom2020:ContainerSignature ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/containerSignature.ContainerFile> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerFile.FilePath>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The filepath of the file within the container that is the subject/focus of the signature."@en ;
rdfs:domain pronom2020:ContainerFile ;
rdfs:label "container signature file path"@en ;
rdfs:range xsd:string ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerSignature.ContainerFile>
rdf:type owl:ObjectProperty ;
rdfs:comment "Specifies the containerFile that is anticipated in this containerSignature"@en ;
rdfs:domain pronom2020:ContainerSignature ;
rdfs:label "for ContainerFile"@en ;
rdfs:range pronom2020:ContainerFile ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/containerFile.ContainerSignature> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerSignature.ContainerType>
rdf:type owl:ObjectProperty ;
rdfs:comment "Specifies the containerType to which this containerSignature is registered"@en ;
rdfs:domain pronom2020:ContainerSignature ;
rdfs:label "registered for Container type"@en ;
rdfs:range pronom2020:ContainerType ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/containerType.ContainerSignature> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerSignature.FileFormat>
rdf:type owl:ObjectProperty ;
rdfs:comment "Specifies the fileFormat to which this containerSignature maps."@en ;
rdfs:domain pronom2020:ContainerSignature ;
rdfs:label "maps to fileFormat"@en ;
rdfs:range pronom2020:FileFormat ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.ContainerSignature> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerSignature.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating container-signature XML element: containerSignature"@en ;
rdfs:domain pronom2020:ContainerSignature ;
rdfs:label "containerSignature.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerType.ContainerSignature>
rdf:type owl:ObjectProperty ;
rdfs:comment "Registration for Container Signature"@en ;
rdfs:domain pronom2020:ContainerType ;
rdfs:label "registration for Container Signature"@en ;
rdfs:range pronom2020:ContainerSignature ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/containerSignature.ContainerType> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/containerType.FileFormat>
rdf:type owl:ObjectProperty ;
rdfs:comment "Refers to a fileFomat that belongs to this container type and will therefore trigger associated container scanning"@en ;
rdfs:domain pronom2020:ContainerType ;
rdfs:label "triggering fileFormat"@en ;
rdfs:range pronom2020:FileFormat ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.ContainerType> ;
skos:prefLabel "triggering fileFormat"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/country.Actor>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:Country ;
rdfs:label "of Actor" ;
rdfs:range pronom2020:Actor ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/actor.Country> ;
skos:prefLabel "of Actor" ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/country.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: country"@en ;
rdfs:domain pronom2020:Country ;
rdfs:label "country.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/document.Availability>
rdf:type owl:DatatypeProperty ;
rdfs:comment "The availability of the document"@en ;
rdfs:domain pronom2020:Document ;
rdfs:label "availability"@en ;
rdfs:range xsd:string ;
skos:prefLabel "availability"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/document.DocumentType>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:Document ;
rdfs:label "has trust"@en ;
rdfs:range pronom2020:DocumentType ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/documentType.Document> ;
skos:prefLabel "has trust"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/document.Registry>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:Document ;
rdfs:label "documents"@en ;
rdfs:range pronom2020:Registry ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/registry.Document> ;
skos:prefLabel "documents"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/documentType.Document>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:DocumentType ;
rdfs:label "of Document"@en ;
rdfs:range pronom2020:Document ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/document.DocumentType> ;
skos:prefLabel "of Document"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/document_types.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: document_types"@en ;
rdfs:domain pronom2020:DocumentType ;
rdfs:label "document_types.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/documents.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: documents"@en ;
rdfs:domain pronom2020:Document ;
rdfs:label "documents.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/encoding.FileFormat>
rdf:type owl:ObjectProperty ;
rdfs:domain pronom2020:Encoding ;
rdfs:label "file formats using this encoding"@en ;
rdfs:range pronom2020:FileFormat ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.Encoding> ;
skos:prefLabel "file formats using this encoding"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/encoding.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: encoding"@en ;
rdfs:domain pronom2020:Encoding ;
rdfs:label "encoding.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/externalSignature.Extension>
rdf:type owl:DatatypeProperty ;
pronom2020:seeExternal "http://dbpedia.org/resource/Filename_extension"^^xsd:anyURI ;
pronom2020:seeExternal "https://www.file-extension.org"^^xsd:anyURI ;
rdfs:comment "A file extension is a suffix to the name of a computer file applied to indicate the type of file format. It gives a human readable identifier for the file; such that users can quickly understand the type of file it is without having to open it. The filename extension associates the file with certain software packages, helping an application program recognise whether it is of a type that it can work with. In some operating systems, such as DOS, a file extension is required, but in others, such as Unix, it is optional. Some operating systems limit the length of the extension and some are case sensitive. On Windows computers, extensions consist of a dot '.' at the end of a file name, typically followed by three letters to identify the type of file. On a Unix based system, the file name is a single string, with the '.' being just another character, and with the file name being of variable-length. A file extension is not a reliable identifier of the format of the file. An extension may be linked to more than one program; they are not assigned by a controlling authority, and can be easily changed.{@en }" ;
rdfs:domain pronom2020:ExternalSignature ;
rdfs:label "has extension"@en ;
rdfs:range xsd:string ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
skos:prefLabel "has extension"@en ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/externalSignature.FileFormat>
rdf:type owl:ObjectProperty ;
rdfs:comment "File formats that use this externalSignature"@en ;
rdfs:domain pronom2020:ExternalSignature ;
rdfs:label "identifies fileFormat"@en ;
rdfs:range pronom2020:FileFormat ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.ExternalSignature> ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/external_signatures.ID>
rdf:type owl:AnnotationProperty ;
rdfs:comment "The key value of the originating SQL table: external_signatures"@en ;
rdfs:domain pronom2020:ExternalSignature ;
rdfs:label "external_signatures.ID"@en ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf pronom2020:ID ;
.
<http://data.nationalarchives.gov.uk/formatregistry/def/fileFormat.ByteOrder>
rdf:type owl:ObjectProperty ;
rdfs:comment "Refers to the byte orders for the format"@en ;
rdfs:domain pronom2020:FileFormat ;
rdfs:label "uses byteOrder"@en ;
rdfs:range pronom2020:ByteOrder ;
rdfs:subPropertyOf pronom2020:relations ;
rdfs:subPropertyOf skos:semanticRelation ;
owl:inverseOf <http://data.nationalarchives.gov.uk/formatregistry/def/byteOrder.FileFormat> ;
skos:prefLabel "uses byteOrder" ;