> For the complete documentation index, see [llms.txt](https://sygnal.gitbook.io/sygnal-webflow-components/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sygnal.gitbook.io/sygnal-webflow-components/cc/sygnal-seo/organization-json-ld.md).

# Organization JSON-LD ✅

Renders a JSON-LD schema, server-side for ideal SEO.&#x20;

Here's an example JSON-LD schema;&#x20;

```html
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "Organization",
      "url": "https://www.example.com",
      "sameAs": ["https://example.net/profile/example1234", "https://example.org/example1234"],
      "logo": "https://www.example.com/images/logo.png",
      "name": "Example Corporation",
      "description": "The example corporation is well-known for producing high-quality widgets",
      "email": "contact@example.com",
      "telephone": "+47-99-999-9999",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "Rue Improbable 99",
        "addressLocality": "Paris",
        "addressCountry": "FR",
        "addressRegion": "Ile-de-France",
        "postalCode": "75001"
      },
      "vatID": "FR12345678901",
      "iso6523Code": "0199:724500PMK2A2M1SQQ228"
    }
    </script>
```

<details>

<summary>Sygnal JSON-LD </summary>

```html
// Some code
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Sygnal Technology Group",
  "alternateName": [
    "Sygnal",
    "Sygnal Technology"
  ],
  "url": "https://www.sygnal.com",
  "contactPoint": {
    "@type": "ContactPoint",
    "email": "support@sygnal.com",
    "contactType": "Customer service"
  },
  "sameAs": [
    "https://www.facebook.com/sygnaltech",
    "https://www.linkedin.com/company/sygnal-technology",
    "https://twitter.com/sygnalnz",
    "https://maps.app.goo.gl/8YfrDoiXQ7P9Qdhn9"
  ]
}
</script>
```

</details>

## Demonstration

{% embed url="<https://webflow-core-component-test.webflow.io/json-ld>" %}

Use these to examine the JSON-LD;&#x20;

{% embed url="<https://search.google.com/test/rich-results/result?id=J8mkLGmNmVgCKkx3UBNcAQ>" %}

{% embed url="<https://validator.schema.org/#url=https%3A%2F%2Fwebflow-core-component-test.webflow.io%2Fjson-ld>" %}

## Future

* Better UX for entering the sameAs social links.  CSV is not ideal. \
  Revisit when embed or multiline plaintext is available.&#x20;
* OnlineStore with membership \
  <https://developers.google.com/search/docs/appearance/structured-data/organization#example-loyalty-program>
*

## Technical Notes

* Component type: **Standard**&#x20;

{% embed url="<https://developers.google.com/search/docs/appearance/structured-data/organization>" %}
