-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.ttl
65 lines (55 loc) · 2.29 KB
/
manifest.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
@base <https://barnard59.zazuko.com/> .
@prefix b59: <https://barnard59.zazuko.com/vocab#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix code: <https://code.described.at/> .
@prefix p: <https://pipeline.described.at/> .
# renamed from <https://barnard59.zazuko.com/operations/rdf/cube.js#buildCubeShape>
<operations/cube/buildCubeShape> a p:Operation, p:WritableObjectMode, p:ReadableObjectMode;
rdfs:label "build Cube Shape";
rdfs:comment "Builds a Cube Shape based on Cube Observation datasets";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-cube/cube.js#buildCubeShape>
].
# renamed from <https://barnard59.zazuko.com/operations/rdf/cube.js#toObservation>
<operations/cube/toObservation> a p:Operation, p:WritableObjectMode, p:ReadableObjectMode;
rdfs:label "to Cube Observation";
rdfs:comment "Converts a set of quads to a Cube Observation";
code:implementedBy [ a code:EcmaScriptModule;
code:link <node:barnard59-cube/cube.js#toObservation>
].
<command/cube/fetch-metadata>
a b59:CliCommand ;
b59:command "fetch-metadata" ;
rdfs:label "Retrieves cube and its constraint shape from SPARQL endpoint" ;
b59:source "barnard59-cube/pipeline/fetch-metadata.ttl" ;
.
<command/cube/check-metadata>
a b59:CliCommand ;
b59:command "check-metadata" ;
rdfs:label "Validate input cube and its constraint against profile shapes" ;
b59:source "barnard59-cube/pipeline/check-metadata.ttl" ;
.
<command/cube/fetch-observations>
a b59:CliCommand ;
b59:command "fetch-observations" ;
rdfs:label "Retrieves cube observations from SPARQL endpoint" ;
b59:source "barnard59-cube/pipeline/fetch-observations.ttl" ;
.
<command/cube/check-observations>
a b59:CliCommand ;
b59:command "check-observations" ;
rdfs:label "Validate input observations against cube constraint" ;
b59:source "barnard59-cube/pipeline/check-observations.ttl" ;
.
<command/cube/fetch-constraint>
a b59:CliCommand ;
b59:command "fetch-constraint" ;
rdfs:label "Retrieves cube constraint from SPARQL endpoint" ;
b59:source "barnard59-cube/pipeline/fetch-constraint.ttl" ;
.
<command/cube/fetch-cube>
a b59:CliCommand ;
b59:command "fetch-cube" ;
rdfs:label "Retrieves cube with observations from SPARQL endpoint" ;
b59:source "barnard59-cube/pipeline/fetch-cube.ttl" ;
.