例如,考虑the Twitter API提供的用户数据的子集:
{
"id_str": "6253282",
"screen_name": "twitterapi",
"name": "Twitter API"
}
假设我想用JSON-LD对这些信息进行建模。我可以使用以下标准轻松调整大多数数据
@id
attribute name
attribute acct
URI scheme {
"@id": "acct:6253282@twitter.com",
"???": "twitterapi",
"http://schema.org/name": "Twitter API"
}
(???
是我正在寻找的描述符的占位符。)
简而言之:我是否可以使用任何标准词汇表来替换上面代码段中的???
?
答案 0 :(得分:1)
词汇 FOAF ¹提供nick
property:
表征代理的简短非正式昵称(包括登录标识符,IRC和其他聊天昵称)。
¹请注意,此词汇表是JSON-LD Context http://www.w3.org/2013/json-ld-context/rdfa11
:
"foaf": "http://xmlns.com/foaf/0.1/",