Skip to content

Instantly share code, notes, and snippets.

@sandeepshetty
Last active December 19, 2015 10:09
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandeepshetty/5938202 to your computer and use it in GitHub Desktop.
Save sandeepshetty/5938202 to your computer and use it in GitHub Desktop.
Converspace JSON store
{
"type":"post",
"id":"2013/07/06/4",
"content":"Hello World",
"published":"",
"updated":"",
"response_counts":{
"comments":0,
"likes":0,
"shares":0,
"mentions":0
},
"responses":{
"comments":[
{
"url":"",
"content":"",
"author":{
"name":"",
"url":"",
"photo":""
},
"published":"",
"updated":""
}
],
"likes":[
],
"shares":[
],
"mentions":[
]
}
}
{
"url": "http://johndoe.tld/",
"title": "johndoe.tld",
"author": {
"name": "John Doe",
"url": "http://johndoe.tld/",
"photo": "http://www.gravatar.com/avatar/fd876f8cd6a58277fc664d47ea10ad19.jpg?s=80&d=mm",
"email": "johndoe@example.com",
"bio": "Hypothetical typical male."
}
}
{
"entries": [
{
"type": "post",
"id": "2013/07/06/4",
"content": "",
"published": "",
"updated": "",
"response_counts": {
"comments": 0,
"likes": 0,
"shares": 0,
"mentions": 0,
},
"responses": {
"comments": [
{
"url": "",
"content": "",
"author": {
"name": "",
"url": "",
"photo": ""
},
"published": "",
"updated": ""
}
],
"likes" : [
],
"shares": [
],
"mentions": [
]
}
},
{
"type": "comment",
"id": "2013/07/06/3",
"target": {
"url": "",
"content": "",
"author": {
"name": "",
"url": "",
"photo": ""
},
"published": "",
"updated": "",
},
"content": "",
"published": ""
},
{
"type": "share",
"id": "2013/07/06/2",
"target": {
"url": "",
"content": "",
"author": {
"name": "",
"url": "",
"photo": ""
},
"published": ""
},
"content": "",
"published": ""
},
{
"type": "like",
"id": "2013/07/06/1",
"target": {
"url": "",
"content": "",
"author": {
"name": "",
"url": "",
"photo": ""
},
"published": ""
},
"content": "",
"published": ""
},
]
}
@sandeepshetty
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment