Organization Schema Markup

Organization Schema Markup

Organization Schema is a type of structured data that provides search engines with information about a business. Organization schema markup can be added to a website’s HTML code to provide Google and other search engines with important information about the business and SEO. Included detail into a schema.

logo, address, contact information, and business identifiers.

Organization structured data can help Google present an organization’s data in the search results in an attractive way.

Here are some plugins that can add schema markup through JSON-LD: 

SchemaPro, Rank Math SEO, Yoast SEO

To manually add JSON-LD markup to a website:

  1. Copy the code and paste it into an HTML editor
  2. Add the details about the organization into each relevant field.

To add organization structure data markup to your website, you can:

  1. Add your schema markup code inside a script tag.
  2. Add the tag to either the head or body section of your HTML. 

Organization Schema Markup by Google:

Here is the Google Example:

<script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "Organization",
      "image": "https://www.example.com/example_image.jpg",
      "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": "[email protected]",
      "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>

Similar Posts