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 ShExC fails in the grammar:
prefix : <http://example.org> prefix xsd: <http://www.w3.org/2001/XMLSchema#> :S Literal xsd:string
while the equivalent ShExJ seems to be ok:
{ "@context": "http://www.w3.org/ns/shex.jsonld", "type": "Schema", "shapes": [ { "type": "NodeConstraint", "id": "http://example.org/S", "nodeKind": "literal", "datatype": "http://www.w3.org/2001/XMLSchema#string" } ] }
ShEx-simple allows to convert from the latter to the former, but not in the other direction.
The ShExC grammar has this rule which allows only one component of a node constraint:
[22] nodeConstraint ::= "LITERAL" xsFacet* | nonLiteralKind stringFacet* | datatype xsFacet* | valueSet xsFacet* | xsFacet+
I think there are 3 possibilities:
The text was updated successfully, but these errors were encountered:
This points to a suspicious hole in the schema tests. I.e. we should have seen this before.
Sorry, something went wrong.
No branches or pull requests
The following ShExC fails in the grammar:
while the equivalent ShExJ seems to be ok:
ShEx-simple allows to convert from the latter to the former, but not in the other direction.
The ShExC grammar has this rule which allows only one component of a node constraint:
I think there are 3 possibilities:
The text was updated successfully, but these errors were encountered: