@prefix lv2: . @prefix opts: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . a owl:Ontology , lv2:Specification ; rdfs:label "LV2 Options" ; rdfs:comment "Runtime options for LV2 plugins and UIs." ; rdfs:seeAlso , . opts:Option a rdfs:Class ; rdfs:label "Option" ; rdfs:subClassOf rdf:Property ; rdfs:comment "A value for a static option passed to an instance." . opts:interface a lv2:ExtensionData ; rdfs:label "interface" ; rdfs:comment "An interface for dynamically setting and getting options." . opts:options a lv2:Feature ; rdfs:label "options" ; rdfs:comment "The feature used to provide options to an instance." . opts:requiredOption a rdf:Property , owl:ObjectProperty ; rdfs:range rdf:Property ; rdfs:label "required option" ; rdfs:comment "An option required by the instance to function at all." . opts:supportedOption a rdf:Property , owl:ObjectProperty ; rdfs:range rdf:Property ; rdfs:label "supported option" ; rdfs:comment "An option supported or by the instance." .