Skip to content

Instantly share code, notes, and snippets.

{
"@context": { "@vocab": "http://todosapp.com/api/vocab#" },
"@id": "http://todosapp.com/api/version_4/users/1#self",
"name": "John Doo",
"email": "[email protected]",
"todos": {
"@id": "http://todosapp.com/api/version_4/todos#self",
"operations": [
{
"method": "GET",
{
"@context": { "@vocab": "http://todosapp.com/api/vocab#" },
"@id": "http://todosapp.com/api/version_4/users/1#self",
"name": "John Doo",
"email": "[email protected]",
"todos": {
"@id": "http://todosapp.com/api/version_4/todos#self",
"operations": [
{
"method": "GET",
{
"@context": { "@vocab": "http://todosapp.com/api/vocab#" },
"@id": "http://todosapp.com/api/version_3/users/1/todos/1",
"title": "Test",
"description": "Test TODO",
"user": { "@id": "http://todosapp.com/api/version_3/users/1" }
}
curl -X GET -H "Accept: application/ld+json" http://todosapp.com/api/version_3/users/1/todos/1
{
"@id": "http://todosapp.com/api/version_3/users/1/todos/1",
"http://todosapp.com/api/vocab#title": "Test",
"http://todosapp.com/api/vocab#description": "Test TODO",
"http://todosapp.com/api/vocab#user": { "@id": "http://todosapp.com/api/version_3/users/1" }
}
<http://todosapp.com/api/users/1/todos/1> <http://todosapp.com/api/vocab#title> "Test" .
<http://todosapp.com/api/users/1/todos/1> <http://todosapp.com/api/vocab#description> "Test TODO" .
<http://todosapp.com/api/users/1/todos/1> <http://todosapp.com/api/vocab#user> <http://todosapp.com/api/users/1> .
curl -X GET -H "Accept: application/ld+json" http://todosapp.com/api/version_3/users/1
{
"@context": { "@vocab": "http://todosapp.com/api/vocab#" },
"@id": "http://todosapp.com/api/users/1",
"name": "John Doo",
"email": "[email protected]",
"todos": { "@id": "http://todosapp.com/api/users/1/todos" }
}
<http://todosapp.com/api/users/1> <http://todosapp.com/api/vocab#name> "John Doo" .
<http://todosapp.com/api/users/1> <http://todosapp.com/api/vocab#email> "[email protected]" .
<http://todosapp.com/api/users/1> <http://todosapp.com/api/vocab#todos> <http://todosapp.com/api/users/1/todos> .
<http://todosapp.com/api/users/1/todos/1> <http://todosapp.com/api/vocab#title> "Test" .
<http://todosapp.com/api/users/1/todos/1> <http://todosapp.com/api/vocab#description> "Test TODO" .
<http://todosapp.com/api/users/1/todos/1> <http://todosapp.com/api/vocab#user> <http://todosapp.com/api/users/1> .
<http://todosapp.com/api/users/1> <http://todosapp.com/api/vocab#name> "John Doo" .
<http://todosapp.com/api/users/1> <http://todosapp.com/api/vocab#email> "[email protected]" .
<http://todosapp.com/api/users/1> <http://todosapp.com/api/vocab#todos> <http://todosapp.com/api/users/1/todos> .