-
Notifications
You must be signed in to change notification settings - Fork 0
/
Catalog.ttl
116 lines (97 loc) · 3.65 KB
/
Catalog.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix ids: <https://w3id.org/idsa/core/> .
# Classes
# -------
ids:Catalog
a owl:Class;
rdfs:subClassOf dcat:Catalog;
rdfs:label "Catalog"@en ;
rdfs:comment "Class that represents (distributable) Catalogs."@en ;
.
ids:ResourceCatalog
a owl:Class;
rdfs:subClassOf ids:Catalog;
rdfs:label "Resource Catalog"@en ;
rdfs:comment "Class that aggregates Resources from a (distributable) Catalog."@en ;
.
ids:ParticipantCatalog
a owl:Class;
rdfs:subClassOf ids:Catalog;
rdfs:label "Participant Catalog"@en ;
rdfs:comment "Class that aggregates Participants from a (distributable) Catalog."@en ;
.
ids:ConnectorCatalog
a owl:Class;
rdfs:subClassOf ids:Catalog;
rdfs:label "Connector Catalog"@en ;
rdfs:comment "Class that aggregates Connectors from a (distributable) Catalog."@en ;
.
ids:BrokerCatalog
a owl:Class;
rdfs:subClassOf ids:ConnectorCatalog;
rdfs:label "Broker Catalog"@en ;
rdfs:comment "Class that aggregates Brokers from a (distributable) Catalog."@en ;
.
ids:AppStoreCatalog
a owl:Class;
rdfs:subClassOf ids:ConnectorCatalog;
rdfs:label "AppStore Catalog"@en ;
rdfs:comment "Class that aggregates AppStores from a (distributable) Catalog."@en ;
.
# TODO: Align with ResourceCatalog
ids:AppResourceCatalog
a owl:Class;
rdfs:subClassOf ids:Catalog;
rdfs:label "App Resource Catalog"@en ;
rdfs:comment "Class that aggregates App Resources from a (distributable) Catalog. May be used to list installed apps in a component."@en ;
.
ids:ClearingHouseCatalog
rdfs:subClassOf ids:Catalog;
a owl:Class;
rdfs:label "Clearing House Catalog"@en ;
rdfs:comment "Class that aggregates Clearing Houses from a (distributable) Catalog."@en ;
.
# Properties
# ----------
ids:offeredResource a owl:ObjectProperty;
rdfs:subPropertyOf dcat:dataset;
rdfs:domain ids:ResourceCatalog;
rdfs:range ids:Resource;
rdfs:label "offered resource"@en;
rdfs:comment "A Resource that is part of a resource catalog, indicating an offering (of, e.g., data)."@en.
ids:requestedResource a owl:ObjectProperty;
rdfs:subPropertyOf dcat:dataset;
rdfs:domain ids:ResourceCatalog;
rdfs:range ids:Resource;
rdfs:label "requested resource"@en;
rdfs:comment "A Resource that is part of a resource catalog, indicating a request (of, e.g., data, software, …)."@en.
ids:member a owl:ObjectProperty;
rdfs:subPropertyOf dcat:dataset;
rdfs:domain ids:ParticipantCatalog;
rdfs:range ids:Participant;
rdfs:label "member"@en;
rdfs:comment "A Participant that is part of a participant catalog."@en.
ids:listedConnector a owl:ObjectProperty;
rdfs:subPropertyOf dcat:dataset;
rdfs:domain ids:ConnectorCatalog;
rdfs:range ids:Connector;
rdfs:label "listed Connector"@en;
rdfs:comment "A Connector that is part of a Connector catalog."@en;
.
ids:listedClearingHouse a owl:ObjectProperty;
rdfs:subPropertyOf dcat:dataset;
rdfs:domain ids:ClearingHouseCatalog;
rdfs:range ids:ClearingHouse;
rdfs:label "listed Clearing House"@en;
rdfs:comment "A Clearing House that is part of a Clearing House catalog."@en;
.
ids:listedAppResource a owl:ObjectProperty;
rdfs:subPropertyOf dcat:dataset;
rdfs:domain ids:AppResourceCatalog;
rdfs:range ids:AppResource;
rdfs:label "listed AppResource"@en;
rdfs:comment "An AppResource that is part of an AppResourceCatalog."@en.