2011-11-04 108 views
1

我一直試圖讓域的人的類型用下面的查詢:在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

它與您用於主題描述的屬性相同(/ 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

記住/普通/主題/文章是MQL extension所以你如果你使用的API需要turn on that feature

注意: MQL擴展是Freebase API的一個實驗性功能,它們在新版本的API中不受支持。新的API通過直接從 Text Service提供文本。