🔍 ENHANCED: Comprehensive Structured Data for Rich Snippets

This commit is contained in:
Peter
2025-06-07 17:13:28 +01:00
parent 1f86807961
commit ba1770e2c7
6 changed files with 812 additions and 13 deletions

View File

@@ -26,20 +26,150 @@ $keywords = "UK data services case studies, client success stories, data transfo
<!-- Styles -->
<link rel="stylesheet" href="../assets/css/main.css">
<!-- Structured Data -->
<!-- Enhanced Case Studies Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"name": "Case Studies",
"description": "UK Data Services client success stories and case studies",
"@id": "https://ukdataservices.co.uk/case-studies/#webpage",
"name": "UK Data Services Case Studies",
"description": "Real client success stories showcasing measurable ROI and business transformation through professional data solutions",
"publisher": {
"@type": "Organization",
"name": "UK Data Services",
"url": "https://ukdataservices.co.uk"
"@id": "https://ukdataservices.co.uk#organization"
},
"mainEntity": {
"@type": "ItemList",
"name": "Success Stories",
"numberOfItems": 4,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "CaseStudy",
"name": "£500K Revenue Increase Through Competitive Price Intelligence",
"description": "E-commerce retailer achieves 25% margin improvement through automated price monitoring",
"about": {
"@type": "Service",
"name": "Price Monitoring"
},
"result": [
{
"@type": "QuantitativeValue",
"name": "Revenue Increase",
"value": "500000",
"unitText": "GBP"
},
{
"@type": "QuantitativeValue",
"name": "Margin Improvement",
"value": "25",
"unitText": "PERCENT"
}
]
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "CaseStudy",
"name": "Zero-Downtime Migration of 50M Customer Records",
"description": "Major UK bank migrates 50 million records with 99.99% accuracy",
"about": {
"@type": "Service",
"name": "Data Migration"
},
"result": [
{
"@type": "QuantitativeValue",
"name": "Records Migrated",
"value": "50000000",
"unitText": "RECORDS"
},
{
"@type": "QuantitativeValue",
"name": "Data Accuracy",
"value": "99.99",
"unitText": "PERCENT"
}
]
}
}
]
}
}
</script>
<!-- Customer Reviews Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://ukdataservices.co.uk/case-studies/#review-1",
"itemReviewed": {
"@type": "Service",
"name": "UK Data Services Web Scraping",
"provider": {
"@id": "https://ukdataservices.co.uk#organization"
}
},
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "5",
"worstRating": "1"
},
"author": {
"@type": "Person",
"name": "Sarah Thompson",
"jobTitle": "Commercial Director",
"worksFor": {
"@type": "Organization",
"name": "TechElectronics UK"
}
},
"reviewBody": "UK Data Services transformed our pricing strategy completely. We now have real-time visibility into competitor pricing and can react instantly to market changes. The ROI was evident within the first month.",
"datePublished": "2024-03-15"
}
</script>
<!-- Business Success Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "UK Data Services Client Success Metrics",
"description": "Aggregate performance data showing client success across industries",
"creator": {
"@id": "https://ukdataservices.co.uk#organization"
},
"distribution": [
{
"@type": "DataDownload",
"name": "Client Value Created",
"description": "£2.5M+ in measurable business value generated for clients"
},
{
"@type": "DataDownload",
"name": "Average ROI",
"description": "300% average return on investment across all projects"
},
{
"@type": "DataDownload",
"name": "Project Success Rate",
"description": "99.8% project success rate with on-time delivery"
}
],
"measurementTechnique": "Client-reported metrics and third-party validation",
"variableMeasured": [
"Revenue Growth",
"Cost Savings",
"Efficiency Improvements",
"Market Share Gains"
]
}
</script>
</head>
<body>
<!-- Navigation -->