-
Notifications
You must be signed in to change notification settings - Fork 14
/
solid-app.ttl
60 lines (51 loc) · 3.21 KB
/
solid-app.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
<>
<http://creativecommons.org/ns#attributionName> "Andrei Sambra" ;
<http://creativecommons.org/ns#attributionURL> <> ;
<http://creativecommons.org/ns#license> <http://creativecommons.org/licenses/by-sa/2.0/uk/deed.en_GB> ;
<http://purl.org/dc/terms/issued> "2015-06-19"^^<http://www.w3.org/2001/XMLSchema#date> ;
a <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Solid Web Application"@en ;
<http://xmlns.com/foaf/0.1/maker> <https://deiu.me/profile#me> .
<#Application>
a <http://www.w3.org/2000/01/rdf-schema#Class> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "A Solid Web application."@en ;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Application"@en .
<#Configuration>
a <http://www.w3.org/2000/01/rdf-schema#Class> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "A set of configuration data for a Solid Web application."@en ;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Configuration data"@en .
<#PreferencesWorkspace>
a <http://www.w3.org/2000/01/rdf-schema#Class> ;
<http://www.w3.org/2000/01/rdf-schema#comment> "A special workspace that contains configuration resources for Solid Web application."@en ;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Configuration Workspace"@en ;
<http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/pim/space#Workspace> .
<#configuration>
a rdf:Property ;
<http://www.w3.org/2000/01/rdf-schema#comment> "The configuration data for a given app."@en ;
<http://www.w3.org/2000/01/rdf-schema#domain> <#Application> ;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Configuration"@en .
<#dataSource>
a rdf:Property ;
<http://www.w3.org/2000/01/rdf-schema#comment> "A container (workspace) in which the app stores data."@en ;
<http://www.w3.org/2000/01/rdf-schema#domain> <#Configuration> ;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Data source"@en ;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/ns/pim/space#Workspace> .
<#index>
a rdf:Property ;
<http://www.w3.org/2000/01/rdf-schema#comment> "An index resource that contains references to resources managed by the app."@en ;
<http://www.w3.org/2000/01/rdf-schema#domain> <#Application> ;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Data index"@en .
<#commonType>
a rdf:Property ;
<http://www.w3.org/2000/01/rdf-schema#comment> "A common type of data that the app uses. An app can publish a list of common types that can be used by other apps."@en ;
<http://www.w3.org/2000/01/rdf-schema#domain> <#Application> ;
<http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Common type"@en ;
<http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> .