Hi @clcastr2,
Google recommends to use the JSON-LD method of adding schema, and that is super easy in Webflow
Here is a sample json-ld snippet with a local business schema markup for ratings and reviews:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Dentist",
"name": "Family Dentistry",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4",
"reviewCount": "2"
},
"review": [
{
"@type": "Review",
"author": "Ellie",
"datePublished": "2011-04-01",
"description": "I'm not entirely upset with this office, but the staff at the front desk could have been nicer in letting me know they have nothing available for the next 2 months.",
"name": "Good services, poor communication",
"reviewRating": {
"@type": "Rating",
"bestRating": "5",
"ratingValue": "3",
"worstRating": "1"
}
},
{
"@type": "Review",
"author": "Lucas",
"datePublished": "2011-03-25",
"description": "I was finally able to get my old crown replaced with a new, porcelain one at a cost that doesn't break the bank.",
"name": "Affordable Crowns",
"reviewRating": {
"@type": "Rating",
"bestRating": "5",
"ratingValue": "5",
"worstRating": "1"
}
}
]
}
</script>
The schema markup can be tested through the google structured data testing tool: Инструмент проверки разметки schema.org | Центр Google Поиска | Google Developers
Here is a really good guide and an intro: The JSON-LD Markup Guide To Local Business Schema - Whitespark
The entire schema from schema.org can be input in json-ld format. More information: JSON-LD Implementation Guide for Structured Data Markup - Portent
The json-ld is also great, because you do not have to add schema data to individual page elements.
I hope this helps !