Website Desktop performanance Schema (SEO)
Schema about website desktop performanance
To provide schema markup related to desktop performance of a website, you can use structured data to describe performance metrics, load times, and other relevant information specific to desktop devices. Here's an example of how you can use JSON-LD to add desktop performance-related schema markup to your website:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "My Website",
"description": "A high-performance website optimized for desktop",
"breadcrumb": {
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://example.com"
}
]
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://example.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
},
"performanceUpdate": {
"@type": "QuantitativeValue",
"name": "Desktop Load Time",
"value": "1.5",
"unitCode": "SEC"
},
"device": "Desktop"
}
</script>
In this example, we're using the JSON-LD format and the schema.org vocabulary. We define a WebPage entity and provide details related to desktop performance. Here's a breakdown of the schema markup:
The breadcrumb property represents the breadcrumb navigation for the website. It uses the BreadcrumbList type to define the list of breadcrumbs.
The potentialAction property describes the search action available on the website. It uses the SearchAction type to specify the target URL for search queries.
The performanceUpdate property represents the performance information specific to desktop devices. It uses the QuantitativeValue type to provide a name ("Desktop Load Time"), value ("1.5" seconds), and unit ("SEC") for the website load time on desktop.
The device property specifies the targeted device, indicating that the performance data provided is specifically for desktop devices.
You can modify and expand this example to include additional performance-related metrics or information specific to desktop devices. For instance, you may include metrics like First Contentful Paint (FCP), Time to Interactive (TTI), or specific recommendations for desktop optimization.
Remember to regularly update the performance metrics based on the actual measurements of your website's performance on desktop devices.
Online Source
Comments
Post a Comment
Thanks for your Comments.