admin/md/api_docs.md
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
### docs (LiteStore Documents) A document is the main resource type managed by LiteStore. Any LiteStore document can be represented as a JSON object exposing the following properties: * id: The unique identifier of the document. * data: The document contents (base64-encoded if binary). * created: The document creation date expressed as combined date and time in UTC ([ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) compliant). * modified: The document modification date (if applicable) expressed as combined date and time in UTC ([ISO 8601](http://en.wikipedia.org/wiki/ISO_8601) compliant). * tags: A list of tags associated to the document. > %note% > JSON Documents > > Documents with content type "application/json" are special: their **data** property is _not_ set to a string like for all other textual and binary documents, but a real, non-escaped JSON object. This little quirk makes JSON documents _different_ from other documents, but also makes things so much easier when you just want to use LiteStore as a simple JSON document store. #### Example Document ``` { "id": "test_document", "data": "This is a test document", "created": "2015-02-07T10:36:09Z", "modified": null, "tags": ["$type:text", "$subtype:plain", "$format:text", "another_tag"] } ``` #### OPTIONS docs Returns the allowed HTTP verbs for the this resource. ##### Example ``` $ curl -i -X OPTIONS 'http://127.0.0.1:9500/docs' HTTP/1.1 200 OK Content-Length: 0 Access-Control-Allow-Methods: HEAD,GET,OPTIONS,POST Allow: HEAD,GET,OPTIONS,POST Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 ``` #### OPTIONS docs/:id Returns the allowed HTTP verbs for this resource. ##### Example ``` curl -i -X OPTIONS 'http://127.0.0.1:9500/docs/test' HTTP/1.1 200 OK Content-Length: 0 Allow: HEAD,GET,PUT,PATCH,DELETE,OPTIONS ``` #### POST docs Creates a new document with a randomly-generated ID. ##### Example ``` $ curl -i -X POST -d 'A document with a randomly-generated ID.' 'http://127.0.0.1:9500/docs' --header "Content-Type:text/plain" HTTP/1.1 201 Created Content-Length: 197 Content-Type: application/json Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 {"id": "555f93e82190e77500000000", "data": "A document with a randomly-generated ID.", "created": "2015-05-22T08:39:04Z", "modified": null, "tags": ["$type:text", "$subtype:plain", "$format:text"]} ``` #### HEAD docs Retrieves all headers related to the docs resource and no content (this is probably not that useful, but at least it should make REST purists happy). ``` $ curl -i -X HEAD 'http://127.0.0.1:9500/docs' HTTP/1.1 200 OK Content-Length: 0 Content-Type: application/json Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 ``` #### HEAD docs/:id Retrieves all headers related to the a document and no content. Useful to check whether a document exists or not. ``` $ curl -i -X HEAD 'http://127.0.0.1:9500/docs/test' HTTP/1.1 200 OK Content-Length: 0 Content-Type: application/json Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 ``` #### GET docs Retrieves a list of documents in JSON format. ##### Query String Options The following query string options are supported: * **search** – Search for the specified string. Example: `http://127.0.0.1:9500/docs/?search=Something`. * **tags** – Retrieve only documents with matching tag(s). Example: `http://127.0.0.1:9500/docs/?tags=tag1,tag2` * **limit** – Retrieve only the first _n_ results. Example: `http://127.0.0.1:9500/docs/?limit=5` * **offset** – Skip the first _n_ results. Example: `http://127.0.0.1:9500/docs/?offset=5` * **sort** – Sort by **created**, **modified**, or **id**. Example: `http://127.0.0.1:9500/docs/?sort=id` * **contents** – If set to **false**, do not retrieve document data. Example: `http://127.0.0.1:9500/docs/?contents=false` > %tip% > Tip > > If **search** is specified, each result will contain a **highlight** property with a highlighted search snippet, and a **rank** property identified the rank of the result within the search. Results will also be automatically ordered by descending rank. ##### Example ``` $ curl -i 'http://localhost:9500/docs?search=Use%20Cases&limit=10 &offset=0&tags=$subtype:x-markdown' HTTP/1.1 200 OK Content-Length: 1960 Content-Type: application/json Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 { "search": "Use Cases", "tags": [ "$subtype:x-markdown" ], "limit": 10, "total": 3, "execution_time": 0.01843700000000001, "results": [ { "id": "admin/md/use-cases.md", "created": "2015-09-19T01:37:59Z", "modified": null, "highlight": "### <strong>Use</strong> <strong>Cases</strong>\u000A\u000AWhile LiteStore may not be the best choice for large data-intensive applications, it definitely shines when <strong>used</strong> for rapid prototyping and as a backend for small/lightweight<strong>…</strong>", "rank": "99.5820018475243", "tags": [ "$type:text", "$subtype:x-markdown", "$format:text", "$dir:admin" ] }, { "id": "admin/md/architecture.md", "created": "2015-09-19T01:37:59Z", "modified": null, "highlight": "<strong>…</strong>public unique document identifier, <strong>used</strong> to access the document via the HTTP API.\u000A* **data** – The contents of the document (or their base64-encoded representation in <strong>case</strong> of binary documents<strong>…</strong>", "rank": "39.492608737092", "tags": [ "$type:text", "$subtype:x-markdown", "$format:text", "$dir:admin" ] }, { "id": "admin/md/overview.md", "created": "2015-09-19T01:37:59Z", "modified": null, "highlight": "<strong>…</strong>contained, LiteStore comes with many <strong>useful</strong> features that are essential for many <strong>use</strong> <strong>cases</strong>.\u000A\u000A#### [](class:fa-file-text-o) Multi-format Documents\u000A\u000ALiteStore can be <strong>used</strong> to store documents in<strong>…</strong>", "rank": "39.4926086158248", "tags": [ "$type:text", "$subtype:x-markdown", "$format:text", "$dir:admin" ] } ] } ``` #### GET docs/:id Retrieves the specified document. By default the response is returned in the document's content type; however, it is possible to retrieve the raw document (including metadata) in JSON format by setting the **raw** query string option to true. ##### Example: original content type ``` $ curl -i 'http://127.0.0.1:9500/docs/test' HTTP/1.1 200 OK Content-Length: 24 Content-Type: text/plain Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 This is a test document. ``` ##### Example: raw format ``` $ curl -i 'http://127.0.0.1:9500/docs/test?raw=true' HTTP/1.1 200 OK Content-Length: 191 Content-Type: application/json Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 {"id": "test", "data": "This is a test document.", "created": "2015-09-19T08:07:43Z", "modified": null, "tags": ["$type:text", "$subtype:plain", "$format:text"]} ``` #### PUT docs/:id Updates an existing document or creates a new document with the specified ID. ``` $ curl -i -X PUT -d 'This is a test document.' 'http://127.0.0.1:9500/docs/test' --header "Content-Type:text/plain" HTTP/1.1 201 Created Content-Length: 161 Content-Type: application/json Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 {"id": "test", "data": "This is a test document.", "created": "2015-05-22T08:40:00Z", "modified": null, "tags": ["$type:text", "$subtype:plain", "$format:text"]} ``` #### PATCH docs/:id Adds, removes, replaces or tests the specified document for tags. Operations must be specified using the [JSONPatch](http://jsonpatch.com/) format. Always retrieve document tags first before applying a patch, to know the order tags have been added to the document. > %warning% > Limitations > > * Only **add**, **remove**, **replace** and **test** operations are supported. > * It is currently only possible to change tags, not other parts of a document. ``` $ curl -i -X PATCH 'http://localhost:9500/docs/test.json' --header "Content-Type:application/json" -d '[{"op":"add", "path":"/tags/3", "value":"test1"},{"op":"add", "path":"/tags/4", "value":"test2"},{"op":"add", "path":"/tags/5", "value":"test3"}]' HTTP/1.1 200 OK Content-Length: 187 Content-Type: application/json Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 {"id": "test.json", "data": {"test": true}, "created": "2015-09-20T09:06:25Z", "modified": null, "tags": ["$type:application", "$subtype:json", "$format:text", "test1", "test2", "test3"]} ``` #### DELETE docs/:id Deletes the specified document. ##### Example ``` $ curl -i -X DELETE 'http://127.0.0.1:9500/docs/test' HTTP/1.1 204 No Content Content-Length: 0 Access-Control-Allow-Headers: Content-Type Access-Control-Allow-Origin: * Server: LiteStore/1.0.3 ``` |