-
Notifications
You must be signed in to change notification settings - Fork 1
/
rulebase.ttl
1019 lines (804 loc) · 22.1 KB
/
rulebase.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
## This file is part of Spindle, a co-reference aggregation engine
##
## Author: Mo McRoberts <mo.mcroberts@bbc.co.uk>
##
## Copyright (c) 2014-2017 BBC
##
## Licensed under the Apache License, Version 2.0 (the "License");
## you may not use this file except in compliance with the License.
## You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
# This file expresses the superclass and superproperty relationships
# which are used by Spindle when generating cache data for proxies.
# This graph is not imported into the quad-store used by Spindle, but held
# in-memory and its contents used by the proxy generation logic.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skos08: <http://www.w3.org/2008/05/skos#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dcmitype: <http://purl.org/dc/dcmitype/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix gn: <http://www.geonames.org/ontology#> .
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix ecrm: <http://erlangen-crm.org/current/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix spindle: <http://bbcarchdev.github.io/ns/spindle#> .
@prefix olo: <http://purl.org/ontology/olo/core#> .
@prefix po: <http://purl.org/ontology/po/> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix dcmitype: <http://purl.org/dc/dcmitype/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix mrss: <http://search.yahoo.com/mrss/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix xhtml: <http://www.w3.org/1999/xhtml/vocab#> .
@prefix schema: <http://schema.org/> .
@prefix gazetteer: <http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/> .
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#> .
@prefix lio: <http://purl.org/net/lio#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix media: <http://purl.org/media#> .
@prefix video: <http://purl.org/media/video#> .
@prefix audio: <http://purl.org/media/audio#> .
@prefix rdac: <http://rdaregistry.info/Elements/c/> .
#### Co-reference predicates
## owl:sameAs-style direct co-reference predicates:
##
## ex:predicate spindle:coref spindle:resourceMatch .
##
## Wikipedia page URL predicates:
##
## ex:predicate spindle:coref spindle:wikipediaMatch .
##
## Other resource-matching types may be added in the future.
owl:sameAs spindle:coref spindle:resourceMatch .
<http://www.bbc.co.uk/ontologies/coreconcepts/sameAs> spindle:coref spindle:resourceMatch .
skos:exactMatch spindle:coref spindle:resourceMatch .
skos08:exactMatch spindle:coref spindle:resourceMatch .
gn:wikipediaArticle spindle:coref spindle:wikipediaMatch .
foaf:isPrimaryTopicOf spindle:coref spindle:wikipediaMatch .
#### Class rules
## Class rules take the form:
##
## ex:Example
## a spindle:Class ;
## olo:index 25 ;
## rdfs:label "Examples"@en .
##
## foo:E47_Example spindle:expressedAs ex:Example .
##
## This defines a class, ex:Example, which will be used for proxy generation.
## Processed instances which have a type of ex:Example or foo:E47_Example will
## result in a proxy being generated with a class of ex:Example, provided
## another class's rules don't match first. The olo:index property on the
## class specifies the matching priority, where lower is better (provided the
## value is a positive integer).
## People
foaf:Person
a spindle:Class ;
olo:index 10 ;
rdfs:label "Person"@en ;
spindle:prominence 20 .
po:Person spindle:expressedAs foaf:Person .
schema:Person spindle:expressedAs foaf:Person .
## Groups
foaf:Group
a spindle:Class ;
olo:index 20 ;
rdfs:label "Group"@en ;
spindle:prominence 10 .
foaf:Organization spindle:expressedAs foaf:Group .
po:Broadcaster spindle:expressedAs foaf:Group .
## Agents
foaf:Agent
a spindle:Class ;
olo:index 30 ;
rdfs:label "Agent"@en .
dct:Agent spindle:expressedAs foaf:Agent .
<http://www.tate.org.uk/ontologies/collection#Artist> spindle:expressedAs foaf:Agent .
<http://dbpedia.org/ontology/Agent> spindle:expressedAs foaf:Agent .
## Places
geo:SpatialThing
a spindle:Class ;
olo:index 40 ;
rdfs:label "Place"@en .
dct:Location spindle:expressedAs geo:SpatialThing .
gn:Feature spindle:expressedAs geo:SpatialThing .
gazetteer:NamedPlace spindle:expressedAs geo:SpatialThing .
<http://schema.org/Place> spindle:expressedAs geo:SpatialThing .
<http://dbpedia.org/ontology/Place> spindle:expressedAs geo:SpatialThing .
## Events, timespans
event:Event
a spindle:Class ;
olo:index 50 ;
rdfs:label "Event"@en .
<http://www.tate.org.uk/ontologies/collection#Birth> spindle:expressedAs event:Event .
<http://www.tate.org.uk/ontologies/collection#Death> spindle:expressedAs event:Event .
dct:PeriodOfTime spindle:expressedAs event:Event .
po:Broadcast spindle:expressedAs event:Event .
<http://dbpedia.org/ontology/Event> spindle:expressedAs event:Event .
## Physical things
crm:E18_Physical_Thing
a spindle:Class ;
olo:index 60 ;
rdfs:label "Physical thing"@en .
crm:E22_Man-Made_Object spindle:expressedAs crm:E18_Physical_Thing .
ecrm:E18_Physical_Thing spindle:expressedAs crm:E18_Physical_Thing .
ecrm:E22_Man-Made_Object spindle:expressedAs crm:E18_Physical_Thing .
dcmitype:PhysicalObject spindle:expressedAs crm:E18_Physical_Thing .
dct:PhysicalResource spindle:expressedAs crm:E18_Physical_Thing .
## Concepts
skos:Concept
a spindle:Class ;
olo:index 100 ;
rdfs:label "Concept"@en ;
void:classPartition
<http://dbpedialite.org/things/> ,
<http://www.wikidata.org/entity/> ,
<http://www.bbc.co.uk/things/> ,
<http://www.bbc.co.uk/programmes/genres/>,
<http://www.bbc.co.uk/programmes/formats/> .
skos08:Concept spindle:expressedAs skos:Concept .
<http://www.tate.org.uk/ontologies/collection#Subject> spindle:expressedAs skos:Concept .
<http://dbpedia.org/ontology/TopicalConcept> spindle:expressedAs skos:Concept .
po:Genre spindle:expressedAs skos:Concept .
po:Format spindle:expressedAs skos:Concept .
## Collections
dcmitype:Collection
a spindle:Class ;
olo:index 70 ;
rdfs:label "Collection"@en .
void:Dataset spindle:expressedAs dcmitype:Collection .
dcmitype:Dataset spindle:expressedAs dcmitype:Collection .
schema:Dataset spindle:expressedAs dcmitype:Collection .
<http://www.openarchives.org/ore/terms/Proxy> spindle:expressedAs dcmitype:Collection .
## Creative works
frbr:Work
a spindle:Class ;
olo:index 80 ;
rdfs:label "Creative work"@en .
<http://dbpedia.org/ontology/Work> spindle:expressedAs frbr:Work .
schema:CreativeWork spindle:expressedAs frbr:Work .
bibo:Document spindle:expressedAs frbr:Work .
rdac:Work spindle:expressedAs frbr:Work .
# AV works
po:Clip
spindle:expressedAs frbr:Work ;
spindle:prominence 15 .
po:Episode
spindle:expressedAs frbr:Work ;
spindle:prominence 25 .
schema:Episode
spindle:expressedAs frbr:Work ;
spindle:prominence 25 .
schema:Movie
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
po:Version
spindle:expressedAs frbr:Work ;
spindle:prominence -50 .
po:OriginalVersion
spindle:expressedAs frbr:Work ;
spindle:prominence -50 .
po:Brand
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
po:Series
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
schema:TVSeries
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
schema:MusicComposition
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
po:Programme spindle:expressedAs frbr:Work .
po:ProgrammeItem spindle:expressedAs frbr:Work .
# Written works
bibo:Article
spindle:expressedAs frbr:Work ;
spindle:prominence 25 .
bibo:AcademicArticle
spindle:expressedAs frbr:Work ;
spindle:prominence 25 .
bibo:Book
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
bibo:BookSection
spindle:expressedAs frbr:Work .
bibo:Brief
spindle:expressedAs frbr:Work .
bibo:Chapter
spindle:expressedAs frbr:Work .
bibo:BookSection
spindle:expressedAs frbr:Work .
# Pictures
schema:VisualArtwork
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
<http://www.tate.org.uk/ontologies/collection#Artwork>
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
bibo:Image
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
schema:Painting
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
schema:Photograph
spindle:expressedAs frbr:Work ;
spindle:prominence 30 .
## Digital objects
foaf:Document
a spindle:Class ;
olo:index 90 ;
rdfs:label "Digital object"@en .
frbr:Expression spindle:expressedAs foaf:Document .
schema:DigitalDocument spindle:expressedAs foaf:Document .
# Text
dcmitype:Text spindle:expressedAs foaf:Document .
schema:Book spindle:expressedAs foaf:Document .
schema:Article spindle:expressedAs foaf:Document .
# Video
dcmitype:MovingImage spindle:expressedAs foaf:Document .
schema:VideoObject spindle:expressedAs foaf:Document .
video:Recording spindle:expressedAs foaf:Document .
# Audio
dcmitype:Sound spindle:expressedAs foaf:Document .
audio:Recording spindle:expressedAs foaf:Document .
# Still images
foaf:Image spindle:expressedAs foaf:Document .
dcmitype:Image spindle:expressedAs foaf:Document .
dcmitype:StillImage spindle:expressedAs foaf:Document .
# Interactive media
dcmitype:InteractiveResource spindle:expressedAs foaf:Document .
# Software
dcmitype:Software spindle:expressedAs foaf:Document .
schema:SoftwareApplication spindle:expressedAs foaf:Document .
schema:SoftwareSourceCode spindle:expressedAs foaf:Document .
## Classes
rdfs:Class
a spindle:Class ;
olo:index 120 ;
rdfs:label "Class"@en .
owl:Class spindle:expressedAs rdfs:Class .
rdfs:Datatype spindle:expressedAs rdfs:Class .
## Properties
rdf:Property
a spindle:Class ;
olo:index 125 ;
rdfs:label "Property"@en .
owl:ObjectProperty spindle:expressedAs rdf:Property .
owl:DatatypeProperty spindle:expressedAs rdf:Property .
owl:FunctionalProperty spindle:expressedAs rdf:Property .
owl:InverseFunctionalProperty spindle:expressedAs rdf:Property .
owl:TransitiveProperty spindle:expressedAs rdf:Property .
rdfs:ContainerMembershipProperty spindle:expressedAs rdf:Property .
#### Property rules
## rdfs:label
rdfs:label
a spindle:Property ;
spindle:expect rdfs:Literal ;
olo:index 1 ;
spindle:prominence 20 ;
spindle:indexed true .
schema:name spindle:property [
olo:index 20 ;
spindle:expressedAs rdfs:label
] .
skos:prefLabel spindle:property [
olo:index 20 ;
spindle:expressedAs rdfs:label
] .
skos08:prefLabel spindle:property [
olo:index 21 ;
spindle:expressedAs rdfs:label
] .
foaf:name spindle:property [
olo:index 30 ;
rdfs:domain foaf:Person, foaf:Group, foaf:Agent ;
spindle:expressedAs rdfs:label
] .
gn:name spindle:property [
olo:index 20 ;
rdfs:domain geo:SpatialThing ;
spindle:expressedAs rdfs:label
] .
<http://www.tate.org.uk/ontologies/collection#fc> spindle:property [
olo:index 30 ;
rdfs:domain foaf:Person, foaf:Group, foaf:Agent ;
spindle:expressedAs rdfs:label
] .
<http://www.tate.org.uk/ontologies/collection#mda> spindle:property [
olo:index 35 ;
rdfs:domain foaf:Person, foaf:Group, foaf:Agent ;
spindle:expressedAs rdfs:label
] .
gn:alternateName spindle:property [
olo:index 35 ;
rdfs:domain geo:SpatialThing ;
spindle:expressedAs rdfs:label
] .
dct:title spindle:property [
olo:index 40 ;
spindle:expressedAs rdfs:label
] .
dc:title spindle:property [
olo:index 41 ;
spindle:expressedAs rdfs:label
] .
rdfs:label spindle:property [
olo:index 50 ;
spindle:expressedAs rdfs:label
] .
## dct:description
dct:description
a spindle:Property ;
olo:index 2 ;
spindle:prominence 15 ;
spindle:expect rdfs:Literal .
po:synopsis spindle:property [
olo:index 30 ;
spindle:expressedAs dct:description
] .
po:medium_synopsis spindle:property [
olo:index 31 ;
spindle:expressedAs dct:description
] .
po:long_synopsis spindle:property [
olo:index 32 ;
spindle:expressedAs dct:description
] .
po:short_synopsis spindle:property [
olo:index 33 ;
spindle:expressedAs dct:description
] .
dct:description spindle:property [
olo:index 40 ;
spindle:expressedAs dct:description
] .
dc:description spindle:property [
olo:index 41 ;
spindle:expressedAs dct:description
] .
rdfs:comment spindle:property [
olo:index 50 ;
spindle:expressedAs dct:description
] .
schema:description spindle:property [
olo:index 30 ;
spindle:expressedAs dct:description
] .
## geo:long
geo:long
a spindle:Property ;
olo:index 3 ;
spindle:expect rdfs:Literal ;
# spindle:expectType xsd:float ;
spindle:indexed true .
geo:long spindle:property [
olo:index 50 ;
spindle:expressedAs geo:long ;
rdfs:domain geo:SpatialThing
] .
## geo:lat
geo:lat
a spindle:Property ;
olo:index 4 ;
spindle:expect rdfs:Literal ;
# spindle:expectType xsd:float ;
spindle:indexed true .
geo:lat spindle:property [
olo:index 50 ;
spindle:expressedAs geo:lat ;
rdfs:domain geo:SpatialThing
] .
## foaf:depiction
foaf:depiction
a spindle:Property ;
olo:index 5 ;
spindle:prominence 25 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly false .
foaf:depiction spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:depiction
] .
foaf:thumbnail spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:depiction
] .
media:depiction spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:depiction
] .
media:thumbnail spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:depiction
] .
po:depiction spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:depiction
] .
<http://www.tate.org.uk/ontologies/collection#thumbnailUrl> spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:depiction
] .
<http://www.wikidata.org/prop/direct/P18> spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:depiction
] .
schema:thumbnailUrl spindle:property [
olo:index 10 ;
spindle:expressedAs foaf:depiction
] .
## skos:inScheme
skos:inScheme
a spindle:Property ;
olo:index 6 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly true .
skos:inScheme spindle:property [
olo:index 0 ;
spindle:expressedAs skos:inScheme
] .
skos08:inScheme spindle:property [
olo:index 0 ;
spindle:expressedAs skos:inScheme
] .
## skos:broader
skos:broader
a spindle:Property ;
olo:index 7 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly true .
skos:broader spindle:property [
olo:index 0 ;
spindle:expressedAs skos:broader
] .
skos08:broader spindle:property [
olo:index 0 ;
spindle:expressedAs skos:broader
] .
<http://www.tate.org.uk/ontologies/collection#parentSubject> spindle:property [
olo:index 0 ;
spindle:expressedAs skos:broader
] .
## skos:narrower
skos:narrower
a spindle:Property ;
olo:index 8 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly true .
skos:narrower spindle:property [
olo:index 0 ;
spindle:expressedAs skos:narrower
] .
skos08:narrower spindle:property [
olo:index 0 ;
spindle:expressedAs skos:narrower
] .
## foaf:topic
foaf:topic
a spindle:Property, spindle:TopicProperty ;
olo:index 9 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly true .
foaf:topic spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
foaf:primaryTopic spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
schema:about spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
dct:subject spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
lio:location spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
po:subject spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
po:credit spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
foaf:depicts spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
<http://shakespeare.acropolis.org.uk/ontologies/work#genre> spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:topic
] .
## dct:isPartOf
dct:isPartOf
a spindle:Property ;
olo:index 10 ;
spindle:prominence -1 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly true .
dct:isPartOf spindle:property [
olo:index 0 ;
spindle:expressedAs dct:isPartOf
] .
void:subset spindle:inverseProperty [
olo:index 0 ;
spindle:expressedAs dct:isPartOf
] .
rdfs:seeAlso spindle:inverseProperty [
olo:index 0 ;
rdfs:domain dcmitype:Collection ;
spindle:expressedAs dct:isPartOf
] .
po:broadcast_on spindle:property [
olo:index 0 ;
spindle:expressedAs dct:isPartOf ;
rdfs:domain event:Event
] .
void:inDataset spindle:property [
olo:index 0 ;
spindle:expressedAs dct:isPartOf
] .
## dct:hasVersion
dct:hasVersion
a spindle:Property ;
olo:index 10 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly true .
dct:hasVersion spindle:property [
olo:index 0 ;
spindle:expressedAs dct:hasVersion
] .
po:version spindle:property [
olo:index 0 ;
spindle:expressedAs dct:hasVersion ;
rdfs:domain frbr:Work
] .
## gn:locatedIn
gn:locatedIn
a spindle:Property ;
olo:index 11 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly true .
gn:locatedIn spindle:property [
olo:index 0 ;
spindle:expressedAs gn:locatedIn
] .
<http://www.tate.org.uk/ontologies/collection#place> spindle:property [
olo:index 0 ;
spindle:expressedAs gn:locatedIn ;
rdfs:domain frbr:Work
] .
gn:parentCountry spindle:property [
olo:index 0 ;
spindle:expressedAs gn:locatedIn
] .
gn:parentFeature spindle:property [
olo:index 0 ;
spindle:expressedAs gn:locatedIn
] .
gn:parentADM1 spindle:property [
olo:index 0 ;
spindle:expressedAs gn:locatedIn
] .
gn:parentADM2 spindle:property [
olo:index 0 ;
spindle:expressedAs gn:locatedIn
] .
gn:parentADM3 spindle:property [
olo:index 0 ;
spindle:prominence -15 ;
spindle:expressedAs gn:locatedIn
] .
gn:parentADM4 spindle:property [
olo:index 0 ;
spindle:prominence -30 ;
spindle:expressedAs gn:locatedIn
] .
## event:place
event:place
a spindle:Property ;
olo:index 12 ;
spindle:expect rdfs:Resource ;
spindle:prominence 5 ;
spindle:proxyOnly true .
event:place spindle:property [
olo:index 0 ;
spindle:expressedAs event:place ;
rdfs:domain event:Event
] .
<http://www.tate.org.uk/ontologies/collection#place> spindle:property [
olo:index 0 ;
spindle:expressedAs event:place ;
rdfs:domain event:Event
] .
## event:factor
event:factor
a spindle:Property, spindle:TopicProperty ;
olo:index 12 ;
spindle:expect rdfs:Resource ;
spindle:prominence 1 ;
spindle:proxyOnly true .
event:factor spindle:property [
olo:index 0 ;
spindle:expressedAs event:factor ;
rdfs:domain event:Event
] .
po:broadcast_of spindle:property [
olo:index 0 ;
spindle:expressedAs event:factor ;
rdfs:domain event:Event
] .
## po:duration
po:duration
a spindle:Property, spindle:DurationProperty ;
olo:index 13 ;
spindle:prominence 30 ;
spindle:indexed true ;
spindle:expect rdfs:Literal .
po:duration spindle:property [
olo:index 0 ;
spindle:expressedAs po:duration
] .
## foaf:page
foaf:page
a spindle:Property, spindle:MediaProperty ;
olo:index 14 ;
spindle:expect rdfs:Resource ;
spindle:prominence 5 ;
spindle:proxyOnly false .
foaf:page spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
foaf:homepage spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
foaf:weblog spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
foaf:workInfoHomepage spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
foaf:workplaceHomepage spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
foaf:schoolHomepage spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
foaf:isPrimaryTopicOf spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
<http://dbpedia.org/property/website> spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
gn:wikipediaArticle spindle:property [
olo:index 0 ;
spindle:expressedAs foaf:page
] .
## dct:rights
dct:rights
a spindle:Property, spindle:RightsProperty ;
olo:index 15 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly false .
dct:rights spindle:property [
olo:index 0 ;
spindle:expressedAs dct:rights
] .
dct:license spindle:property [
olo:index 0 ;
spindle:expressedAs dct:rights
] .
dct:accessRights spindle:property [
olo:index 0 ;
spindle:expressedAs dct:rights
] .
cc:license spindle:property [
olo:index 0 ;
spindle:expressedAs dct:rights
] .
xhtml:license spindle:property [
olo:index 0 ;
spindle:expressedAs dct:rights
] .
## mrss:player
mrss:player
a spindle:Property, spindle:MediaProperty ;
olo:index 16 ;
spindle:prominence 10 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly false .
mrss:player spindle:property [
olo:index 0 ;
spindle:expressedAs mrss:player
] .
## mrss:content
mrss:content
a spindle:Property, spindle:MediaProperty ;
olo:index 16 ;
spindle:prominence 10 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly false .
mrss:content spindle:property [
olo:index 0 ;
spindle:expressedAs mrss:content
] .
<http://etree.linkedmusic.org/vocab/audio> spindle:property [
olo:index 0 ;
spindle:expressedAs mrss:content
] .
media:download spindle:property [
olo:index 0 ;
spindle:expressedAs mrss:content
] .
frbr:expression spindle:property [
olo:index 0 ;
spindle:expressedAs mrss:content
] .
## dct:format
dct:format
a spindle:Property, spindle:MIMETypeProperty ;
olo:index 17 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly false .
dct:format spindle:property [
olo:index 0 ;
spindle:expressedAs dct:format
] .
## odrl:permission
odrl:permission
a spindle:Property ;
olo:index 18 ;
spindle:expect rdfs:Resource ;
spindle:proxyOnly false .
odrl:permission
olo:index 0 ;
spindle:expressedAs odrl:permission .
## odrl:action
odrl:action
a spindle:Property ;