blob: d74f4cfa6f1bcf5a730c862d27d4a58489f17472 (
plain)
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
|
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pset: <http://lv2plug.in/ns/ext/presets#> .
@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#> .
<http://lv2plug.in/ns/ext/presets>
a owl:Ontology ,
lv2:Specification ;
rdfs:label "LV2 Presets" ;
rdfs:comment "Presets for LV2 plugins." ;
rdfs:seeAlso <presets.meta.ttl> .
pset:Bank
a rdfs:Class ;
rdfs:label "Bank" ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty rdfs:label ;
owl:someValuesFrom xsd:string ;
rdfs:comment "A Bank MUST have at least one string rdfs:label."
] ;
rdfs:comment "A bank of presets." .
pset:Preset
a rdfs:Class ;
rdfs:subClassOf lv2:PluginBase ;
rdfs:label "Preset" ;
rdfs:comment "A preset for an LV2 plugin." ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty rdfs:label ;
owl:someValuesFrom xsd:string ;
rdfs:comment "A Preset MUST have at least one string rdfs:label."
] .
pset:bank
a rdf:Property ;
rdfs:domain pset:Preset ;
rdfs:range pset:Bank ;
rdfs:label "bank" ;
rdfs:comment "The bank this preset belongs to." .
pset:value
a rdf:Property ;
rdfs:domain lv2:PortBase ;
rdfs:label "value" ;
rdfs:comment "The value of a port in a preset." .
pset:preset
a rdf:Property ;
rdfs:domain lv2:PluginBase ;
rdfs:range pset:Preset ;
rdfs:label "preset" ;
rdfs:comment "The preset currently applied to a plugin instance." .
|