-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathontologies_to_use.ttl
41 lines (31 loc) · 1.12 KB
/
ontologies_to_use.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
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix vcard: <http://www.w3.org/2018/vcard-new/1#>.
@prefix sioc: <http://rdfs.org/sioc/ns>.
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
@prefix dc: <http://purl.org/dc/terms/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
<person> a foaf:Person, foaf:OnlineAccount, sioc:UserAccount ;
foaf:name [ a rdfs:Literal ] ;
foaf:nick [ a rdfs:Literal ] ;
foaf:img [ a foaf:Image ] ;
sioc:avatar [ a foaf:Image ] ; # Alternative for foaf:img
foaf:knows <person> ;
solid:privateTypeIndex [ a solid:UnlistedDocument ] .
<chatroom> a sioct:ChatChannel ;
dc:creator <person>;
dc:title [ a rdfs:Literal ] ;
dc:created [ a xsd:dateTime ] ;
sioc:container_of <message> .
<message> a sioct:InstantMessage ;
sioc:has_creator <person> ;
dc:created [ a xsd:dateTime ] ;
sioc:content [ a rdfs:Literal ].
# <privateIndex>
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
@prefix sioct: <http://rdfs.org/sioc/types#>.
<>
a solid:TypeIndex ;
a solid:UnlistedDocument .
<#hash> a solid:TypeRegistration ;
solid:forClass sioct:ChatChannel ;
solid:instanceContainer <chatrooms/> .