Local City Page Schema

Replace the data with your own. Don’t assume there isn’t a specific schema type for your business. 

				
					<script type="application/ld+json">
{
    "@context": "http://schema.org",
    "@type": "ProfessionalService",
    "@id": "https://Site_URL.com/",
    "name": "Business Name",
    "url": "CITY_PAGE_URL",
    "logo": "LINK_TO_LOGO_IMAGE",
    "mainEntityOfPage":"LINK_TO_GOOGLE_MAP",
    "alternateName": "OTHER_COMMON_NAME_FOR_BUSINESS",
    "openingHoursSpecification": [
        {
          "@type": "OpeningHoursSpecification",
          "dayOfWeek": [
            "Monday",
            "Tuesday",
            "Wednesday",
            "Thursday",
            "Friday"
          ],
          "opens": "09:00",
          "closes": "18:00"
        },
        {
          "@type": "OpeningHoursSpecification",
          "dayOfWeek": [
            "Saturday"
          ],
          "opens": "09:00",
          "closes": "15:00"
        },
        {
          "@type": "OpeningHoursSpecification",
          "dayOfWeek": [
            "Sunday"
          ],
          "opens": "09:00",
          "closes": "14:00"
        }
      ],               
    "additionalProperty": "LINK_TO_WIKI_FOR_SERVICE_TYPE",
    "sameAs":[
    "https://www.facebook.com/PAGE_NAME", 
    "https://www.instagram.com/PAGE_NAME", 
    "https://www.youtube.com/user/PAGE_NAME", 
    "https://www.pinterest.com/PAGE_NAME", 
    "https://twitter.com/PAGE_NAME",
    "https://www.linkedin.com/company/PAGE_NAME",
    "https://open.spotify.com/user/PAGE_NAME"
     ],
  "additionalType": [
  "https://en.wikipedia.org/wiki/OTHER_SERVICE_IF_APPLICABLE",
  "https://en.wikipedia.org/wiki/OTHER_SERVICE_IF_APPLICABLE",
  "https://en.wikipedia.org/wiki/OTHER_SERVICE_IF_APPLICABLE",
  "https://en.wikipedia.org/wiki/OTHER_SERVICE_IF_APPLICABLE",
  "https://en.wikipedia.org/wiki/OTHER_SERVICE_IF_APPLICABLE"
  ],
   "areaServed": [ 
    {
      "@type": "City",
      "name": "NAME_OF_CITY_AS_IT_APPEARS_ON_WIKI",
      "@id": "WIKIPEDIA_LINK_FOR_CITY"
    }
    ],
    "email": "COMPANY_CONTACT_EMAIL",
    "address": {
        "@type": "PostalAddress",
        "postalCode": "555555",
        "addressRegion": "STATE",
        "addressCountry": "COUNTRY",
        "streetAddress": "STREET_ADDRESS",
        "addressLocality": "CITY"
    },   
  "hasOfferCatalog": {
  "@type": "OfferCatalog",
  "name": "SHORT_NAME_OF_SERVICES_OFFERED",
  "itemListElement": [
  {
  "@type": "Offer",
  "itemOffered": {
  "@type": "Service",
  "name": "NAME_OF_SERVICE_OR_PRODUCT",
  "description": "DESCRIPTION_OF_SERVICE_OR_PRODUCT"
  }
  },
  {
  "@type": "Offer",
  "itemOffered": {
  "@type": "Service",
  "name": "NAME_OF_SERVICE_OR_PRODUCT",
  "description": "DESCRIPTION_OF_SERVICE_OR_PRODUCT"
  }
  },
  {
  "@type": "Offer",
  "itemOffered": {
  "@type": "Service",
  "name": "NAME_OF_SERVICE_OR_PRODUCT",
  "description": "DESCRIPTION_OF_SERVICE_OR_PRODUCT"
  }
  }
  ]
  }, 
     
    "paymentAccepted": "Cash, Visa, Mastercard, American Express, Debit, ACH",
    "currenciesAccepted": "USD",
    "priceRange": "$$",
    "description": "",
    "telephone": "PHONE_NUMBER",
    "image": {
        "@type": "ImageObject",
        "name": "COMPANY_NAME",
        "url": "CITY_PAGE_FEATURED_IMAGE_URL"
    },
    "contactPoint": {
        "@type": "ContactPoint",
        "name": "COMPANY_NAME",
        "availableLanguage": "https://en.wikipedia.org/wiki/List_of_dialects_of_the_English_language",
        "telephone": "PHONE_NUMBER",
        "contactType": "CUSTOMER_SERVICE, SALES, BILLING???",
        "@id": "URL_TO_CONTACT_PAGE"
    },
    "geo": {
        "@type": "GeoCoordinates",
        "latitude": "42.0000000",
        "longitude": "-83.0000000",
        "description": "Our office location can be found here.",
        "name": "[COMPANY_NAME] Geo Location"
    }
}</script>

<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "Review",
  "reviewBody": "REVIEW_TEXT_GOES_HERE... THIS SHOULD ALSO BE VISIBLE ON THE PAGE ITSELF",
  "itemReviewed": {
    "@type": "ProfessionalService",
    "name": "SERVICE/PRODUCT_THEY_REVIEWED"
  },
  "reviewRating": {
    "@type": "Rating",
    "ratingValue": 5,
    "worstRating": 1,
    "bestRating": 5,
    "reviewAspect": "NAME_OF_SERVICE/PRODUCT_THEY_REVIEWED"
  }
}
</script>