MedicalRiskEstimator
MedicalRiskEstimator is a direct MedicalEntity subtype for a rule set or interactive tool that estimates disease risk: Framingham Risk Score, ASCVD Risk Calculator, FRAX osteoporosis calculator, CHA₂DS₂-VASc stroke-risk score.
Direct properties:
estimatesRiskOf(MedicalEntity): the condition whose risk is estimated.includedRiskFactor(MedicalRiskFactor): risk factors used by the estimator, array-valued.
Its subtype MedicalRiskScore adds algorithm for explicit formula disclosure.
Full example of schema.org/MedicalRiskEstimator json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "MedicalRiskEstimator",
"name": "ASCVD 10-Year Risk Estimator",
"description": "Estimates 10-year atherosclerotic cardiovascular disease (ASCVD) risk in adults 40-75 years old without prior cardiovascular disease, per the 2013 ACC/AHA Pooled Cohort Equations.",
"estimatesRiskOf": { "@type": "MedicalCondition", "name": "Atherosclerotic cardiovascular disease" },
"includedRiskFactor": [
{ "@type": "MedicalRiskFactor", "name": "Age" },
{ "@type": "MedicalRiskFactor", "name": "Sex at birth" },
{ "@type": "MedicalRiskFactor", "name": "Race (Black vs non-Black)" },
{ "@type": "MedicalRiskFactor", "name": "Total cholesterol" },
{ "@type": "MedicalRiskFactor", "name": "HDL cholesterol" },
{ "@type": "MedicalRiskFactor", "name": "Systolic blood pressure" },
{ "@type": "MedicalRiskFactor", "name": "Hypertension treatment status" },
{ "@type": "MedicalRiskFactor", "name": "Diabetes status" },
{ "@type": "MedicalRiskFactor", "name": "Current smoking status" }
],
"relevantSpecialty": ["https://schema.org/Cardiovascular", "https://schema.org/PrimaryCare"]
}
</script>Minimal valid version
The smallest markup that still produces a valid MedicalRiskEstimator entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "MedicalRiskEstimator",
"name": "ASCVD 10-Year Risk Estimator",
"estimatesRiskOf": { "@type": "MedicalCondition", "name": "Atherosclerotic cardiovascular disease" }
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsNo dedicated rich result (clinical-calculator graphs)
Common MedicalRiskEstimator mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Missing includedRiskFactor
WrongRisk estimator with no risk-factor listRightAlways enumerate the risk factors the estimator usesClinical transparency: calculators without their input variables are black boxes.
Schema properties in this example
About the example data
The ASCVD 10-Year Risk Estimator presented on Dunmore Family Clinic's cardiology pages.
Comments
Loading comments...