Structured Data

Google Search uses structured data to enable special search result features and enhancements. For example, a recipe page with valid structured data is eligible to appear in a graphical search result, as shown here.


Structured data is coded using in-page markup on the page that the information applies to. The structured data on the page should describe the content of that page.


Structured Data


Structured data is a standardized format for providing information about a page and classifying the page content



Edit and add this code in your header tag.

Copy the code snippet below and edit it with your web app meta data.



 
<script type="application/ld+json"> {
    "@context": "http://schema.org",
    "@type": "Organization",
    "url": "https://www.pwafire.org",
    "logo": "https://pwafire.org/images/icons/icon-152x152.png",
    "name": "PWAFire.Org",
    "sameAs": [ "http://www.facebook.com/mayeedwin",
    "http://instagram.com/mayeedwin",
    "http://twitter.com/pwafire",
    "https://www.linkedin.com/company/pwafire-org"],
    "contactPoint": {
        "@type": "ContactPoint", 
        "telephone": "+254-123-456-789", 
        "contactType": "Customer service"
    }
}
</script> 
<script type="application/ld+json"> {
    "@context":"http://schema.org",
    "@type":"ItemList",
    "itemListElement":[ {
        "@type": "ListItem", 
        "position": 1, 
        "url": "https://pwafire.org/developer"
    }
    ,
    {
        "@type": "ListItem", 
        "position": 2, 
        "url": "https://pwafire.org/developer/codelabs/"
    }
    ,
    {
        "@type": "ListItem", 
        "position": 3, 
        "url": "https://pwafire.org/developer/app/"
    }
    ,
    {
        "@type": "ListItem", 
        "position": 4, 
        "url": "https://pwafire.org/developer/pwa/started/"
    }
    ]
}
</script> 
<script type="application/ld+json"> {
    "@context": "http://schema.org",
    "@type": "WebSite",
    "url": "https://www.pwafire.org",
    "potentialAction": {
        "@type": "SearchAction",
        "target": "https://www.pwafire.org/search?q={search_term_string}",
        "query-input": "required name=search_term_string"
    }
}
</script> 


Learn more about structured data here and find the latest Github Commit here


You want to join our developer program?