1# Copyright (c) 2015-2016 Hanspeter Portner (dev@open-music-kontrollers.ch)
2#
3# This is free software: you can redistribute it and/or modify
4# it under the terms of the Artistic License 2.0 as published by
5# The Perl Foundation.
6#
7# This source is distributed in the hope that it will be useful,
8# but WITHOUT ANY WARRANTY; without even the implied warranty of
9# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10# Artistic License 2.0 for more details.
11#
12# You should have received a copy of the Artistic License 2.0
13# along the source as a COPYING file. If not, obtain it from
14# http://www.perlfoundation.org/artistic_license_2_0.
15
16@prefix owl: <http://www.w3.org/2002/07/owl#> .
17@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
18@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
19@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
20@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
21@prefix osc: <http://open-music-kontrollers.ch/lv2/osc#> .
22
23<http://open-music-kontrollers.ch/lv2/osc>
24	a owl:Ontology ;
25	rdfs:seeAlso <lv2_osc.h> ,
26		<lv2-osc.doap.ttl> ;
27	lv2:documentation """
28		<p>This specification defines event data types for OSC bundles and message.
29		To signal support for OSC events on an atom:AtomPort with an atom:bufferType
30		of atom:Sequence, plugin authors should add atom:supports osc:Event to
31		the plugin specification.</p>
32	""" .
33
34osc:schedule
35	a lv2:Feature .
36
37osc:Event
38	a rdfs:Class ,
39		rdfs:Datatype ;
40	rdfs:subClassOf atom:Atom ;
41	owl:onDatatype xsd:hexBinary ;
42	rdfs:label "OSC Event (Bundle or Message)" .
43