# Pet Lounge - Rich Snippets Data for Search Engines ## Business Hours Schema (for Google My Business integration) ```json { "@context": "https://schema.org", "@type": "VeterinaryCare", "name": "Pet Lounge", "alternateName": "Pet Lounge - Veterinário, Banhos e Tosquias", "address": { "@type": "PostalAddress", "streetAddress": "Av. Prof. Egas Moniz 6 A R/C Direito", "addressLocality": "Samora Correia", "addressRegion": "Santarém", "postalCode": "2135-232", "addressCountry": "PT" }, "telephone": "+351930400850", "email": "atendimento@petloungevet.com", "url": "https://petloungevet.com", "geo": { "@type": "GeoCoordinates", "latitude": 38.9345693, "longitude": -8.8727199 }, "openingHoursSpecification": [ { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "09:30", "closes": "13:00" }, { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "14:30", "closes": "18:30" }, { "@type": "OpeningHoursSpecification", "dayOfWeek": "Saturday", "opens": "09:00", "closes": "13:00" } ], "priceRange": "€€", "acceptsReservations": true, "foundingDate": "2014" } ``` ## Service Pricing Schema ```json { "@context": "https://schema.org", "@type": "Service", "provider": { "@type": "VeterinaryCare", "name": "Pet Lounge" }, "serviceType": "Veterinary and Pet Grooming Services", "areaServed": "Samora Correia, Portugal", "hasOfferCatalog": { "@type": "OfferCatalog", "name": "Pet Care Services", "itemListElement": [ { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Consulta Veterinária", "category": "Veterinary Consultation" }, "priceSpecification": { "@type": "PriceSpecification", "priceCurrency": "EUR", "price": "Contact for pricing" } }, { "@type": "Offer", "itemOffered": { "@type": "Service", "name": "Banhos e Tosquias", "category": "Pet Grooming" }, "priceSpecification": { "@type": "PriceSpecification", "priceCurrency": "EUR", "price": "Varies by pet size" } } ] } } ``` ## Review Schema (for future reviews) ```json { "@context": "https://schema.org", "@type": "VeterinaryCare", "name": "Pet Lounge", "aggregateRating": { "@type": "AggregateRating", "ratingValue": "5.0", "bestRating": "5", "worstRating": "1", "ratingCount": "1" } } ``` ## FAQ Schema for Common Questions ```json { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "Que serviços oferece a Pet Lounge?", "acceptedAnswer": { "@type": "Answer", "text": "A Pet Lounge oferece consultas veterinárias, vacinação, esterilização, banhos e tosquias profissionais, pet spa, e pet shop com produtos premium para cães e gatos." } }, { "@type": "Question", "name": "Onde está localizada a Pet Lounge?", "acceptedAnswer": { "@type": "Answer", "text": "A Pet Lounge está localizada na Av. Prof. Egas Moniz 6 A R/C Direito, 2135-232 Samora Correia, Santarém, servindo também Benavente e arredores." } }, { "@type": "Question", "name": "Que tipos de animais atendem?", "acceptedAnswer": { "@type": "Answer", "text": "Especializamo-nos em cães e gatos de todas as idades, desde cachorros e gatinhos até animais seniores, com cuidados veterinários completos." } }, { "@type": "Question", "name": "A Pet Lounge cumpre as normas de privacidade?", "acceptedAnswer": { "@type": "Answer", "text": "Sim, cumprimos rigorosamente o RGPD e temos políticas detalhadas de privacidade, cookies e segurança para proteger os dados dos nossos clientes." } }, { "@type": "Question", "name": "O website é acessível a pessoas com deficiência?", "acceptedAnswer": { "@type": "Answer", "text": "Sim, o nosso website cumpre as diretrizes WCAG 2.1 nível AA para garantir acessibilidade a todos os utilizadores, incluindo pessoas com necessidades especiais." } } ] } ``` These rich snippets help search engines display enhanced results with pricing, reviews, business hours, FAQ information, accessibility features, and legal compliance indicators for improved E-A-T scoring.