DrugStrength
DrugStrength is a MedicalIntangible for the strength in which a drug is available in a specific country. A single drug usually has several DrugStrength entries (5 mg, 10 mg, 20 mg tablets), each with its own regulatory approval.
Direct properties:
activeIngredient(Text): chemical / biologic active substance.strengthValue(Number): numeric strength.strengthUnit(Text): unit (mg,mg/ml,IU).maximumIntake(MaximumDoseSchedule): the recommended population-level intake ceiling.availableIn(AdministrativeArea): where the strength is marketed.
Full example of schema.org/DrugStrength 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": "DrugStrength",
"name": "XooStat-12 10 mg",
"activeIngredient": "Xoostatibe",
"strengthValue": 10,
"strengthUnit": "mg",
"maximumIntake": { "@type": "MaximumDoseSchedule", "doseValue": 40, "doseUnit": "mg", "frequency": "once daily", "targetPopulation": "Adults; reduce to 20 mg in severe renal impairment" },
"availableIn": { "@type": "Country", "name": "United States", "identifier": "US" }
}
</script>Minimal valid version
The smallest markup that still produces a valid DrugStrength 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": "DrugStrength",
"activeIngredient": "Xoostatibe",
"strengthValue": 10,
"strengthUnit": "mg"
}
</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 (drug-knowledge graphs)
Common DrugStrength 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
Strength concatenated in name only
WrongDrug.name = "XooStat-12 10 mg" with no DrugStrengthRightSeparate DrugStrength entity with strengthValue + strengthUnitPrescribing systems parse strengthValue and strengthUnit; embedded-in-name strength is invisible to them.
Schema properties in this example
About the example data
The 10 mg presentation of XooStat-12 in the United States.
Comments
Loading comments...