draft-polli-restapi-ld-keywords icon indicating copy to clipboard operation
draft-polli-restapi-ld-keywords copied to clipboard

base iri expansion: caveats on fragment-based IRIs

Open ioggstream opened this issue 2 months ago • 0 comments

When I

  • use https://www.w3.org/TR/json-ld11-api/#iri-expansion, eg.
@prefix : <https://example.com/vocab#> .

:foo skos:prefLabel "Foo" .
:bar skos:prefLabel "Bar" .

I Expect

  • caveats on fragment-based IRIs

Notes

"@context":
  "@base": "https://example.com/vocab#"
  id: "@id"
  l: skos:prefLabel
data:
- id: foo
  l: foo
- id: bar
  l: bar

ioggstream avatar Nov 04 '25 17:11 ioggstream