vocabularies.test-query.n3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jena Show documentation
Show all versions of jena Show documentation
Jena is a Java framework for building Semantic Web applications. It provides a programmatic environment for RDF, RDFS and OWL, SPARQL and includes a rule-based inference engine.
# (c) Copyright 2001-2003, Hewlett-Packard Company, all rights reserved.
@prefix rdfs: .
@prefix rdf: .
@prefix owl: .
@prefix dc: .
@prefix mf: .
@prefix : .
# RDF testcases vocabulary
@prefix testns: .
<> rdfs:comment "Vocabulary for query test cases" ;
dc:creator "Andy Seaborne" ;
dc:subject "" ;
dc:publisher "Hewlett-Packard Laboratories" ;
dc:title "Query test case vocabulary" ;
dc:description "" ;
dc:date "2003-03" ;
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 ;
.
© 2015 - 2025 Weber Informatics LLC | Privacy Policy