Skip to content

Instantly share code, notes, and snippets.

@inadarei
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inadarei/b9d4db8744a8b80849d4 to your computer and use it in GitHub Desktop.
Save inadarei/b9d4db8744a8b80849d4 to your computer and use it in GitHub Desktop.
Extending UBER with profiles (JSON)
{
"uber": {
"version": "1.0",
"data": [
{
"rel": [
"self"
],
"url": "http://example.org/"
},
{
"rel": ["profile"],
"url": "http://microformats.org/profile/hcard",
"data": [
{
"name": "fn",
"value": "Jennifer Gallegos"
}
]
},
{
"name": "todo",
"rel": [
"item",
"http://example.org/rels/todo"
],
"url": "http://example.org/list/1",
"data": [
{
"name": "title",
"value": "Clean house"
},
{
"name": "dueDate",
"value": "2014-05-01"
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment