Scrapes schema.org for data on microformats, mapping 1:1 with their URLs. So, http://schema.org/Person becomes /Person.
If you have questions, hit up @garbados. Enjoy!
The API scrapes items -- that is, Thing derivatives -- so trying it on searches or properties will result in much gnashing of teeth.
Expect responses like this, which comes from /Action:
{
"name": "Action",
"_links": {
"self": {
"href": "/Action"
},
"related": [
{
"href": "/AchieveAction",
"name": "AchieveAction"
},
{
"href": "/AssessAction",
"name": "AssessAction"
},
{
...
}
]
},
"_embedded": [
{
"description": "A short description of the item.",
"expected": {
"type": "Text"
},
"property": "description"
},
{
"description": "URL of an image of the item.",
"expected": {
"type": "URL"
},
"property": "image"
},
{
...
}
]
}