What is Schema.org Markup?

Schema Markup is a form of Markup data which enhances your webpage’s description in search result. The Schema Markup is being found at schema.org.

Importance of Schema.org Markup Codes in terms of SEO

Schema.org Markup does not only enhances your web presence but also it is very important for your wepage’s to rank higher in search engines.

It provides Search Engine Bots structured data of your webpage, also makes search engine to understand your webpage and web content easily which eventually results high rankings in serch engines.

Schema.org Markup Code for an Article

Here is the schema.org markup code for your Article, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org/", 
  "@type": "BreadcrumbList", 
  "itemListElement": [{
    "@type": "ListItem", 
    "position": 1, 
    "name": "",
    "item": ""  
  },{
    "@type": "ListItem", 
    "position": 2, 
    "name": "",
    "item": ""  
  },{
    "@type": "ListItem", 
    "position": 3, 
    "name": "",
    "item": ""  
  }]
}

 

Schema.org Markup Code for Breadcrumb

Here is the schema.org markup code for your breadcrumb, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{ "@context": "https://schema.org/", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "", "item": "" },{ "@type": "ListItem", "position": 2, "name": "", "item": "" },{ "@type": "ListItem", "position": 3, "name": "", "item": "" }] }

Schema.org Markup Code for an Event

Here is the schema.org markup code for your Event, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”

 


Schema.org Markup Code for FAQ Page

Here is the schema.org markup code for your FAQ Page, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”

 

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [{
    "@type": "Question",
    "name": "",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": ""
    }
  },{
    "@type": "Question",
    "name": "",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": ""
    }
  },{
    "@type": "Question",
    "name": "",
    "acceptedAnswer": {
      "@type": "Answer",
      "text": ""
    }
  }]
}

 

Schema.org Markup Code for How To Page

Here is the schema.org markup code for your How to page, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”

 

{
  "@context": "https://schema.org/", 
  "@type": "HowTo", 
  "name": "",
  "supply": [{
    "@type": "HowToSupply",
    "name": ""
  },{
    "@type": "HowToSupply",
    "name": ""
  }],
  "tool": [{
    "@type": "HowToTool",
    "name": ""
  },{
    "@type": "HowToTool",
    "name": ""
  }],
  "step": [{
    "@type": "HowToStep",
    "text": ""
  },{
    "@type": "HowToStep",
    "text": ""
  }]    
}

 

Schema.org Markup Code for Job Posting

Here is the schema.org markup code for your Job Posting, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”

 

{
  "@context": "https://schema.org/",
  "@type": "JobPosting",
  "title": "",
  "description": "",
  "hiringOrganization" : {
    "@type": "Organization",
    "name": "",
    "sameAs": "(Company Website)"
  },
  "industry": "",
  "employmentType": "",
  "workHours": "",
  "datePosted": "",
  "validThrough": "",
  "jobLocation": {
    "@type": "Place",
    "address": {
      "@type": "PostalAddress",
      "streetAddress": "",
      "addressLocality": "",
      "postalCode": "",
      "addressCountry": "IN"
    }
  },
  "baseSalary": {
    "@type": "MonetaryAmount",
    "currency": "INR",
    "value": {
      "@type": "QuantitativeValue",
      "minValue": ,
      "maxValue": ,
      "unitText": ""
    }
  },
  "responsibilities": "",
  "skills": "asbdb",
  "qualifications": "",
  "educationRequirements": "",
  "experienceRequirements": ""
}

Schema.org Markup Code for a Local Business

Here is the schema.org markup code for your Local Business, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "",
  "image": "",
  "@id": "",
  "url": "",
  "telephone": "",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "",
    "addressLocality": "",
    "postalCode": "",
    "addressCountry": ""
  },
  "openingHoursSpecification": {
    "@type": "OpeningHoursSpecification",
    "dayOfWeek": ,
    "opens": "",
    "closes": ""
  }
}

Schema.org Markup Code for an Organization

Here is the schema.org markup code for your Organization, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "",
  "url": "",
  "logo": "",
  "contactPoint": {
    "@type": "ContactPoint",
    "telephone": "",
    "contactType": ""
  }
}

Schema.org Markup Code for a Person

Here is the schema.org markup code for your Person, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org/",
  "@type": "Person",
  "name": "",
  "url": "",
  "image": ""  
}

Schema.org Markup Code for a Product

Here is the schema.org markup code for your Product, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org/", 
  "@type": "Product", 
  "name": "",
  "image": "",
  "review": {
    "@type": "Review",
    "reviewBody": "",
    "author": {"@type": "Person", "name": ""}
  }
}

Schema.org Markup Code for a Recipe

Here is the schema.org markup code for your Recipe, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org/", 
  "@type": "Recipe", 
  "name": "",
  "image": [
    "",
    ""
  ],
  "description": "",
  "keywords": "",
  "author": {
    "@type": "Person",
    "name": ""
  },
  "prepTime": "",
  "cookTime": "", 
  "totalTime": "", 
  "nutrition": {
    "@type": "NutritionInformation",
    "calories": ""
  },
  "recipeIngredient": "",
  "recipeInstructions": {
    "@type": "HowToStep",
    "text": ""
  },
  "review": {
    "@type": "Review",
    "reviewBody": "",
    "author": {"@type": "Person", "name": ""}
  }  
}

Schema.org Markup Code for a Video

Here is the schema.org markup code for your Video, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "",
  "description": "",
  "thumbnailUrl": [
    "",
    ""
  ],
  "uploadDate": ""
}

Schema.org Markup Code for a Website

Here is the schema.org markup code for your Website, you can simply code the code and paste into your Head part of HTML page. Don’t forget to put the below code under script type=”application/ld+json”


{
  "@context": "https://schema.org/",
  "@type": "WebSite",
  "name": "",
  "url": "",
  "potentialAction": {
    "@type": "SearchAction",
    "target": "{search_term_string}",
    "query-input": "required name=search_term_string"
  }
}
Share