Skip to content

Instantly share code, notes, and snippets.

@manabuyasuda
Last active June 4, 2024 05:19
Show Gist options
  • Save manabuyasuda/3ec8c12f523bec615732a90d5fc6bffc to your computer and use it in GitHub Desktop.
Save manabuyasuda/3ec8c12f523bec615732a90d5fc6bffc to your computer and use it in GitHub Desktop.
Person(JSON-LD)大体これくらいでMaxじゃない?
{
"@context": "https://schema.org",
"@type": "Person",
"name": "名前",
"description": "詳細な説明",
"image": ["https://example.com/image01.jpg"],
"sameAs": ["副次的なURL1"],
"hasOccupation": [
{
"@type": "Occupation",
"name": "職業名1",
"descripttion": "職業名1の詳細な説明"
}
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "資格種類の一般的な名称1",
"recognizedBy": {
"@type": "Organization",
"name": "資格を発行している団体名",
"url": "https://example.com/"
}
}
],
"award": ["受け取った賞1"],
"url": "主要なURL",
"alumniOf": [
{
"@type": "CollegeOrUniversity",
"name": "卒業した学校名1",
"url": "学校の公式URL",
"sameAs": ["学校の副次的なURL"],
"department": [
{
"@type": "EducationalOccupationalProgram",
"name": "学科・学部名1",
"degree": [
{
"@type": "EducationalOccupationalCredential",
"credentialCategory": "学位の種類や正式名称1",
"name": "学位名1"
}
]
}
]
}
],
"jobTitle": ["職位・役職1"],
"worksFor": [
{
"@type": "Organization",
"name": "企業名1",
"url": "https://www.example.co.jp",
"address": {
"@type": "PostalAddress",
"streetAddress": "東京都千代田区丸の内1丁目",
"addressLocality": "千代田区",
"addressRegion": "東京都",
"postalCode": "100-0005",
"addressCountry": "JP"
}
}
],
"memberOf": [
{
"@type": "Organization",
"name": "〇〇協会",
"url": "https://japan-youtuber-association.com"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment