Created
May 31, 2014 03:08
-
-
Save otarza/c0525c2c6bef88efc193 to your computer and use it in GitHub Desktop.
DSN API
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
{ | |
"comment" : { | |
"id" : "comment id", | |
"text" : "comment text", | |
"links" : { | |
"topic" : "link/to/topic", | |
"repliedTo" : "link/to/parent/comment", | |
"repliesTo" : "link/to/child/comments" | |
} | |
} | |
} |
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
{ | |
"comments" : [ | |
{ | |
"id" : "comment id", | |
"text" : "comment text", | |
"links" : { | |
"topic" : "link/to/topic", | |
"repliedTo" : "link/to/parent/comment", | |
"repliesTo" : "link/to/child/comments" | |
} | |
}, | |
{ | |
"id" : "comment id", | |
"text" : "comment text", | |
"links" : { | |
"topic" : "link/to/topic", | |
"repliedTo" : "link/to/parent/comment", | |
"repliesTo" : "link/to/child/comments" | |
} | |
} | |
] | |
} |
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
{ | |
"rating" : { | |
"id" : "rating id", | |
"value" : "negative or positive", | |
"links" : [ | |
"topic" : "url/to/topic" | |
] | |
} | |
} |
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
{ | |
"topic" : { | |
"id" : "topic id" | |
"title" : "string", | |
"description" : "string", | |
"imageUrl" : "url", | |
"pubDate" : "timestamp", | |
"links" : [ | |
"author" : "url/to/user", | |
"comments" : "url/to/comments", | |
"ratingCount" : "url/to/ratingCount", | |
"rating" : "url/to/rating", | |
] | |
} | |
} |
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
{ | |
"topics": [ | |
{ | |
"id" : "topic id" | |
"title" : "string", | |
"description" : "string", | |
"imageUrl" : "url", | |
"pubDate" : "timestamp", | |
"links" : [ | |
"author" : "url/to/user", | |
"comments" : "url/to/comments", | |
"ratingCount" : "url/to/ratingCount", | |
"rating" : "url/to/rating", | |
] | |
}, | |
{ | |
"id" : "topic id" | |
"title" : "string", | |
"description" : "string", | |
"imageUrl" : "url", | |
"pubDate" : "timestamp", | |
"links" : [ | |
"author" : "url/to/user", | |
"comments" : "url/to/comments", | |
"ratingCount" : "url/to/ratingCount", | |
"rating" : "url/to/rating", | |
] | |
} | |
] | |
} |
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
{ | |
"user" : { | |
"id" : "user id", | |
"alias" : "@name", | |
"email" : "email", | |
"profileLogoUrl" : "logo/url.jpg", | |
"firstName" : "String", | |
"lastName" : "String", | |
"info" : "String", | |
"fbId" : "string", | |
} | |
} |
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
{ | |
"users" : [ | |
{ | |
"id" : "user id", | |
"alias" : "@name", | |
"email" : "email", | |
"profileLogoUrl" : "logo/url.jpg", | |
"firstName" : "String", | |
"lastName" : "String", | |
"info" : "String", | |
"fbId" : "string", | |
}, | |
{ | |
"id" : "user id", | |
"alias" : "@name", | |
"email" : "email", | |
"profileLogoUrl" : "logo/url.jpg", | |
"firstName" : "String", | |
"lastName" : "String", | |
"info" : "String", | |
"fbId" : "string", | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment