100 lines
3.0 KiB
PHP
100 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Organization Schema Component
|
|
* Generates Organization structured data for improved SEO
|
|
*
|
|
* Usage: Include this file in the <head> of every page
|
|
* <?php include($_SERVER['DOCUMENT_ROOT'] . '/includes/schema/organization-schema.php'); ?>
|
|
*/
|
|
|
|
$organizationSchema = [
|
|
'@context' => 'https://schema.org',
|
|
'@type' => 'Organization',
|
|
'@id' => 'https://ukaiautomation.co.uk/#organization',
|
|
'name' => 'UK AI Automation',
|
|
'legalName' => 'UK AI Automation Ltd',
|
|
'url' => 'https://ukaiautomation.co.uk',
|
|
'logo' => [
|
|
'@type' => 'ImageObject',
|
|
'url' => 'https://ukaiautomation.co.uk/assets/images/ukaiautomation-logo.svg',
|
|
'width' => 300,
|
|
'height' => 100
|
|
],
|
|
'image' => 'https://ukaiautomation.co.uk/assets/images/ukaiautomation-logo.svg',
|
|
'description' => 'Enterprise AI automation and data pipeline services for UK businesses. Specialising in competitive intelligence, price monitoring, and GDPR-compliant data extraction.',
|
|
'email' => 'info@ukaiautomation.co.uk',
|
|
'address' => [
|
|
'@type' => 'PostalAddress',
|
|
'streetAddress' => 'Professional Data Services Centre',
|
|
'addressLocality' => 'London',
|
|
'addressRegion' => 'England',
|
|
'postalCode' => 'EC1A 1BB',
|
|
'addressCountry' => 'GB'
|
|
],
|
|
'geo' => [
|
|
'@type' => 'GeoCoordinates',
|
|
'latitude' => 51.5074,
|
|
'longitude' => -0.1278
|
|
],
|
|
'areaServed' => [
|
|
[
|
|
'@type' => 'Country',
|
|
'name' => 'United Kingdom'
|
|
],
|
|
[
|
|
'@type' => 'City',
|
|
'name' => 'London'
|
|
],
|
|
[
|
|
'@type' => 'City',
|
|
'name' => 'Manchester'
|
|
],
|
|
[
|
|
'@type' => 'City',
|
|
'name' => 'Birmingham'
|
|
],
|
|
[
|
|
'@type' => 'City',
|
|
'name' => 'Edinburgh'
|
|
],
|
|
[
|
|
'@type' => 'City',
|
|
'name' => 'Cardiff'
|
|
]
|
|
],
|
|
'sameAs' => [
|
|
'https://www.linkedin.com/company/ukaiautomation',
|
|
'https://x.com/ukaiautomation'
|
|
],
|
|
'contactPoint' => [
|
|
[
|
|
'@type' => 'ContactPoint',
|
|
'contactType' => 'sales',
|
|
'availableLanguage' => 'English',
|
|
'areaServed' => 'GB',
|
|
'hoursAvailable' => [
|
|
'@type' => 'OpeningHoursSpecification',
|
|
'dayOfWeek' => ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
|
|
'opens' => '09:00',
|
|
'closes' => '17:30'
|
|
]
|
|
],
|
|
[
|
|
'@type' => 'ContactPoint',
|
|
'email' => 'info@ukaiautomation.co.uk',
|
|
'contactType' => 'customer service',
|
|
'availableLanguage' => 'English',
|
|
'areaServed' => 'GB'
|
|
]
|
|
],
|
|
'foundingDate' => '2013',
|
|
'numberOfEmployees' => [
|
|
'@type' => 'QuantitativeValue',
|
|
'value' => '1'
|
|
]
|
|
];
|
|
?>
|
|
<script type="application/ld+json">
|
|
<?php echo json_encode($organizationSchema, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); ?>
|
|
</script>
|