w3c / json-ld-api

JSON-LD 1.1 Processing Algorithms and API Specification
https://w3c.github.io/json-ld-api/
Other
73 stars 29 forks source link

If processing mode is json-ld-1.0, IRI-like terms should still be allowed to differ from their expanded forms #581

Open niklasl opened 7 months ago

niklasl commented 7 months ago

In JSON-LD 1.1, IRI Expansion within a Context defines a rule with a Warning:

If a compact IRI is used as a term, it must expand to the value that compact IRI would have on its own when expanded. This represents a change to the original 1.0 algorithm to prevent terms from expanding to a different IRI, which could lead to undesired results.

This is reflected in the JSON-LD 1.1 Create Term Definition algorithm, which, in step 14.2.4 first says:

If the term contains a colon (:) anywhere but as the first or last character of term, or if it contains a slash (/) anywhere

But then step 14.2.4.2 unconditionally says:

If the result of IRI expanding term using local context, and defined, is not the same as the IRI mapping of definition, an invalid IRI mapping error has been detected and processing is aborted.

This of course works as expected if the processing mode is json-ld-1.1.

But if the processing mode is json-ld-1.0, step 14.2.4.2 should not throw an error. This is even specified in the test suite. The expansion tests 0026 and 0071, both of type jld:PositiveEvaluationTest, jld:ExpandTest, are explicitly for :specVersion "json-ld-1.0". It appears a verbatim implementation would fail on this.

If that is correct, this step of the algorithm needs an "Unless the processing mode is json-ld-1.0" condition.