How AI Search Engines Read Schema in 2026
Modern AI search engines (Google AI Overviews, AI Mode, ChatGPT Search, Perplexity) use JSON-LD structured data as a verifiable fact layer that supplements natural language. A 2026 analysis of 1,885 pages found that schema markup helps AI systems extract accurate claims, especially when combined with entity-based strategies (e.g., sameAs links to Wikidata). As of March 2026, Schema.org includes 823 types and 1,529 properties, with recent additions such as ConferenceEvent and the displayLocation property.
What Is Medical Schema?
The MedicalEntity hierarchy (MedicalCondition, Drug, Physician, MedicalStudy, etc.) is an extension of Schema.org designed specifically for health content. Google differentiates informational medical pages from service pages using these types. In 2026, AI health engines require verifiable credential markers to cite medical content.
JSON-LD Example — MedicalCondition
Below is a fully annotated MedicalCondition schema example covering ICD-11 codes, treatment links, and authority signals:
{
"@context": "https://schema.org",
"@type": "MedicalCondition",
"@id": "https://www.healthsite.org/conditions/type2-diabetes#condition",
"name": "Type 2 Diabetes Mellitus",
"alternateName": "Adult-Onset Diabetes",
"description": "A chronic metabolic disorder characterized by high blood sugar and insulin resistance.",
"code": {
"@type": "MedicalCode",
"codeValue": "E11.9",
"codingSystem": "ICD-11"
},
"associatedAnatomy": {
"@type": "AnatomicalStructure",
"name": "Pancreas"
},
"possibleTreatment": [
{
"@type": "MedicalTherapy",
"name": "Metformin",
"drug": {"@type": "Drug", "name": "Metformin"}
}
],
"epidemiology": "Affects approximately 10.5% of the US adult population (CDC 2025)",
"naturalProgression": "May lead to complications including neuropathy, retinopathy, and cardiovascular disease",
"sameAs": [
"https://www.wikidata.org/wiki/Q302",
"https://www.who.int/news-room/fact-sheets/detail/diabetes"
]
}
AI Visibility Tips
- Always include
codewithMedicalCodeand a standard coding system (ICD-11, SNOMED CT). AI health crawlers check for these. - Reference peer-reviewed sources in
descriptionorepidemiology(e.g., "CDC 2025"). The LLM will note the citation. - Use
sameAsto link to Wikidata or WHO fact sheets — this dramatically increases entity authority for health topics. - Mark up author credentials — for Physician pages, include
medicalSpecialty,boardCertification, andhasCredential.
Common Mistakes
YMYL health content has the highest stakes for schema accuracy. Avoid these critical errors:
- Using medical schema without proper author credentials on the page — AI may deprioritise due to low YMYL trust.
- Over-generalising — avoid MedicalEntity as the primary type; always use the most specific subtype.
- Omitting side effects for drugs — for Drug, include
adverseOutcomeorpossibleComplication.
Frequently Asked Questions
Is MedicalEntity part of core schema.org?
It is defined in the health extension, but extension terms can be used in standard schema.org markup without special declaration.
Can I use medical schema for herbal supplements?
Yes, use Drug or DietarySupplement but include appropriate warnings and references.
Does Google AI Overview cite medical schema more often?
In YMYL topics, AI systems are biased toward pages with complete medical schema and authoritative backlinks. A February 2026 report noted that Google has added AI bot labels to forum and Q&A structured data to distinguish human from AI-generated content in health spaces.