MedicalTestPanel
MedicalTestPanel is a MedicalTest subtype representing a bundle of tests ordered as one. Property: subTest (MedicalTest — the individual tests in the panel).
Full example of schema.org/MedicalTestPanel 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": "MedicalTestPanel",
"name": "Basic Metabolic Panel (BMP)",
"subTest": [
{ "@type": "BloodTest", "name": "Sodium" },
{ "@type": "BloodTest", "name": "Potassium" },
{ "@type": "BloodTest", "name": "Chloride" },
{ "@type": "BloodTest", "name": "Bicarbonate" },
{ "@type": "BloodTest", "name": "Blood urea nitrogen" },
{ "@type": "BloodTest", "name": "Creatinine" },
{ "@type": "BloodTest", "name": "Glucose" },
{ "@type": "BloodTest", "name": "Calcium" }
]
}
</script>Minimal valid version
The smallest markup that still produces a valid MedicalTestPanel 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": "MedicalTestPanel",
"name": "Lipid panel"
}
</script>Google rich results this unlocks
MedicalTestPanel is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). MedicalTestPanel becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common MedicalTestPanel 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
Panel without subTest
WrongMedicalTestPanel with only a nameRightAlways enumerate subTest — the panel is defined by its membersA panel without its constituent tests is just a label; subTest carries the clinical content.
Schema properties in this example
Also mentioned in 1 other example
MedicalTestPanel also appears in MedicalTest. See the full MedicalTestPanel schema page for every reference.
About the example data
Basic metabolic panel on the Dunmore Archive's standard admission-workup protocol.
Comments
Loading comments...