summaryrefslogtreecommitdiff
path: root/t/specs/couchdb.json
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-09-13 13:31:56 +0200
committerfranck cuny <franck@lumberjaph.net>2010-09-13 13:31:56 +0200
commit3e3dc478fc9b4eb90681df89156dfcc8f7f81481 (patch)
treeb9788b0d48f524bc4c0aeeb48c744a8f7b097910 /t/specs/couchdb.json
downloadnet-http-spore-3e3dc478fc9b4eb90681df89156dfcc8f7f81481.tar.gz
initial import
Diffstat (limited to 't/specs/couchdb.json')
-rw-r--r--t/specs/couchdb.json77
1 files changed, 77 insertions, 0 deletions
diff --git a/t/specs/couchdb.json b/t/specs/couchdb.json
new file mode 100644
index 0000000..f7c44b2
--- /dev/null
+++ b/t/specs/couchdb.json
@@ -0,0 +1,77 @@
+{
+ "version" : "0.1",
+ "methods" : {
+ "create_document_without_id" : {
+ "required" : [
+ "database"
+ ],
+ "path" : "/:database",
+ "method" : "POST"
+ },
+ "get_all_documents" : {
+ "params" : [
+ "descending",
+ "startkey",
+ "endkey",
+ "limit",
+ "include_docs"
+ ],
+ "required" : [
+ "database"
+ ],
+ "path" : "/:database/_all_docs",
+ "method" : "GET"
+ },
+ "create_document_with_id" : {
+ "required" : [
+ "database",
+ "doc_id"
+ ],
+ "path" : "/:database/:doc_id",
+ "method" : "POST"
+ },
+ "get_document" : {
+ "params" : [
+ "rev",
+ "revs"
+ ],
+ "required" : [
+ "database",
+ "doc_id"
+ ],
+ "path" : "/:database/:doc_id",
+ "method" : "GET"
+ },
+ "get_all_documents_by_seq" : {
+ "params" : [
+ "startkey",
+ "endkey",
+ "limit",
+ "include_docs"
+ ],
+ "required" : [
+ "database"
+ ],
+ "path" : "/:database/_all_docs_by_seq",
+ "method" : "GET"
+ },
+ "delete_document" : {
+ "params" : [
+ "rev"
+ ],
+ "required" : [
+ "database",
+ "doc_id"
+ ],
+ "path" : "/:database/:doc_id",
+ "method" : "DELETE"
+ }
+ },
+ "api_format" : [
+ "json"
+ ],
+ "name" : "CouchDB",
+ "author" : [
+ "franck cuny <franck@lumberjaph.net>"
+ ]
+}