diff options
author | David Robillard <d@drobilla.net> | 2013-01-27 20:30:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-01-27 20:30:14 +0000 |
commit | 322105561fa73239fae9d1f4215b250682a02564 (patch) | |
tree | b771ab4cf6811795f340e4533f5b2e2691f174ff /lv2/lv2plug.in/ns/ext/midi/midi.ttl | |
parent | 8fc9914200ae63c00182cdf6c535828c94848b1d (diff) | |
download | lv2-322105561fa73239fae9d1f4215b250682a02564.tar.xz |
Remove atom:stringType in favour of owl:onDatatype so generic tools can understand and validate atom literals.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/midi/midi.ttl')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/midi/midi.ttl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lv2/lv2plug.in/ns/ext/midi/midi.ttl b/lv2/lv2plug.in/ns/ext/midi/midi.ttl index e35d3e3..b30794c 100644 --- a/lv2/lv2plug.in/ns/ext/midi/midi.ttl +++ b/lv2/lv2plug.in/ns/ext/midi/midi.ttl @@ -109,11 +109,12 @@ midi:HexByte rdfs:comment "A hexadecimal byte, which is a xsd:hexBinary value <= FF" . midi:MidiEvent - a rdfs:Class ; + a rdfs:Class , + rdfs:Datatype ; rdfs:label "MIDI Message" ; rdfs:subClassOf ev:Event , atom:Atom ; - atom:stringType xsd:hexBinary ; + owl:onDatatype xsd:hexBinary ; lv2:documentation """ <p>A single raw MIDI message (i.e. a sequence of bytes).</p> |