# Copyright (c) 2015-2016 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 owl: . @prefix rdfs: . @prefix xsd: . @prefix lv2: . @prefix atom: . @prefix osc: . a owl:Ontology ; rdfs:seeAlso , ; lv2:documentation """

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.

""" . osc:schedule a lv2:Feature . osc:Event a rdfs:Class , rdfs:Datatype ; rdfs:subClassOf atom:Atom ; owl:onDatatype xsd:hexBinary ; rdfs:label "OSC Event (Bundle or Message)" .