blob: f508a9abec12f2efcbe1527b15b110dfec35ea90 [file] [log] [blame]
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .
@prefix : <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .
## Query-specific test vocabulary for a manifest action.
: rdfs:comment "Vocabulary for query test cases" ;
dc:creator "Andy Seaborne" ;
dc:subject "" ;
dc:publisher "W3C RDF Data Access Working Group" ;
dc:title "Query test case vocabulary" ;
dc:description "Query test case vocabulary" ;
dc:date "2004-07" ;
dc:format "RDF" ;
dc:identifier : ;
.
## ---- Class declarations ----
:QueryTest a rdfs:Class ;
rdfs:comment "The class of query tests" .
## ---- Property declarations ----
:query a rdf:Property ;
rdfs:comment "The query to ask" ;
rdfs:domain :QueryTest ;
## rdfs:range ?? ;
.
:data a rdf:Property ;
rdfs:comment "Optional: data for the query test" ;
rdfs:domain :QueryTest ;
rdfs:range rdfs:Resource ;
.
:graphData a rdf:Property ;
rdfs:comment "Optional: named-graph only data for the query test" ;
rdfs:domain :QueryTest ;
rdfs:range rdfs:Resource ;
.