brotkrueml / schema

TYPO3 extension providing an API and view helpers for schema.org markup
https://extensions.typo3.org/extension/schema
GNU General Public License v2.0
32 stars 9 forks source link

Property with only @id as value not displayed in AdminPanel #98

Closed brotkrueml closed 2 years ago

brotkrueml commented 2 years ago

Current behavior

Having the following JSON-LD:

{
  "@context": "https://schema.org/",
  "@graph": [
    {
      "@type": "WebPage",
      "mainEntity": {
        "@type": "Collection",
        "hasPart": [
          {
            "@id": "https://example.org/#part-42"
          }
        ]
      }
    }
  ]
}

In AdminPanel the value of hasPart is not displayed (empty).

Expected behavior/output

The @id property with its value is displayed.

Environment