The whitespace in ShExErrorCode makes the natural URL form require some transformation or encoding. Encoding would look like http://www.w3.org/ns/shex#invalid%20schema.
- enum ShExErrorCode {
- "invalid schema",
- "non-conforming graph",
- "syntax error"
- };
+ enum ShExErrorCode {
+ "invalidSchema",
+ "non-conformingGraph", # or nonConformingGraph
+ "syntaxError"
+ };
The whitespace in
ShExErrorCodemakes the natural URL form require some transformation or encoding. Encoding would look likehttp://www.w3.org/ns/shex#invalid%20schema.