json-ld-framing icon indicating copy to clipboard operation
json-ld-framing copied to clipboard

fixed frame on type `@json`

Open pasquale95 opened this issue 2 years ago • 1 comments

Fixed the frame for the case of framing over a @json attribute for the issue #142. The previous frame expanded incorrectly as:

[
  {
    "http://example.org/vocab#info": [
      {
        "@type": "@json",
        "@value": {
          "@value": {},
          "@type": "@json"
        }
      }
    ]
  }
]

This frame expands instead as:

[
  {
    "http://example.org/vocab#info": [
      {
        "@type": "@json",
        "@value": {}
      }
    ]
  }
]

which should be the expected expansion.

pasquale95 avatar Jan 19 '23 08:01 pasquale95

gkellogg marked as non substantive for IPR from ash-nazg.

w3cbot avatar Jul 10 '23 20:07 w3cbot