أولاً، يُطبَّق Schema.org بشكل ممتاز في جميع أنحاء المنتديات!
ومع ذلك، أود أن أعرف ما إذا كان من الممكن منح ‘المؤلف’ سلطة أكبر في نتائج بحث Google من خلال تطبيق Schema.org أيضاً على صفحة الملف الشخصي، وإضافة إمكانية ربط حسابات وسائل التواصل الاجتماعي بذلك الملف الشخصي.
يوجد نوع ProfilePage في Schema.org يمكن العثور عليه هنا: ProfilePage - Schema.org Type
ليس كل العناصر ضرورية، ولكن إليك مثالاً على كيفية تطبيقه:
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "ProfilePage",
"mainEntity" : {
"@type" : "Person",
"name" : "Jane Doe",
"givenName" : "Jane",
"familyName" : "Doe",
"email" : "jdoe@examplelaw.com",
"telephone" : "9195555555",
"jobTitle" : "Partner",
"image" : "https://www.examplelaw.com/wp-content/examplelaw/2018/02/jane-doe.jpg",
"url" : "https://www.examplelaw.com/attorney/jane-doe/",
"worksFor": {
"@type": "Organization",
"name": "Example Law Firm",
"url": "https://www.examplelaw.com/",
"address": {
"@type": "PostalAddress",
"addressLocality": "Raleigh",
"addressRegion": "NC",
"postalCode": "27604",
"streetAddress": "100 Main Street, Suite 201",
"addressCountry": "USA"
}
},
"gender": "female",
"alumniOf": [
{
"@type" : "CollegeOrUniversity",
"name" : "University of North Carolina at Chapel Hill"
},
{
"@type" : "CollegeOrUniversity",
"name" : "University of North Carolina School of Law"
}
],
"memberOf": [
"North Carolina State Bar",
"Wake County Bar",
"North Carolina Board Certified Family Law Specialist",
"Certified Parenting Coordinator",
"NCDRC Certified Family Financial Mediator"
],
"award": [
"North Carolina Super Lawyers, Rising Star 2018",
"Business Leader Magazine, North Carolina Top Family Lawyer"
],
"sameAs": [
"https://www.facebook.com/JaneDoeAttorney/",
"https://www.linkedin.com/in/jane-doe-attorney",
"https://twitter.com/janedoeattorney"
]
}
}
</script>
حيث يُعد خاصية ‘sameAs’ على وجه الخصوص إضافة ترحيبية.


