Schema for local business

Schema markup is structure data that helps search engine to understand what the page is about, and provides more accurate results for search engine users. Schema markup can be written in languages of code or html tags - RDFa, Microdata and JSON-LD.

JSON-LD (Java Script Object Notation for Linked Objects) is simple and easy way to write and edit your schema markup through a text file, which can directly uploaded to web page or pasting script into head tag.

Example of Local Business Schema:

{
        "@context" : "https://schema.org",
        "@type" : "LocalBusiness",
"name" : "ABC Ltd",
        "url" : "https://www.abcltd.com/",
        "description" : "Abc provides best....",
        "telephone" : "(xxx) xxx-xxxx",
        "faxNumber" : "(xxx) xxx-xxxx",
"openingHours" : "Mon-Fri 9am-5pm,",
        "address" : [
          {
            "@type" : "PostalAddress",
            "streetAddress" : "121 abc street",
            "addressLocality" : "city",
            "addressRegion" : "state",
            "postalCode" : "xxxxx"
          }
        ],
"image" : " ",
"priceRange" : "$$"
      }


Attributes and property values defines content on website and tells search engine what the page is about. For more information about schema markup visit https://schema.org


0 comments:

Post a Comment