
vocabularies.test-manifest-x.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.
The newest version!
@prefix rdfs: .
@prefix rdf: .
@prefix dc: .
@prefix : .
@prefix mf: .
## Additional (non-DAWG) properties, classes and constants.
: rdfs:comment "Manifest vocabulary for test cases (additions)" ;
dc:creator "Andy Seaborne" ;
dc:subject "" ;
dc:publisher "Hewlett-Packard Laboratories" ;
dc:title "Test case manifest vocabulary (extra)" ;
dc:description "Test case manifest vocabulary (extra)" ;
dc:date "2005-04" ;
dc:format "RDF" ;
dc:identifier : ;
.
## ---- Class declarations ----
:TestQuery rdf:type rdfs:Class ;
rdfs:comment "The class of test that are Query tests (query, data, results)".
:TestSyntax rdf:type rdfs:Class ;
rdfs:comment "Syntax tests (query)" .
:TestBadSyntax rdf:type rdfs:Class ;
rdfs:subClassOf :TestSyntax ;
rdfs:comment "Syntax tests which expect a parse failure" .
:TestSerialization rdf:type rdfs:Class ;
rdfs:comment "Query serialization tests" .
:TestSurpressed rdf:type rdfs:Class ;
rdfs:comment "Query test not to be run" .
## ---- Property declarations ----
:querySyntax rdf:type rdf:Property ;
rdfs:comment "Syntax of the query" ;
.
:dataSyntax rdf:type rdf:Property ;
rdfs:comment "Syntax of the query" ;
.
:textIndex rdf:type rdf:Property ;
rdfs:comment "Whether to create a text index" ;
.
:include rdf:type rdf:Property ;
rdfs:comment "Include another manifest file." ;
.
:defaultTestType rdf:type rdf:Property ;
rdfs:comment "Default type of a test" ;
rdfs:domain mf:Manifest ;
# Default default is a query test
.
## ---- Constants ----
© 2015 - 2025 Weber Informatics LLC | Privacy Policy