@@ -, +, @@ conditions. --- api/v1/swagger/paths/rotas.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) --- a/api/v1/swagger/paths/rotas.json +++ a/api/v1/swagger/paths/rotas.json @@ -38,6 +38,12 @@ "$ref": "../definitions.json#/error" } }, + "401": { + "description": "Authentication required", + "schema": { + "$ref": "../definitions.json#/error" + } + }, "403": { "description": "Access forbidden", "schema": { @@ -50,6 +56,18 @@ "$ref": "../definitions.json#/error" } } + "500": { + "description": "Internal server error", + "schema": { + "$ref": "../definitions.json#/error" + } + }, + "503": { + "description": "Under maintenance", + "schema": { + "$ref": "../definitions.json#/error" + } + } }, "x-koha-authorization": { "permissions": { --