Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
short description for methods
  • Loading branch information
bricas committed Dec 8, 2011
1 parent 8ca46a6 commit 23c2633
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions root/spore.json
Expand Up @@ -8,6 +8,7 @@
"artists" : {
"method" : "GET",
"path" : "/artist",
"description" : "List of artists",
"optional_params" : [
"page",
"rows"
Expand All @@ -16,13 +17,15 @@
"artist" : {
"method" : "GET",
"path" : "/artist/:name",
"description" : "Details about an artist",
"required_params" : [
"name"
]
},
"groups" : {
"method" : "GET",
"path" : "/group",
"description" : "List of groups",
"optional_params" : [
"page",
"rows"
Expand All @@ -31,13 +34,15 @@
"group" : {
"method" : "GET",
"path" : "/group/:name",
"description" : "Details about a group",
"required_params" : [
"name"
]
},
"packs" : {
"method" : "GET",
"path" : "/pack",
"description" : "List of packs",
"optional_params" : [
"page",
"rows"
Expand All @@ -46,13 +51,15 @@
"pack" : {
"method" : "GET",
"path" : "/pack/:name",
"description" : "Details about a pack",
"required_params" : [
"name"
]
},
"file" : {
"method" : "GET",
"path" : "/pack/:pack/:name",
"description" : "Details about a file from a pack",
"required_params" : [
"pack",
"name"
Expand All @@ -61,10 +68,12 @@
"years" : {
"method" : "GET",
"path" : "/year"
"description" : "List of years",
},
"year" : {
"method" : "GET",
"path" : "/year/:year",
"description" : "List of packs from a year",
"required_params" : [
"year"
],
Expand All @@ -76,6 +85,7 @@
"month" : {
"method" : "GET",
"path" : "/year/:year/:month",
"description" : "List of packs from a particular month of a year",
"required_params" : [
"year",
"month"
Expand Down

0 comments on commit 23c2633

Please sign in to comment.