JSON-LD

JSON-LD (JSON for Linked Data) ist ein leichtgewichtiges Format für Linked Data. Es basiert, wie der Name schon sagt, auf JSON und ist für Google die erste Wahl bei Structured Data. In einem HTML-Dokument stehen diese Daten vor dem body-Tag innerhalb eines script-Tags. Sie können aber auch über JavaScript oder Widgets injiziert werden.

<script type="application/ld+json">

{
    "@context": "http://schema.org",
    "@type": "Organization",
    "url": "http://www.your-company-site.com",
    "contactPoint": [{
        "@type": "ContactPoint",
        "telephone": "+1-401-555-1212",
        "contactType": "customer service"
    }]
}
</script>

Weitere Informationen sind auf der Webseite json-ld.org zu finden. Dort wird auch ein Tool zum Lernen und Ausprobieren von JSON-LD angeboten.