Last active
December 19, 2015 10:09
-
-
Save sandeepshetty/5938202 to your computer and use it in GitHub Desktop.
Converspace JSON store
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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":[ | |
] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": "[email protected]", | |
"bio": "Hypothetical typical male." | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": "" | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JSON Query Links