{
  "name": "Restaurant",
  "description": "Schema templates for restaurants, cafes, and food service businesses. Includes Restaurant, Menu, and FAQPage schemas.",
  "industry": "restaurant",
  "recommended_schemas": ["Restaurant", "FAQPage"],
  "default_settings": {
    "auto_generate_post_types": ["page"],
    "enable_local_business": true,
    "business_subtype": "Restaurant"
  },
  "schema_templates": {
    "Restaurant": {
      "@context": "https://schema.org",
      "@type": "Restaurant",
      "name": "",
      "image": "",
      "description": "",
      "address": { "@type": "PostalAddress", "streetAddress": "", "addressLocality": "", "addressRegion": "", "postalCode": "", "addressCountry": "" },
      "geo": { "@type": "GeoCoordinates", "latitude": "", "longitude": "" },
      "telephone": "",
      "url": "",
      "servesCuisine": "",
      "menu": "",
      "acceptsReservations": true,
      "priceRange": "",
      "openingHoursSpecification": [
        { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "11:00", "closes": "22:00" },
        { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Saturday", "Sunday"], "opens": "10:00", "closes": "23:00" }
      ],
      "aggregateRating": { "@type": "AggregateRating", "ratingValue": "", "reviewCount": "" }
    },
    "FAQPage": {
      "@context": "https://schema.org",
      "@type": "FAQPage",
      "mainEntity": [
        { "@type": "Question", "name": "Do you take reservations?", "acceptedAnswer": { "@type": "Answer", "text": "" } },
        { "@type": "Question", "name": "What are your hours?", "acceptedAnswer": { "@type": "Answer", "text": "" } }
      ]
    }
  }
}
