来自Schema.org PerformanceRole
JSON-LD示例:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Movie",
"name": "Ghostbusters",
"sameAs": "http://en.wikipedia.org/wiki/Ghostbusters",
"actor": {
"@type": "PerformanceRole",
"actor": {
"@type": "Person",
"name": "Bill Murray"
},
"characterName": "Dr. Peter Venkman"
}
}
</script>
我可以为每个sameAs
添加一个Person
,从而为电影中涉及的每个演员提供一个参考/个人资料URL。
演员们的角色我可以有吗?
在上面的示例中,彼得·文克曼博士可以链接到something like this,该页面包含有关该角色的专门信息,无论演员是由哪个演员来解释。
但是,据我所知,characterName
属性仅接受原始文本。