Pengertian Schema.Org Blogger - Fungsi, Tujuan & Manfaatnya
Jika sebelumnya yang diposting adalah Cara Memasang Schema.Org di Blogger dengan Tutorial Lengkap, kali ini saya akan berbagi materi SEO tentang pengertian Schema.Org Blogger/Blogspot serta fungsi, tujuan dan manfaatnya bagi SEO Google.
Diistilahkan, dinamakan, atau disebut Microdata Schema.Org adalah sebuah Schema Markup atau data terstruktur yang berfungsi agar mesin pencari mudah dalam melakukan Indexing (pengindeksan/penelusuran) terhadap blog atau Website yang dimiliki.
Schema.org adalah kegiatan komunitas kolaboratif dengan misi untuk "membuat, memelihara, dan mempromosikan skema untuk data terstruktur di Internet, di halaman web, dalam pesan email, dan seterusnya."
Atau dalam bahasa Inggrisnya,
Schema.org is a collaborative community activity with a mission to "create, maintain, and promote schemas for structured data on the Internet, on web pages, in email messages, and beyond."[1] Webmasters use this shared vocabulary to structure metadata on their websites and to help search engines understand the published content, a technique known as search engine optimization.
Singkatnya adalah suatu situs akan dapat dengan mudah menguasai halaman pertama Google (Page One) hanya karena telah disisipkan, disematkan, atau dipasangkan Microdata Schema.Org.
Schema.Org merupakan bagian dari salah satu teknik SEO, yang mengartikan bahwa Schema.Org memiliki manfaat dan tujuan yaitu mengoptimasi website agar bisa menempati Ranking teratas di hasil pencarian atau Search Engine Result Page (SERP).
Microdata Schema.Org for Blogger
The following is an example of how to mark up information about a movie and its director using the Schema.org schemas and microdata.
In order to mark up the data, the attribute itemtype along with the URL of the schema is used. The attribute itemscope defines the scope of the itemtype. The kind of the current item can be defined by using the attribute itemprop.
<div itemscope itemtype="http://schema.org/Movie">
<h1 itemprop="name">Avatar</h1>
<div itemprop="director" itemscope itemtype="http://schema.org/Person">
Director: <span itemprop="name">James Cameron</span>
(born <time itemprop="birthDate" datetime="1954-08-16">August 16, 1954</time>)
</div>
<span itemprop="genre">Science fiction</span>
<a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer">Trailer</a>
</div>
RDFa 1.1 Lite
<div vocab="http://schema.org/" typeof="Movie">
<h1 property="name">Avatar</h1>
<div property="director" typeof="Person">
Director: <span property="name">James Cameron</span>
(born <time property="birthDate" datetime="1954-08-16">August 16, 1954</time>)
</div>
<span property="genre">Science fiction</span>
<a href="../movies/avatar-theatrical-trailer.html" property="trailer">Trailer</a>
</div>
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Movie",
"name": "Avatar",
"director":
{
"@type": "Person",
"name": "James Cameron",
"birthDate": "1954-08-16"
},
"genre": "Science fiction",
"trailer": "../movies/avatar-theatrical-trailer.html"
}
</script>
Itulah materi SEO tentang pengertian Schema.Org Blogger/Blogspot serta fungsi, tujuan dan manfaatnya bagi SEO Google.
Sumber: https://en.wikipedia.org/wiki/Schema.org