From c9190338435c29a7c24ad87f45ff2680a068a135 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Wed, 5 Apr 2023 14:54:22 +0200 Subject: [PATCH] adding br --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 2f5729a..039fea4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -88,12 +88,12 @@ on instances. | Operation | HTTP Method | URL | Success HTTP Status | Safe | Idempotent | |-----------|-------------|-----|---------------------|------|------------| -| **Supported HTTP Methods** | OPTIONS | /{COLLECTION} | 204 No Content | Y | Y | +| **Supported
HTTP Methods** | OPTIONS | /{COLLECTION} | 204 No Content | Y | Y | | **List** | GET | /{COLLECTION} | 200 OK | Y | Y | | **Count** | GET | /{COLLECTION}?count=true | 200 OK | Y | Y | | **Exists** | HEAD | /{COLLECTION} | 204 No Content | Y | Y | | **Create** | POST | /{COLLECTION} | 201 Created | N | N | -| **Supported HTTP Methods** | OPTIONS | /{COLLECTION}/{INSTANCE_ID} | 204 No Content | Y | Y | +| **Supported
HTTP Methods** | OPTIONS | /{COLLECTION}/{INSTANCE_ID} | 204 No Content | Y | Y | | **Exist** | HEAD | /{COLLECTION}/{INSTANCE_ID} | 204 No Content | Y | Y | | **Read** | GET | /{COLLECTION}/{INSTANCE_ID} | 200 OK | Y | Y | | **Update** | PUT | /{COLLECTION}/{INSTANCE_ID} | 200 OK | N | Y |