Schema Markup For Products – Easy to Implement

Here you can have Product schema markup in JASON, you can use this schema markup for any product.

Where You can use this :Mobile, Air conditioner, LED, and many more electronic devices.

Where to put code: You can put this code in header file of your website.

Weight height and width these elements you can remove or add as per your requirements.

[ads]

<script type=”application/ld+json”> {
“@context”: “http://schema.org/”,
“@type”: “Product”,
“name”: “Name of Your Procuct”,
“description”: “Description of your product”,
“image”: “https://abc.com/phones/apple-iphone8-jpeg“,
“aggregateRating”: {
“@type”: “AggregateRating”,
“bestRating”: “5”,
“ratingCount”: “24”,
“ratingValue”: “4.5”
},
“offers”: {
“@type”: “Offer”,
“price”: 15000.00,
“priceCurrency”: “USD”,
“availability”: “InStock”
},
“Weight”: {
“@context”: “https://schema.org”,
“@type”: “QuantitativeValue”,
“value”: “2”,
“unitCode”: “Ton”
},
“height”: {
“@context”: “https://schema.org”,
“@type”: “QuantitativeValue”,
“value”: “340”,
“unitCode”: “mm”
},
“Width”: {
“@context”: “https://schema.org“,
“@type”: “QuantitativeValue”,
“value”: “25.4”,
“unitCode”: “mm”
},
“model”: [ {
“@type”: “ProductModel”,
“name”: “R410 Split Type”,
“Material”: “Inner Grooved Copper”
}
]
}
</script>