medicalAudience
medicalAudience · Not mentioned by Google
Appears in
What is it?
The intended reader of a medical web page. medicalAudience specifies whether the health content is written for patients (consumers) or clinicians (healthcare professionals). This distinction helps search engines serve the right content to the right people: a patient searching for "high blood pressure treatment" should get consumer-friendly explanations, not a clinician's pharmacology reference.
Why this matters for AEO
AI answer engines increasingly differentiate health answers by audience. When a patient asks "what is a beta blocker?", the AI should pull from patient-facing content. When a cardiologist asks the same question, the AI can draw from clinician-targeted pages. medicalAudience is the signal that tells the AI which version to surface, reducing the risk of showing technical jargon to consumers or oversimplified answers to professionals.
What the specs say
Schema.org: MedicalAudience or MedicalAudienceType. Medical audience for page. schema.org/medicalAudience
Google: Not mentioned. No dedicated Google structured data page exists for MedicalWebPage.
How to find your value
- Patient — Consumer-facing health pages
- Clinician — Professional medical references
- MedicalResearcher — Research-focused content
Format and code
Use a URL reference to the schema.org enumeration value, or a nested MedicalAudience object.
URL reference (simpler):
{
"@context": "https://schema.org",
"@type": "MedicalWebPage",
"name": "Understanding High Blood Pressure",
"audience": "https://schema.org/Patient",
"lastReviewed": "2024-09-15"
}
Nested object (more descriptive):
{
"@context": "https://schema.org",
"@type": "MedicalWebPage",
"name": "Alcohol Use Disorder Treatment Options",
"audience": {
"@type": "MedicalAudience",
"audienceType": "Patient",
"healthCondition": {
"@type": "MedicalCondition",
"name": "Alcohol Use Disorder"
}
}
}
Webflow implementation
Static pages
Add the audience in the JSON-LD block in Page Settings > Custom Code:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "MedicalWebPage",
"name": "Health Topic Title",
"audience": "https://schema.org/Patient",
"lastReviewed": "2024-09-15"
}
</script>
CMS template pages
Create a dropdown field with values like "Patient" and "Clinician" in your health content CMS collection. Map this to the audience property in the JSON-LD embed, constructing the URL as https://schema.org/{value}.
In Schema HQ
On this type, the audience property is set based on the page's configured medical audience type, using the correct schema.org enumeration values.
Real examples
Schema.org official MedicalWebPage example:
{
"@context": "https://schema.org",
"@type": "MedicalWebPage",
"about": {
"@type": "MedicalCondition",
"name": "High Blood Pressure"
},
"audience": "https://schema.org/Patient",
"lastReviewed": "2011-09-14",
"name": "beta-blocker",
"specialty": "https://schema.org/Cardiovascular"
}
MedicallyReviewed.com (nested object):
{
"@type": "MedicalWebPage",
"audience": {
"@type": "MedicalAudience",
"audienceType": "Patient",
"healthCondition": {
"@type": "MedicalCondition",
"name": "Alcohol Use Disorder"
}
}
}
Related fields
FAQ
Should I use medicalAudience or audience?
medicalAudience is specific to MedicalWebPage. The broader audience property (inherited from CreativeWork) works too and is more commonly used in practice. Both the schema.org official example and real-world implementations use audience rather than medicalAudience. Either is valid.
What values does MedicalAudienceType accept?
The schema.org enumeration includes Patient, Clinician, and MedicalResearcher. Patient is the most common for consumer health sites. Use Clinician for professional reference content like drug interaction databases or clinical practice guidelines.
Does Google use medicalAudience for health content filtering?
Google has not published specific documentation for MedicalWebPage structured data. However, Google's health content algorithms consider audience signals, and structured audience markup reinforces whether content targets patients or professionals, which aligns with Google's health content quality guidelines.