We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following graph:
@prefix : <http://example.org/model/> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xml: <http://www.w3.org/XML/1998/namespace> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . <http://example.org/context/42> a :Person ; foaf:age 43 ; foaf:firstName "Bob", "Joe" ; foaf:lastName "smith" .
passes
<http://example.org/sample/example1/String> <http://www.w3.org/2001/XMLSchema#string> <http://example.org/sample/example1/Int> <http://www.w3.org/2001/XMLSchema#integer> <http://example.org/sample/example1/Boolean> <http://www.w3.org/2001/XMLSchema#boolean> <http://example.org/sample/example1/Person> CLOSED { ( <http://xmlns.com/foaf/0.1/firstName> @<http://example.org/sample/example1/String> * ; <http://xmlns.com/foaf/0.1/lastName> @<http://example.org/sample/example1/String> ; <http://xmlns.com/foaf/0.1/age> @<http://example.org/sample/example1/Int> ? ; <http://example.org/model/living> @<http://example.org/sample/example1/Boolean> ? ; <http://xmlns.com/foaf/0.1/knows> @<http://example.org/sample/example1/Person> * ) }
It shouldn't because of the rdf:type
The text was updated successfully, but these errors were encountered:
Fix for issue #41 -- don't ignore CLOSED error
6d9e3d7
This issue only appeared when using the `evaluate` call.
Merge pull request #43 from hsolbrig/Issue_41
a41f3fe
No branches or pull requests
The following graph:
passes
It shouldn't because of the rdf:type
The text was updated successfully, but these errors were encountered: