-
Notifications
You must be signed in to change notification settings - Fork 1
/
csv2tabular.owl
86 lines (86 loc) · 4.47 KB
/
csv2tabular.owl
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
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:expr="http://www.daml.org/services/owl-s/1.2/generic/Expression.owl#"
xmlns:service="http://www.daml.org/services/owl-s/1.2/Service.owl#"
xmlns:process="http://www.daml.org/services/owl-s/1.2/Process.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:grounding="http://www.daml.org/services/owl-s/1.2/Grounding.owl#"
xmlns="https://raw.github.com/paulopinheiro1234/visko-packages-rdf/master/csv2tabular.owl"
xmlns:profile="http://www.daml.org/services/owl-s/1.2/Profile.owl#"
xmlns:list="http://www.daml.org/services/owl-s/1.2/generic/ObjectList.owl#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="https://raw.github.com/paulopinheiro1234/visko-packages-rdf/master/csv2tabular.owl">
<service:Service rdf:ID="csv2tabularService">
<rdfs:label>csv2tabular</rdfs:label>
<service:supports>
<grounding:WsdlGrounding rdf:ID="csv2tabularGrounding"/>
</service:supports>
<service:describedBy>
<process:AtomicProcess rdf:ID="csv2tabularProcess"/>
</service:describedBy>
<service:presents>
<profile:Profile rdf:ID="csv2tabularProfile"/>
</service:presents>
</service:Service>
<profile:Profile rdf:about="#csv2tabularProfile">
<profile:hasOutput>
<process:Output rdf:ID="return">
<process:parameterType rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI"
>http://www.w3.org/2001/XMLSchema#string</process:parameterType>
<rdfs:label>return</rdfs:label>
</process:Output>
</profile:hasOutput>
<profile:hasInput>
<process:Input rdf:ID="url">
<process:parameterType rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI"
>http://www.w3.org/2001/XMLSchema#string</process:parameterType>
<rdfs:label>url</rdfs:label>
</process:Input>
</profile:hasInput>
<profile:textDescription>This is a VisKo/OWLS Service.</profile:textDescription>
<profile:serviceName>csv2tabular</profile:serviceName>
<service:presentedBy rdf:resource="#csv2tabularService"/>
</profile:Profile>
<process:AtomicProcess rdf:about="#csv2tabularProcess">
<process:hasOutput rdf:resource="#return"/>
<process:hasInput rdf:resource="#url"/>
<service:describes rdf:resource="#csv2tabularService"/>
<rdfs:label>csv2tabularProcess</rdfs:label>
</process:AtomicProcess>
<grounding:WsdlGrounding rdf:about="#csv2tabularGrounding">
<grounding:hasAtomicProcessGrounding>
<grounding:WsdlAtomicProcessGrounding rdf:ID="csv2tabularAtomicProcessGrounding"/>
</grounding:hasAtomicProcessGrounding>
<service:supportedBy rdf:resource="#csv2tabularService"/>
</grounding:WsdlGrounding>
<grounding:WsdlAtomicProcessGrounding rdf:about="#csv2tabularAtomicProcessGrounding">
<grounding:wsdlOutput>
<grounding:WsdlOutputMessageMap>
<grounding:wsdlMessagePart>http://iw.cs.utep.edu:8080/toolkits/services/ToolkitServices?wsdl#return</grounding:wsdlMessagePart>
<grounding:owlsParameter rdf:resource="#return"/>
</grounding:WsdlOutputMessageMap>
</grounding:wsdlOutput>
<grounding:wsdlInput>
<grounding:WsdlInputMessageMap>
<grounding:wsdlMessagePart>http://iw.cs.utep.edu:8080/toolkits/services/ToolkitServices?wsdl#url</grounding:wsdlMessagePart>
<grounding:owlsParameter rdf:resource="#url"/>
</grounding:WsdlInputMessageMap>
</grounding:wsdlInput>
<grounding:wsdlOutputMessage rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI"
>http://services.trustlab.utep.edu#csv2tabularResponse</grounding:wsdlOutputMessage>
<grounding:wsdlInputMessage rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI"
>http://services.trustlab.utep.edu#csv2tabularRequest</grounding:wsdlInputMessage>
<grounding:wsdlDocument rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI"
>http://iw.cs.utep.edu:8080/toolkits/services/ToolkitServices?wsdl</grounding:wsdlDocument>
<grounding:wsdlOperation>
<grounding:WsdlOperationRef>
<grounding:operation rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI"
>http://iw.cs.utep.edu:8080/toolkits/services/ToolkitServices?wsdl#csv2tabular</grounding:operation>
</grounding:WsdlOperationRef>
</grounding:wsdlOperation>
<grounding:owlsProcess rdf:resource="#csv2tabularProcess"/>
</grounding:WsdlAtomicProcessGrounding>
</rdf:RDF>