在Freebase中查找类型描述?

时间:2011-11-04 07:14:22

标签: api freebase

我一直在尝试使用以下查询获取域人员中的类型:

[{
  "/type/object/id": "/people",
  "/type/object/name": null,
  "/type/domain/types": [{
    "/type/object/id": null,
    "/type/object/name": null
  }]
}]​

但我也希望对该类型进行简短的文字描述。谁知道我正在寻找什么属性?我试过寻找但无济于事。我需要一个类似于此处显示的文字说明:http://www.freebase.com/schema/american_football

谢谢!

1 个答案:

答案 0 :(得分:1)

它用于主题描述的相同属性(/ common / topic / article)。所以你的查询看起来像这样:

[{
  "/type/object/id": "/people",
  "/type/object/name": null,
  "/type/domain/types": [{
    "/type/object/id": null,
    "/type/object/name": null,
    "/common/topic/article": [{
      "text": {
        "maxlength": 16384,
        "chars":     null
      }
    }]
  }]
}]​

Try it out

请记住/ common / topic / article是MQL extension,因此如果您使用的是API,则需要turn on that feature

注意: MQL扩展是Freebase API的一项实验性功能,新版本的API不支持这些扩展。新API直接从中提供文本 Text Service