Organization JSON-LD ✅

Renders a JSON-LD schema, server-side for ideal SEO.

Here's an example JSON-LD schema;

    <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>
Sygnal JSON-LD
// 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>

Demonstration

Use these to examine the JSON-LD;

Future

Technical Notes

Last updated