top of page
jdesignit code
Code Number

CODING

CODE by Artist Portfolio

Laptop Working
The Coding Space
Basic Coding Knowledge

Home / Resume / Seo / Code

Basic Coding Knowledge

Structured Data Code (JSON)

 

Schema.org is a vocabulary for search engines that provides additional information (known as structured data) about the content of your page. This information helps search engines understand how to best display your pages in search results. 

 

Adding structured data to your page helps search engines understand more about your page and your business. Schema.org is supported by most major search engines including Google, Bing and Yandex. Adding schema markup can help search engines display a richer snippet of your pages in search results. 

 

Below is the code sample: 

 

<script type="application/ld+json">
    {
        "@context": "http://schema.org/",
        "@type": "Person",
        "name": "JAY CHUA",
        "alternateName": "蔡戔倡",
        "url": "https://www.jdesignit.com/",
        "image": "https://www.abc.com/media/12345678.jpg",
        "sameAs": [
            "https://www.facebook.com/abc/",
            "https://twitter.com/abc",
            "https://plus.google.com/12345",
            "https://www.instagram.com/abc/",
            "https://www.youtube.com/user/abc/",
            "https://www.linkedin.com/in/abc/",
            "https://www.pinterest.com/abc/",
            "https://soundcloud.com/abc",
            "https://abc.tumblr.com/",
            "https://www.abcdef.com/abc"
        ],
        "jobTitle": "Singapore Artist",
        "worksFor": {
            "@type": "Organization",
            "name": "JDesignIt"
        }
    }
</script>

 

 

Use markup on your official website to add your social profile information to a Google Knowledge panel. Knowledge panels prominently display your social profile information in some Google Search results. Below is the image sample. 

code icon
Google Knowledge Panel
bottom of page