You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The chunk.js implementation suggests that names are composed of letters and digits, as well as a restricted set of punctuation characters.
However, the description of @rdfmap suggests that chunk property values could be IRIs:
@rdfmap {
dog http://example.com/ns/dog
cat http://example.com/ns/cat
}
In practice, I wonder what are allowed characters for types, names, and ids. It seems to me that allowing IRIs (as done in JSON-LD) could also help mapping with the semantic world, and that it would allow reasoning about things. For instance, I could have
website https://example.org/ {
name "An example page"
}
One problem is that commas are allowed in IRIs, which makes them problematic for use in a comma separated list of property values. A solution is to simply use space as a separator between values, or to mandate excaping of commas in IRIs.
The text was updated successfully, but these errors were encountered:
The
chunk.js
implementation suggests that names are composed of letters and digits, as well as a restricted set of punctuation characters.However, the description of
@rdfmap
suggests that chunk property values could be IRIs:In practice, I wonder what are allowed characters for types, names, and ids. It seems to me that allowing IRIs (as done in JSON-LD) could also help mapping with the semantic world, and that it would allow reasoning about things. For instance, I could have
One problem is that commas are allowed in IRIs, which makes them problematic for use in a comma separated list of property values. A solution is to simply use space as a separator between values, or to mandate excaping of commas in IRIs.
The text was updated successfully, but these errors were encountered: