Writing JSON-LD Code is not easy for all who do not have any prior coding knowledge or at least a basic understanding of programming. You need to learn JSON-LD coding to write a Schema Markup JSON-LD Code from scratch.

But today in this post we are going to guide you, on how you can write a JSON-LD Code from Scratch even if you are not from a tech background. This guide will show you how you can write a JSON-LD code step-by-step from opening to closing <script></script>.

We will write a complete JSON-LD code from scratch for a typical homepage of any website. Whether a blog website, a business, or an e-commerce website.

Let’s get dive into it.

What Do You Need Before Start Writing A JSON-LD Code?

  • A laptop or a desktop computer of course
  • Any advanced code editor ( Visual Studio Code, Sublime Text, Notepad++. I will use Notepad++)
  • Your dedication 🙂

What Is JSON-LD Code?

JSON-LD is a coding language used to describe entities. This coding language has its own syntax as all languages have their own syntax.

Create JSON-LD Code Using Our Schema Generator Tool

How To Write JSON-LD for Any Homepage?

We will break down each line of code so it will be easy for you to understand what we are doing actually.

Step 1: Start With A Pair of Curly Braces

The first thing you need to write is a pair of curly braces or brackets like this.

You can see a lot of curly braces until we complete writing the JSON-LD code. So don’t think too much about that and follow along.

You actually start writing your first JSON-LD Code and you are down with the first step.

Congratulation 🙂

Step 2: @context & Adding a Comma

You will see the word “Context” with @ Sign at the top of every schema markup. This is an essential part of schema code that will actually give the signals to search engines that the webpage has structured data. These words are standard words from schema.org.

Here is how you can write the Context in code. Make sure you are again opening a pair of curly braces and the code will go inside those curly brackets.

In this line of code, you can add a few more things.

  • The “Double Quotations: mark
  • The Colon Mark ” : “
  • A Comma ” , “. You need to add a Comma at the end of each line. It is a standard.

At this stage, the search engine bots will recognize that you have added structured data on the page.

Step 3: Define The Type @type”:”WebPage

Step 4: Define The URL of The Homepage

Do not forget to add the COMMA at the end of each line you add.

Step 4: Assign A Node Identifier

You will have to add @id and you can just copy and paste the above homepage URL. The rest of the code will be the same as the URL.

Step 4: Add the Hompage Title With The “name” item property

Here you might be thinking about why I added the name & added the homepage title. Search Engine fetch the title of the page from the HTML of that page. Here I want you to check Daniel K Cheung’s article. This article is also inspired by his article.

Step 5: Add Hompage Description in “description” (optional)

You can skip this part if you want. It will not affect the rankings directly or indirectly. But I recommend you to add. So it will make the JSON-LD code complete and you can also get a better understanding. Because you are learning how to write JSON-LD code.

Step 5: Connect Homepage Entities “isPartOf”

You will add line number 9 starting with “isPartOf”: and again you will open another curly bracket. Note that from here there will be two curly braces you will have.

Step 6: Add A URL and Description of The Website you Just Added

Notice one thing we are still adding the COMMMA ” , ” at the end of every single line.

Step 7: Add Publisher Item Properties That Will Connect The Publisher To The Organization

Here you need to add:

  • “publisher”:{
  • “@type”:”Organization”,
  • “name”:”Balti Bloggers®”,

In Publisher Item Properties we opened another curly bracket that will also continue to the end.

You need to add social profiles also here. To do that we will open a Square Brackets.

Here we completed writing the JSON-LD Schema code from scratch to the end. You can validate this with the Google Rich Results Testing Tool to check if there is any error.

Conclusion

Above we have learned and also created a JSON-LD code from scratch for a typical homepage of any website. A beginner can easily follow all the above steps to make a schema markup code.

Sharing Is Caring!

Similar Posts