Fix RDF schema problems with lane_number and species.
[htsworkflow.git] / htsworkflow / util / schemas / xhtmlvocab.turtle
1 # Minimal xhtml vocab to make validating my rdfa pages cleaner
2
3 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
4 @prefix : <http://www.w3.org/1999/xhtml> .
5 @prefix owl: <http://www.w3.org/2002/07/owl#> .
6 @prefix rdfa: <http://www.w3.org/ns/rdfa#> .
7 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
8 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
9
10 <http://www.w3.org/1999/xhtml/vocab>
11     a owl:Ontology ;
12     <http://www.w3.org/1999/xhtml/vocab#stylesheet> <http://www.w3.org/StyleSheets/TR/base.css> .
13
14 <http://www.w3.org/1999/xhtml/vocab#stylesheet>
15     a rdf:Property ;
16     rdfs:comment """stylesheet refers to a resource
17       serving as a stylesheet for a resource. """^^xsd:string ;
18     rdfs:member <http://www.w3.org/1999/xhtml/vocab#relrev-properties> ;
19 #    rdfa:term "stylesheet" ;
20 #    rdfa:uri "http://www.w3.org/1999/xhtml/vocab#stylesheet" ;
21     rdfs:domain rdfs:Resource ;
22     rdfs:range rdfs:Resource 
23     .