rdf-vocab 3.1.5 → 3.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9fee488ffff2f75ddb9a2c4f15120e4594b3ec47c129bf0b490c86ab4de24e2
4
- data.tar.gz: 91cfb8c9d75f02d97c42616563384b482f5a2a9ba81ce4ee340d054efe565d3c
3
+ metadata.gz: a7dc2bfe7d8231e647a4f870c4c465f842ee9f9682724c42243b8323300a711e
4
+ data.tar.gz: 9379a88864b9502c997097ab1bae50a98566891eeec92361764b2e9185612893
5
5
  SHA512:
6
- metadata.gz: 6f6e653bd589d4787f54b25ec132d7e27aa51bf99493a2209290075e837243de7e3e5445900b3f61ce973a3ad3bf4db4da84fc019b6f8c04bcb000ea9aa0858a
7
- data.tar.gz: 7301239006c4402afa621f1122c7b0bdcda9fc2758ba8bb216865c37684dd91552b90e98a0da515746d1f8fd1e0f1529ec2bd5996cd92d22a3fab1a69c8bbc49
6
+ metadata.gz: eb66fb5e2da7848813eb5af3255f1c5f4ef7f2de2492dcd184e4c4b4296b2cd845feb325a95d4c1d02ca8d1934c6dba1eaec13537a8b8296b36cdbe61ccb0172
7
+ data.tar.gz: ab5432465b3394cf931cdfae2edbfd1a7d7683285761e5e3383682dbf6951d925c067fc3012c97f9e6a535bad2ec0d32012901aaad3bd00d1305a2ba16f254d4
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.5
1
+ 3.1.6
@@ -215,19 +215,7 @@ module RDF
215
215
  marcrelators: {
216
216
  uri: "http://id.loc.gov/vocabulary/relators/",
217
217
  source: "http://id.loc.gov/vocabulary/relators.rdf",
218
- class_name: "MARCRelators",
219
- patch: %{
220
- @prefix marcrelators: <http://id.loc.gov/vocabulary/relators/> .
221
- @prefix owl: <http://www.w3.org/2002/07/owl#>.
222
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
223
- #DeleteExisting {
224
- # marcrelators:lee rdfs:subPropertyOf marcrelators:lei .
225
- #} .
226
- #AddNew {
227
- # marcrelators:role a owl:ObjectProperty;
228
- # rdfs:comment "This property and its sub-properties are used to associate a Bibliographic Resource with a Resource that played a part in the lifecycle of the Bibliographic Resource. It is the inverse of relators:roleIn.".
229
- #} .
230
- }
218
+ class_name: "MARCRelators"
231
219
  },
232
220
  mo: {uri: "http://purl.org/ontology/mo/", strict: false},
233
221
  mods: {
@@ -236,7 +224,40 @@ module RDF
236
224
  },
237
225
  nfo: {uri: 'http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#', skip: true},
238
226
  oa: {uri: "http://www.w3.org/ns/oa#"},
239
- og: {uri: "http://ogp.me/ns#", source: 'http://ogp.me/ns/ogp.me.ttl', strict: false},
227
+ og: {
228
+ uri: "http://ogp.me/ns#",
229
+ source: 'http://ogp.me/ns/ogp.me.ttl',
230
+ strict: false,
231
+ patch: %{
232
+ @prefix og: <http://ogp.me/ns#> .
233
+ @prefix ogc: <http://ogp.me/ns/class#> .
234
+ @prefix owl: <http://www.w3.org/2002/07/owl#>.
235
+ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
236
+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
237
+ # Used in http://ogp.me/ but not defined
238
+ AddNew {
239
+ og:image:url a rdf:Property ;
240
+ rdfs:label "image:url"@en-US ;
241
+ rdfs:comment "Identical to og:image."@en-US ;
242
+ rdfs:seeAlso og:image ;
243
+ rdfs:isDefinedBy og: ;
244
+ owl:sameProperty og:image ;
245
+ rdfs:range ogc:url .
246
+ og:image:alt a rdf:Property ;
247
+ rdfs:label "image:alt"@en-US ;
248
+ rdfs:comment "A description of what is in the image (not a caption). If the page specifies an og:image it should specify og:image:alt."@en-US ;
249
+ rdfs:seeAlso og:image ;
250
+ rdfs:isDefinedBy og: ;
251
+ rdfs:range ogc:url .
252
+ og:locale:alternate a rdf:Property ;
253
+ rdfs:label "locale:alternate"@en-US ;
254
+ rdfs:comment "An array of other locales this page is available in."@en-US ;
255
+ rdfs:seeAlso og:locale ;
256
+ rdfs:isDefinedBy og: ;
257
+ rdfs:range ogc:string .
258
+ } .
259
+ }
260
+ },
240
261
  ogc: {uri: "http://ogp.me/ns/class#", source: "http://ogp.me/ns/ogp.me.ttl", strict: false},
241
262
  ore: {uri: "http://www.openarchives.org/ore/terms/"},
242
263
  org: {uri: "http://www.w3.org/ns/org#"},
@@ -567,27 +567,27 @@ module RDF::Vocab
567
567
  # # @return [RDF::Vocabulary::Term]
568
568
  # attr_reader :Work
569
569
  #
570
- # # Used with Work or Instance
571
- # #
572
570
  # # Expected value Work or Instance
571
+ # #
572
+ # # Used with Work or Instance
573
573
  # # @return [RDF::Vocabulary::Term]
574
574
  # attr_reader :absorbed
575
575
  #
576
- # # Used with Work or Instance
577
- # #
578
576
  # # Expected value Work or Instance
577
+ # #
578
+ # # Used with Work or Instance
579
579
  # # @return [RDF::Vocabulary::Term]
580
580
  # attr_reader :absorbedBy
581
581
  #
582
- # # Expected value Work, Instance or Item
583
- # #
584
582
  # # Used with Work, Instance or Item
583
+ # #
584
+ # # Expected value Work, Instance or Item
585
585
  # # @return [RDF::Vocabulary::Term]
586
586
  # attr_reader :accompaniedBy
587
587
  #
588
- # # Expected value Work, Instance or Item
589
- # #
590
588
  # # Used with Work, Instance or Item
589
+ # #
590
+ # # Expected value Work, Instance or Item
591
591
  # # @return [RDF::Vocabulary::Term]
592
592
  # attr_reader :accompanies
593
593
  #
@@ -670,27 +670,27 @@ module RDF::Vocab
670
670
  # # @return [RDF::Vocabulary::Term]
671
671
  # attr_reader :contentAccessibility
672
672
  #
673
- # # Used with Work or Instance
674
- # #
675
673
  # # Expected value Work or Instance
674
+ # #
675
+ # # Used with Work or Instance
676
676
  # # @return [RDF::Vocabulary::Term]
677
677
  # attr_reader :continuedBy
678
678
  #
679
- # # Used with Work or Instance
680
- # #
681
679
  # # Expected value Work or Instance
680
+ # #
681
+ # # Used with Work or Instance
682
682
  # # @return [RDF::Vocabulary::Term]
683
683
  # attr_reader :continuedInPartBy
684
684
  #
685
- # # Used with Work or Instance
686
- # #
687
685
  # # Expected value Work or Instance
686
+ # #
687
+ # # Used with Work or Instance
688
688
  # # @return [RDF::Vocabulary::Term]
689
689
  # attr_reader :continues
690
690
  #
691
- # # Used with Work or Instance
692
- # #
693
691
  # # Expected value Work or Instance
692
+ # #
693
+ # # Used with Work or Instance
694
694
  # # @return [RDF::Vocabulary::Term]
695
695
  # attr_reader :continuesInPart
696
696
  #
@@ -728,9 +728,9 @@ module RDF::Vocab
728
728
  # # @return [RDF::Vocabulary::Term]
729
729
  # attr_reader :custodialHistory
730
730
  #
731
- # # Used with Work or Instance
732
- # #
733
731
  # # Expected value Work or Instance
732
+ # #
733
+ # # Used with Work or Instance
734
734
  # # @return [RDF::Vocabulary::Term]
735
735
  # attr_reader :dataSource
736
736
  #
@@ -741,9 +741,9 @@ module RDF::Vocab
741
741
  # # @return [RDF::Vocabulary::Term]
742
742
  # attr_reader :degree
743
743
  #
744
- # # Used with Work or Instance
745
- # #
746
744
  # # Expected value Work or Instance
745
+ # #
746
+ # # Used with Work or Instance
747
747
  # # @return [RDF::Vocabulary::Term]
748
748
  # attr_reader :derivativeOf
749
749
  #
@@ -818,15 +818,15 @@ module RDF::Vocab
818
818
  # # @return [RDF::Vocabulary::Term]
819
819
  # attr_reader :extent
820
820
  #
821
- # # Used with Work or Instance
822
- # #
823
821
  # # Expected value Work or Instance
822
+ # #
823
+ # # Used with Work or Instance
824
824
  # # @return [RDF::Vocabulary::Term]
825
825
  # attr_reader :findingAid
826
826
  #
827
- # # Used with Work or Instance
828
- # #
829
827
  # # Expected value Work or Instance
828
+ # #
829
+ # # Used with Work or Instance
830
830
  # # @return [RDF::Vocabulary::Term]
831
831
  # attr_reader :findingAidOf
832
832
  #
@@ -860,15 +860,15 @@ module RDF::Vocab
860
860
  # # @return [RDF::Vocabulary::Term]
861
861
  # attr_reader :grantingInstitution
862
862
  #
863
- # # Used with Work or Instance
864
- # #
865
863
  # # Expected value Work or Instance
864
+ # #
865
+ # # Used with Work or Instance
866
866
  # # @return [RDF::Vocabulary::Term]
867
867
  # attr_reader :hasDerivative
868
868
  #
869
- # # Expected value Work, Instance or Item
870
- # #
871
869
  # # Used with Work, Instance or Item
870
+ # #
871
+ # # Expected value Work, Instance or Item
872
872
  # # @return [RDF::Vocabulary::Term]
873
873
  # attr_reader :hasEquivalent
874
874
  #
@@ -881,24 +881,24 @@ module RDF::Vocab
881
881
  # # @return [RDF::Vocabulary::Term]
882
882
  # attr_reader :hasItem
883
883
  #
884
- # # Expected value Work, Instance or Item
885
- # #
886
884
  # # Used with Work, Instance or Item
885
+ # #
886
+ # # Expected value Work, Instance or Item
887
887
  # # @return [RDF::Vocabulary::Term]
888
888
  # attr_reader :hasPart
889
889
  #
890
890
  # # @return [RDF::Vocabulary::Term]
891
891
  # attr_reader :hasReproduction
892
892
  #
893
- # # Used with Work or Instance
894
- # #
895
893
  # # Expected value Work or Instance
894
+ # #
895
+ # # Used with Work or Instance
896
896
  # # @return [RDF::Vocabulary::Term]
897
897
  # attr_reader :hasSeries
898
898
  #
899
- # # Used with Work or Instance
900
- # #
901
899
  # # Expected value Work or Instance
900
+ # #
901
+ # # Used with Work or Instance
902
902
  # # @return [RDF::Vocabulary::Term]
903
903
  # attr_reader :hasSubseries
904
904
  #
@@ -925,15 +925,15 @@ module RDF::Vocab
925
925
  # # @return [RDF::Vocabulary::Term]
926
926
  # attr_reader :immediateAcquisition
927
927
  #
928
- # # Used with Work or Instance
929
- # #
930
928
  # # Expected value Work or Instance
929
+ # #
930
+ # # Used with Work or Instance
931
931
  # # @return [RDF::Vocabulary::Term]
932
932
  # attr_reader :index
933
933
  #
934
- # # Used with Work or Instance
935
- # #
936
934
  # # Expected value Work or Instance
935
+ # #
936
+ # # Used with Work or Instance
937
937
  # # @return [RDF::Vocabulary::Term]
938
938
  # attr_reader :indexOf
939
939
  #
@@ -984,15 +984,15 @@ module RDF::Vocab
984
984
  # # @return [RDF::Vocabulary::Term]
985
985
  # attr_reader :media
986
986
  #
987
- # # Used with Work or Instance
988
- # #
989
987
  # # Expected value Work or Instance
988
+ # #
989
+ # # Used with Work or Instance
990
990
  # # @return [RDF::Vocabulary::Term]
991
991
  # attr_reader :mergedToForm
992
992
  #
993
- # # Used with Work or Instance
994
- # #
995
993
  # # Expected value Work or Instance
994
+ # #
995
+ # # Used with Work or Instance
996
996
  # # @return [RDF::Vocabulary::Term]
997
997
  # attr_reader :mergerOf
998
998
  #
@@ -1042,21 +1042,21 @@ module RDF::Vocab
1042
1042
  # # @return [RDF::Vocabulary::Term]
1043
1043
  # attr_reader :originPlace
1044
1044
  #
1045
- # # Used with Work or Instance
1046
- # #
1047
1045
  # # Expected value Work or Instance
1046
+ # #
1047
+ # # Used with Work or Instance
1048
1048
  # # @return [RDF::Vocabulary::Term]
1049
1049
  # attr_reader :originalVersion
1050
1050
  #
1051
- # # Used with Work or Instance
1052
- # #
1053
1051
  # # Expected value Work or Instance
1052
+ # #
1053
+ # # Used with Work or Instance
1054
1054
  # # @return [RDF::Vocabulary::Term]
1055
1055
  # attr_reader :originalVersionOf
1056
1056
  #
1057
- # # Used with Work or Instance
1058
- # #
1059
1057
  # # Expected value Work or Instance
1058
+ # #
1059
+ # # Used with Work or Instance
1060
1060
  # # @return [RDF::Vocabulary::Term]
1061
1061
  # attr_reader :otherEdition
1062
1062
  #
@@ -1076,9 +1076,9 @@ module RDF::Vocab
1076
1076
  # # @return [RDF::Vocabulary::Term]
1077
1077
  # attr_reader :partNumber
1078
1078
  #
1079
- # # Expected value Work, Instance or Item
1080
- # #
1081
1079
  # # Used with Work, Instance or Item
1080
+ # #
1081
+ # # Expected value Work, Instance or Item
1082
1082
  # # @return [RDF::Vocabulary::Term]
1083
1083
  # attr_reader :partOf
1084
1084
  #
@@ -1095,9 +1095,9 @@ module RDF::Vocab
1095
1095
  # # @return [RDF::Vocabulary::Term]
1096
1096
  # attr_reader :polarity
1097
1097
  #
1098
- # # Used with Work or Instance
1099
- # #
1100
1098
  # # Expected value Work or Instance
1099
+ # #
1100
+ # # Used with Work or Instance
1101
1101
  # # @return [RDF::Vocabulary::Term]
1102
1102
  # attr_reader :precededBy
1103
1103
  #
@@ -1127,30 +1127,30 @@ module RDF::Vocab
1127
1127
  # # @return [RDF::Vocabulary::Term]
1128
1128
  # attr_reader :reductionRatio
1129
1129
  #
1130
- # # Expected value Work, Instance or Item
1131
- # #
1132
1130
  # # Used with Work, Instance or Item
1131
+ # #
1132
+ # # Expected value Work, Instance or Item
1133
1133
  # # @return [RDF::Vocabulary::Term]
1134
1134
  # attr_reader :referencedBy
1135
1135
  #
1136
- # # Expected value Work, Instance or Item
1137
- # #
1138
1136
  # # Used with Work, Instance or Item
1137
+ # #
1138
+ # # Expected value Work, Instance or Item
1139
1139
  # # @return [RDF::Vocabulary::Term]
1140
1140
  # attr_reader :references
1141
1141
  #
1142
1142
  # # @return [RDF::Vocabulary::Term]
1143
1143
  # attr_reader :relatedTo
1144
1144
  #
1145
- # # Used with Work or Instance
1146
- # #
1147
1145
  # # Expected value Work or Instance
1146
+ # #
1147
+ # # Used with Work or Instance
1148
1148
  # # @return [RDF::Vocabulary::Term]
1149
1149
  # attr_reader :replacedBy
1150
1150
  #
1151
- # # Used with Work or Instance
1152
- # #
1153
1151
  # # Expected value Work or Instance
1152
+ # #
1153
+ # # Used with Work or Instance
1154
1154
  # # @return [RDF::Vocabulary::Term]
1155
1155
  # attr_reader :replacementOf
1156
1156
  #
@@ -1174,18 +1174,18 @@ module RDF::Vocab
1174
1174
  # # @return [RDF::Vocabulary::Term]
1175
1175
  # attr_reader :schedulePart
1176
1176
  #
1177
- # # Used with Work or Instance
1178
- # #
1179
1177
  # # Expected value Work or Instance
1178
+ # #
1179
+ # # Used with Work or Instance
1180
1180
  # # @return [RDF::Vocabulary::Term]
1181
1181
  # attr_reader :separatedFrom
1182
1182
  #
1183
1183
  # # @return [RDF::Vocabulary::Term]
1184
1184
  # attr_reader :seriesEnumeration
1185
1185
  #
1186
- # # Used with Work or Instance
1187
- # #
1188
1186
  # # Expected value Work or Instance
1187
+ # #
1188
+ # # Used with Work or Instance
1189
1189
  # # @return [RDF::Vocabulary::Term]
1190
1190
  # attr_reader :seriesOf
1191
1191
  #
@@ -1209,9 +1209,9 @@ module RDF::Vocab
1209
1209
  # # @return [RDF::Vocabulary::Term]
1210
1210
  # attr_reader :spanEnd
1211
1211
  #
1212
- # # Used with Work or Instance
1213
- # #
1214
1212
  # # Expected value Work or Instance
1213
+ # #
1214
+ # # Used with Work or Instance
1215
1215
  # # @return [RDF::Vocabulary::Term]
1216
1216
  # attr_reader :splitInto
1217
1217
  #
@@ -1229,9 +1229,9 @@ module RDF::Vocab
1229
1229
  # # @return [RDF::Vocabulary::Term]
1230
1230
  # attr_reader :subseriesEnumeration
1231
1231
  #
1232
- # # Used with Work or Instance
1233
- # #
1234
1232
  # # Expected value Work or Instance
1233
+ # #
1234
+ # # Used with Work or Instance
1235
1235
  # # @return [RDF::Vocabulary::Term]
1236
1236
  # attr_reader :subseriesOf
1237
1237
  #
@@ -1241,9 +1241,9 @@ module RDF::Vocab
1241
1241
  # # @return [RDF::Vocabulary::Term]
1242
1242
  # attr_reader :subtitle
1243
1243
  #
1244
- # # Used with Work or Instance
1245
- # #
1246
1244
  # # Expected value Work or Instance
1245
+ # #
1246
+ # # Used with Work or Instance
1247
1247
  # # @return [RDF::Vocabulary::Term]
1248
1248
  # attr_reader :succeededBy
1249
1249
  #
@@ -1251,15 +1251,15 @@ module RDF::Vocab
1251
1251
  # # @return [RDF::Vocabulary::Term]
1252
1252
  # attr_reader :summary
1253
1253
  #
1254
- # # Used with Work or Instance
1255
- # #
1256
1254
  # # Expected value Work or Instance
1255
+ # #
1256
+ # # Used with Work or Instance
1257
1257
  # # @return [RDF::Vocabulary::Term]
1258
1258
  # attr_reader :supplement
1259
1259
  #
1260
- # # Used with Work or Instance
1261
- # #
1262
1260
  # # Expected value Work or Instance
1261
+ # #
1262
+ # # Used with Work or Instance
1263
1263
  # # @return [RDF::Vocabulary::Term]
1264
1264
  # attr_reader :supplementTo
1265
1265
  #
@@ -1287,15 +1287,15 @@ module RDF::Vocab
1287
1287
  # # @return [RDF::Vocabulary::Term]
1288
1288
  # attr_reader :title
1289
1289
  #
1290
- # # Used with Work or Instance
1291
- # #
1292
1290
  # # Expected value Work or Instance
1291
+ # #
1292
+ # # Used with Work or Instance
1293
1293
  # # @return [RDF::Vocabulary::Term]
1294
1294
  # attr_reader :translation
1295
1295
  #
1296
- # # Used with Work or Instance
1297
- # #
1298
1296
  # # Expected value Work or Instance
1297
+ # #
1298
+ # # Used with Work or Instance
1299
1299
  # # @return [RDF::Vocabulary::Term]
1300
1300
  # attr_reader :translationOf
1301
1301
  #