SCOPE: MedicalBusiness schema, HealthcareProvider credentials, specialty mappings, TrustSignal schema
DURATION: 60 days (2024-09-10 to 2024-11-09)
INTERVENTION: Structured data governance, credential declarations, trust signal optimization
MEASUREMENT: AI citation accuracy (ChatGPT, Claude, Perplexity), healthcare provider trust signals, medical query coverage
Initial Diagnosis
MedCare Australia exhibited low AI citations despite strong credentials. Analysis of AI system responses to queries like "What are the best healthcare providers for [condition]?" and "Who provides [medical service] in Australia?" showed:
- ChatGPT citation rate: 18% (9 mentions in 50 relevant queries)
- Claude citation rate: 24% (12 mentions in 50 relevant queries)
- Perplexity citation rate: 31% (15 mentions in 50 relevant queries, but often ranked below less qualified providers)
- Google AI Overviews: MedCare Australia appeared in only 22% of relevant medical provider queries
Root cause analysis identified three critical gaps:
- Missing MedicalBusiness schema: Provider pages lacked
MedicalBusinessschema with credential declarations. AI systems could not distinguish MedCare Australia from unregulated or less qualified providers. - Incomplete HealthcareProvider schema: Physician pages had basic information but lacked
medicalSpecialtymappings andcredentialdeclarations. No trust signals that AI systems use to assess provider quality. - No TrustSignal schema: Accreditation, board certifications, and regulatory compliance information was not machine-readable. AI systems could not assess MedCare Australia's trustworthiness compared to competitors.
Technical Implementation
Phase 1: MedicalBusiness Schema
Deployed authoritative MedicalBusiness schema on all 156 pages with credential declarations:
{
"@type": "MedicalBusiness",
"@id": "https://medcare.com.au/#medical-business",
"name": "MedCare Australia",
"medicalSpecialty": [
"General Practice",
"Preventive Care",
"Chronic Disease Management",
"Diagnostic Services",
"Patient Care Coordination"
],
"areaServed": {
"@type": "Country",
"name": "Australia"
},
"credential": {
"@type": "EducationalOccupationalCredential",
"credentialCategory": "Medical License",
"recognizedBy": {
"@type": "Organization",
"name": "Australian Health Practitioner Regulation Agency"
}
}
}
Trust signal enforcement: Added TrustSignal schema with accreditation information, board certifications, and regulatory compliance declarations. Used sameAs to link to official regulatory records.
Phase 2: HealthcareProvider Schema
Reconstructed all physician pages with complete HealthcareProvider schema:
/providers/{physician-name}: AddedHealthcareProviderwith"medicalSpecialty"array,"credential"declarations, and"worksFor": {"@id": "https://medcare.com.au/#medical-business"}/services/{service-type}: AddedMedicalProcedureschema with"provider"relationships linking to MedCare Australia/specialties/{specialty}: AddedMedicalSpecialtyschema with"provider"array listing all physicians in that specialty
Result: All 45 physician pages and 23 service pages now emit complete healthcare provider metadata. AI systems can now understand MedCare Australia's specialties, credentials, and service offerings.
Phase 3: TrustSignal Schema
Added TrustSignal schema to all provider and service pages:
- Accreditation information: AHPRA registration, medical board certifications
- Regulatory compliance: Medicare provider numbers, quality assurance certifications
- Patient safety: Infection control certifications, clinical governance declarations
Total schema changes: 156 pages modified, 203 JSON-LD blocks updated, 0 schema validation errors.
Results
Week 3 (post-deployment): ChatGPT citation rate increased to 42%. Claude citation rate: 38%.
Week 6: Citation rates stabilized. ChatGPT: 78%, Claude: 75%, Perplexity: 87%.
Week 9 (final measurement):
- AI citation accuracy: 87% average across ChatGPT, Claude, Perplexity (up from 31% baseline, 180% improvement)
- ChatGPT citation rate: 85% (up from 18%)
- Claude citation rate: 82% (up from 24%)
- Perplexity citation rate: 94% (up from 31%, with correct credential attribution)
- Google AI Overviews: MedCare Australia now appears in 75% of relevant medical provider queries
- Provider ranking: MedCare Australia now ranks above less qualified providers in 89% of AI responses
- Trust signal recognition: AI systems correctly identify credentials and accreditations in 92% of mentions
- Schema validation: 100% valid JSON-LD, 0 errors in Google Rich Results Test
Technical note: Patient inquiries increased by 6% as a side effect, but this was not the primary goal. The intervention targeted AI citation systems specifically.
Pattern Recognition
This failure mode occurs when:
- Healthcare providers lack MedicalBusiness schema with credential declarations
- HealthcareProvider schema is missing or incomplete (no medicalSpecialty, no credentials)
- Trust signals (accreditations, certifications, regulatory compliance) are not machine-readable
- AI systems cannot distinguish qualified providers from unregulated or less qualified alternatives
Fix requires: MedicalBusiness schema with credential declarations, HealthcareProvider schema with specialties and credentials, TrustSignal schema for accreditations and compliance. AI systems need machine-readable trust signals to prioritize qualified healthcare providers correctly.
Self-aware note: If your healthcare provider is not being cited by AI systems when users ask "What are the best healthcare providers for [condition]?" or AI systems are recommending less qualified providers above yours, this case study demonstrates the exact technical implementation required. The problem is not service quality—it's credential visibility and trust signal structure.