{
  "name": "Medical / Healthcare",
  "description": "Schema templates for medical practices, doctors, dentists, and healthcare providers. Includes MedicalBusiness, Physician, and FAQPage schemas.",
  "industry": "medical",
  "recommended_schemas": ["MedicalBusiness", "Physician", "FAQPage"],
  "default_settings": {
    "auto_generate_post_types": ["page", "post"],
    "enable_local_business": true,
    "business_subtype": "MedicalBusiness"
  },
  "schema_templates": {
    "MedicalBusiness": {
      "@context": "https://schema.org",
      "@type": "MedicalBusiness",
      "name": "",
      "image": "",
      "description": "",
      "medicalSpecialty": "",
      "address": { "@type": "PostalAddress", "streetAddress": "", "addressLocality": "", "addressRegion": "", "postalCode": "", "addressCountry": "" },
      "geo": { "@type": "GeoCoordinates", "latitude": "", "longitude": "" },
      "telephone": "",
      "url": "",
      "openingHoursSpecification": [
        { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "08:00", "closes": "17:00" }
      ],
      "aggregateRating": { "@type": "AggregateRating", "ratingValue": "", "reviewCount": "" }
    },
    "Physician": {
      "@context": "https://schema.org",
      "@type": "Physician",
      "name": "",
      "image": "",
      "medicalSpecialty": "",
      "address": { "@type": "PostalAddress", "streetAddress": "", "addressLocality": "", "addressRegion": "", "postalCode": "", "addressCountry": "" },
      "telephone": "",
      "url": "",
      "availableService": { "@type": "MedicalProcedure", "name": "" }
    },
    "FAQPage": {
      "@context": "https://schema.org",
      "@type": "FAQPage",
      "mainEntity": [
        { "@type": "Question", "name": "Do you accept insurance?", "acceptedAnswer": { "@type": "Answer", "text": "" } },
        { "@type": "Question", "name": "How do I schedule an appointment?", "acceptedAnswer": { "@type": "Answer", "text": "" } }
      ]
    }
  }
}
