Organization Schema Generator

Home > Tools > Generators > Schema > Organization Schema Generator

Form for generate JSON-LD Schema Markup

Optional

Add Address
Generate Schema

Result of JSON-LD markup generation

Copied
FAQs

What is JSON-LD Organization Schema?

JSON-LD is a format to encode linked data using JSON. The Organization schema type provides information about a specific organization, such as its name, address, and contact info. This markup can improve a website’s visibility and credibility in search results.

What is an online Organization JSON-LD Schema Generator tool?

An Organization JSON-LD Generator is an online free tool that helps website owners and developers to create and generate JSON-LD markup for an organization. The generator typically requires input such as the organization’s name, address, and contact information, and then outputs the JSON-LD code that can add to the website’s HTML. This free online tool makes it easier and faster for website owners to implement the JSON-LD Organization schema, improving the visibility and credibility of the website in search engine results.

How to use Generate JSON-LD Organization Schema?

Our online organization schema tool allows you to easily generate the required structured data. Fill in the necessary options and click the “Generate Schema” button. You will then receive JSON-LD markup, which you should copy into the head of your website. Test the code using the Structured Data Testing Tool, and if there are any mistakes, return to the Organization JSON-LD Markup Generator and generate the code again.

Where to Paste JSON-LD Markup of Organization Schema?

The data, enclosed in the <script type=”application/ld+json”> … </script> tags, can be placed in either the <head> or <body> sections of the page. Google can also read JSON-LD data embedded dynamically in page content using JavaScript code. Therefore, the JSON-LD for Organization can place anywhere in your code.

How to Validate JSON-LD Markup of Organization Schema?

Google’s Rich Results Test is a free tool provided by Google that allows you to check if your JSON-LD markup is correct and eligible for rich results in search engines. You can paste your JSON-LD code into the tool and it will check for any errors or warnings.

Do Organization Snippets Work on Mobile or Desktop?

Yes, Organization Snippets can work on both mobile and desktop devices. However, the way they display may differ depending on the screen size and resolution, as well as the device’s operating system and web browser. It is important for website developers to ensure that their snippets are responsive and displayed correctly on different devices.

Here you can see more related free JSON-LD Schema Tools.

Examples of Organization JSON-LD markup

<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "Organization",
    "name": "onlinetools4free",
    "url": "https://onlinetools4free.com/",
    "logo": "https://onlinetools4free.com/images/logo.png",
    "alternateName": "online tools",
    "foundingDate": "2017",
    "sameAs": [
        "https://www.linkedin.com/onlinetools4free",
        "https://youtube.com/onlinetools4free"
    ]
}
</script>
<script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "Organization",
    "name": "onlinetools4free",
    "url": "https://onlinetools4free.com/",
    "logo": "https://onlinetools4free.com/images/logo.png",
    "alternateName": "free tools",
    "legalName": "onlinetools4free",
    "foundingDate": "2023",
    "founders": [
        {
            "@type": "Person",
            "name": "first founder"
        },
        {
            "@type": "Person",
            "name": "second founder"
        }
    ],
    "address": {
        "@type": "PostalAddress",
        "streetAddress": "123 example street",
        "addressLocality": "London",
        "addressRegion": "LD",
        "postalCode": "44233",
        "addressCountry": "UK"
    },
    "sameAs": [
        "https://www.linkedin.com/onlinetools4free",
        "https://youtube.com/onlinetools4free"
    ],
    "potentialAction": {
        "@type": "SearchAction",
        "target": "https://onlinetools4free.com/search?q={search_term}",
        "query-input": "required name=search_term"
    }
}
</script>