-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.ttl
57 lines (48 loc) · 1.98 KB
/
base.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
@prefix scdb: <http://four-tens.github.io/ontologies/base/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
scdb:
rdf:type owl:Ontology ;
dcterms:title "Strictly Come Dancing base ontology"@en ;
dcterms:created "2021-09-12"^^xsd:date ;
dcterms:rights "MIT"@en ;
dcterms:description "Strictly Come Dancing as an ontological model"@en ;
foaf:maker
[ foaf:name "Alex Wilson"; foaf:homepage <https://blog.probablyfine.co.uk/> ].
### Classes
scdb:Person rdf:type owl:Class;
rdfs:label "Person"@en ;
rdfs:comment "A person."@en ;
rdfs:isDefinedBy scdb: .
scdb:Professional rdf:type owl:Class ;
rdfs:label "Professional"@en ;
rdfs:comment "A professional dancer competing within the show."@en ;
rdfs:subClassOf scdb:Person ;
rdfs:isDefinedBy scdb: .
scdb:Celebrity rdf:type owl:Class ;
rdfs:label "Celebrity"@en ;
rdfs:comment "A celebrity contestant competing within the show."@en ;
rdfs:subClassOf scdb:Person ;
rdfs:isDefinedBy scdb: .
scdb:Judge rdf:type owl:Class ;
rdfs:label "Judge"@en ;
rdfs:comment "A judge on the show."@en ;
rdfs:subClassOf scdb:Person ;
rdfs:isDefinedBy scdb: .
### Object properties
scdb:hasCelebrityPartner rdf:type owl:ObjectProperty ;
rdfs:label "Has celebrity partner"@en ;
rdfs:comment "This professional has this celebrity partner"@en ;
rdfs:domain scdb:Professional ;
rdfs:range scdb:Celebrity;
rdfs:isDefinedBy scdb: .
scdb:hasProfessionalPartner rdf:type owl:ObjectProperty ;
rdfs:label "Has professional partner"@en ;
rdfs:comment "This celebrity has this professional partner"@en ;
rdfs:domain scdb:Celebrity ;
rdfs:range scdb:Professional ;
rdfs:isDefinedBy scdb: .