1 - Add Your Text Here 💬

3 - Schema Results 👇 (Mentions)

2 - Select Schema Type, Wiki Links form here

How to Use SchemaZoo 💡

  1. Add the text or your article in the box
  2. Select the word or phrase to get details from Wikipedia about it (title, description, images and URL)
  3. Choose the schema type for the mention
  4. Choose the most relevant entity from the second dropdown list (Wikipedia entities)
  5. Copy the schema JSON code and use it on your website with the original schema that you have

SchemaZoo: Boost Your SEO with Powerful Structured Data Markup

Structured data has become an essential element of modern search engine optimization (SEO). SchemaZoo is a revolutionary tool designed to help you harness the power of structured data markup and improve your website's search visibility. Developed by Nadeem Haddadeen, this free-to-use tool generates schema.org JSON-LD code to enhance your site's SEO performance.

Why Structured Data Matters for SEO

Structured data is a standardized format that helps search engines understand the content on your website. By using schema.org markup, you provide valuable information about your webpages and their entities, making it easier for search engines like Google to index and display your content more effectively.

Search engines use this information to create rich snippets, which are enhanced search results that include additional details about your webpages. Rich snippets not only improve click-through rates (CTR) but also boost your website's visibility, giving you a competitive edge in search rankings.

Understanding Schema.org JSON-LD and Entities

Schema.org is a collaborative project created by major search engines to establish a standard vocabulary for structured data. JSON-LD (JavaScript Object Notation for Linked Data) is a lightweight data interchange format recommended by Google for implementing structured data on your website.

Entities are key components of structured data. They represent real-world objects, such as people, organizations, products, or events, and their relationships. By using SchemaZoo to generate JSON-LD code for entities, you provide search engines with valuable context about your content, helping them understand its relevance and importance. This understanding can significantly influence your search ranking.

Optimizing Your Website with SchemaZoo

SchemaZoo makes it incredibly easy to add structured data markup to your website. By leveraging this powerful tool, you can:

  • Generate customized JSON-LD code for your website's entities
  • Improve your website's search visibility and CTR
  • Stay ahead of your competitors by enhancing your search results
  • Optimize your website for search engines without any technical expertise

With SchemaZoo, you can simplify the process of implementing structured data and focus on creating quality content that resonates with your target audience.

Experience the Power of SchemaZoo for Free

Developed by Nadeem Haddadeen, SchemaZoo is a free-to-use tool that enables you to boost your SEO with powerful structured data markup. Start enhancing your website's search performance and outrank your competition today by harnessing the full potential of structured data with SchemaZoo.

How to Combine the Generated Schema with Your Original One?

To combine the Mentions JSON generated by SchemaZoo with the original schema added by WordPress, you need to add a new "mentions" field to the original schema and populate it with the objects generated by SchemaZoo. Finally, validate the combined schema to ensure it is still valid according to the schema.org standard.

Example

{
  "@context": "https://schema.org",
  "@type": "Article",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://example.com/article"
  },
  "headline": "Article headline",
  "image": "https://example.com/article.jpg",
  "author": {
    "@type": "Person",
    "name": "John Doe",
    "url": "https://example.com/author"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Example Publisher",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.jpg"
    }
  },
  "datePublished": "2023-04-22",
  "dateModified": "2023-04-22",
  
  // Add the mentions array below this line
  "mentions": [
    {
      "@type": "Thing",
      "name": "Lofi",
      "description": "A genre of music that incorporates elements of hip hop and jazz",
      "image": "https://example.com/lofi.jpg",
      "url": "https://en.wikipedia.org/wiki/Lofi"
    },
    {
      "@type": "Person",
      "name": "Jane Doe",
      "url": "https://example.com/janedoe"
    }
  ]
}