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
|
# Copyright (c) 2015 Hanspeter Portner (dev@open-music-kontrollers.ch)
#
# This is free software: you can redistribute it and/or modify
# it under the terms of the Artistic License 2.0 as published by
# The Perl Foundation.
#
# This source is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# Artistic License 2.0 for more details.
#
# You should have received a copy of the Artistic License 2.0
# along the source as a COPYING file. If not, obtain it from
# http://www.perlfoundation.org/artistic_license_2_0.
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix midi: <http://lv2plug.in/ns/midi#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix osc: <http://open-music-kontrollers.ch/lv2/osc#> .
<http://open-music-kontrollers.ch/lv2/osc>
a owl:Ontology ;
rdfs:seeAlso <lv2_osc.h> ,
<lv2-osc.doap.ttl> ;
lv2:documentation """
<p>This specification defines event data types for OSC bundles and message.
To signal support for OSC events on an atom:AtomPort with an atom:bufferType
of atom:Sequence, plugin authors should add atom:supports osc:Event to
the plugin specification.</p>
""" .
osc:schedule
a lv2:Feature .
osc:Event
a rdfs:Class ;
rdfs:subClassOf atom:Object ;
rdfs:label "OSC Event (Bundle or Message)" .
osc:Bundle
a rdfs:Class ;
rdfs:subClassOf osc:Event ;
rdfs:label "OSC Bundle" .
osc:Message
a rdfs:Class ;
rdfs:subClassOf osc:Event ;
rdfs:label "OSC Message" .
osc:bundleTimestamp
a rdf:Property ,
owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain osc:Bundle ;
rdfs:range atom:Long ;
rdfs:label "OSC Bundle Timestamp" .
osc:bundleItems
a rdf:Property ,
owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain osc:Bundle ;
rdfs:range atom:Tuple ;
rdfs:label "OSC Bundle Items" ;
lv2:documentation """
<p>Tuple of OSC Bundle Items (e.g. nested osc:Bundle's and/or
osc:Message's).</p>
""" .
osc:messagePath
a rdf:Property ,
owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain osc:Message ;
rdfs:range atom:String ;
rdfs:label "OSC Message Path" .
osc:messageFormat
a rdf:Property ,
owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain osc:Message ;
rdfs:range atom:String ;
rdfs:label "OSC Message Format" .
osc:messageArguments
a rdf:Property ,
owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain osc:Message ;
rdfs:range atom:Tuple ;
rdfs:label "OSC Message Arguments" ;
lv2:documentation """
<p>Tuple of OSC Message Arguments (e.g. Atom:Int, Atom:Long, Atom:Float,
Atom:Double, Atom:String, Atom:Chunk, Atom:Bool, Atom:Blank,
MIDI:MidiEvent).</p>
""" .
|