$this->output_schema_json($schema); } /** * Schema Service - Dịch vụ chuyên ngành inox */ private function output_service_schema() { $services = array( array( '@type' => 'Service', 'name' => 'Tư vấn thiết kế thiết bị inox', 'description' => 'Tư vấn miễn phí thiết kế thiết bị inox theo yêu cầu khách hàng, từ bếp công nghiệp đến dây chuyền sản xuất', 'provider' => array( '@type' => 'Organization', 'name' => $this->company_info['name'], 'url' => $this->company_info['url'] ), 'areaServed' => 'Vietnam', 'serviceType' => 'Consultation', 'offers' => array( '@type' => 'Offer', 'price' => '0', 'priceCurrency' => 'VND', 'description' => 'Tư vấn miễn phí' ) ), array( '@type' => 'Service', 'name' => 'Gia công thiết bị inox theo yêu cầu', 'description' => 'Gia công sản xuất thiết bị inox theo bản vẽ và yêu cầu kỹ thuật của khách hàng', 'provider' => array( '@type' => 'Organization', 'name' => $this->company_info['name'], 'url' => $this->company_info['url'] ), 'areaServed' => 'Vietnam', 'serviceType' => 'Manufacturing', 'additionalProperty' => array( array( '@type' => 'PropertyValue', 'name' => 'Thời gian gia công', 'value' => '7-15 ngày' ), array( '@type' => 'PropertyValue', 'name' => 'Chất liệu', 'value' => 'Inox 304, 316, 201' ) ) ), array( '@type' => 'Service', 'name' => 'Lắp đặt thiết bị inox', 'description' => 'Dịch vụ lắp đặt thiết bị inox tại hiện trường, đảm bảo vận hành ổn định', 'provider' => array( '@type' => 'Organization', 'name' => $this->company_info['name'], 'url' => $this->company_info['url'] ), 'areaServed' => 'Vietnam', 'serviceType' => 'Installation', 'offers' => array( '@type' => 'Offer', 'description' => 'Miễn phí lắp đặt tại TP.HCM cho đơn hàng từ 10 triệu', 'eligibleTransactionVolume' => array( '@type' => 'PriceSpecification', 'minPrice' => '10000000', 'priceCurrency' => 'VND' ) ) ), array( '@type' => 'Service', 'name' => 'Bảo trì và sửa chữa thiết bị inox', 'description' => 'Dịch vụ bảo trì định kỳ và sửa chữa thiết bị inox, đảm bảo hoạt động bền bỉ', 'provider' => array( '@type' => 'Organization', 'name' => $this->company_info['name'], 'url' => $this->company_info['url'] ), 'areaServed' => 'Vietnam', 'serviceType' => 'Maintenance', 'additionalProperty' => array( array( '@type' => 'PropertyValue', 'name' => 'Thời gian phản hồi', 'value' => '24 giờ' ), array( '@type' => 'PropertyValue', 'name' => 'Bảo hành sau sửa chữa', 'value' => '6 tháng' ) ) ) ); foreach ($services as $service) { $this->output_schema_json(array_merge(array('@context' => 'https://schema.org'), $service)); } } /** * Schema Certification - Chứng nhận chất lượng */ private function output_certification_schema() { $certifications = array( array( '@type' => 'Certification', 'name' => 'ISO 9001:2015', 'description' => 'Chứng nhận hệ thống quản lý chất lượng ISO 9001:2015', 'credentialCategory' => 'Quality Management', 'recognizedBy' => array( '@type' => 'Organization', 'name' => 'Tổ chức Tiêu chuẩn Quốc tế' ), 'validIn' => 'Vietnam', 'validFrom' => '2020-01-01', 'expires' => '2026-01-01' ), array( '@type' => 'Certification', 'name' => 'Chứng nhận an toàn thực phẩm', 'description' => 'Chứng nhận thiết bị đạt tiêu chuẩn an toàn thực phẩm', 'credentialCategory' => 'Food Safety', 'recognizedBy' => array( '@type' => 'Organization', 'name' => 'Bộ Y tế Việt Nam' ), 'validIn' => 'Vietnam' ), array( '@type' => 'Award', 'name' => 'Top 100 doanh nghiệp uy tín 2023', 'description' => 'Giải thưởng doanh nghiệp uy tín trong lĩnh vực sản xuất thiết bị inox', 'awarder' => array( '@type' => 'Organization', 'name' => 'Hiệp hội Doanh nghiệp TP.HCM' ), 'dateCreated' => '2023-12-15' ) ); foreach ($certifications as $cert) { $this->output_schema_json(array_merge(array('@context' => 'https://schema.org'), $cert)); } } /** * Schema Business Performance - Thành tích doanh nghiệp */ private function output_business_performance_schema() { $schema = array( '@context' => 'https://schema.org', '@type' => 'Organization', 'name' => $this->company_info['name'], 'foundingDate' => '2015', 'numberOfEmployees' => array( '@type' => 'QuantitativeValue', 'value' => 25, 'description' => 'Đội ngũ nhân viên chuyên nghiệp' ), 'slogan' => 'Chuyên gia thiết bị inox công nghiệp', 'additionalProperty' => array( array( '@type' => 'PropertyValue', 'name' => 'Năm kinh nghiệm', 'value' => '9+ năm' ), array( '@type' => 'PropertyValue', 'name' => 'Dự án hoàn thành', 'value' => '500+ dự án' ), array( '@type' => 'PropertyValue', 'name' => 'Khách hàng hài lòng', 'value' => '1000+ khách hàng' ), array( '@type' => 'PropertyValue', 'name' => 'Tỷ lệ hài lòng', 'value' => '98%' ), array( '@type' => 'PropertyValue', 'name' => 'Thời gian bảo hành', 'value' => 'Lên đến 24 tháng' ), array( '@type' => 'PropertyValue', 'name' => 'Phạm vi phục vụ', 'value' => 'Toàn quốc' ) ), 'makesOffer' => array( array( '@type' => 'Offer', 'itemOffered' => array( '@type' => 'Service', 'name' => 'Tư vấn miễn phí 24/7' ) ), array( '@type' => 'Offer', 'itemOffered' => array( '@type' => 'Service', 'name' => 'Bảo hành tận nơi' ) ), array( '@type' => 'Offer', 'itemOffered' => array( '@type' => 'Service', 'name' => 'Giao hàng toàn quốc' ) ) ) ); $this->output_schema_json($schema); } /** * Schema Service - Dịch vụ chuyên ngành inox */ private function output_service_schema() { $services = array( array( '@type' => 'Service', 'name' => 'Tư vấn thiết kế thiết bị inox', 'description' => 'Tư vấn miễn phí thiết kế thiết b