diff --git a/swagger.json b/swagger.json index 99a40b8..f121ffd 100644 --- a/swagger.json +++ b/swagger.json @@ -621,412 +621,6 @@ } } }, - "/error": { - "get": { - "tags": [ - "basic-error-controller" - ], - "summary": "error", - "operationId": "errorUsingGET", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "type": "object" - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "head": { - "tags": [ - "basic-error-controller" - ], - "summary": "error", - "operationId": "errorUsingHEAD", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "type": "object" - } - } - }, - "401": { - "description": "Unauthorized" - }, - "204": { - "description": "No Content" - }, - "403": { - "description": "Forbidden" - } - } - }, - "post": { - "tags": [ - "basic-error-controller" - ], - "summary": "error", - "operationId": "errorUsingPOST", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "type": "object" - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "basic-error-controller" - ], - "summary": "error", - "operationId": "errorUsingPUT", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "type": "object" - } - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "delete": { - "tags": [ - "basic-error-controller" - ], - "summary": "error", - "operationId": "errorUsingDELETE", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "type": "object" - } - } - }, - "401": { - "description": "Unauthorized" - }, - "204": { - "description": "No Content" - }, - "403": { - "description": "Forbidden" - } - } - }, - "options": { - "tags": [ - "basic-error-controller" - ], - "summary": "error", - "operationId": "errorUsingOPTIONS", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "type": "object" - } - } - }, - "401": { - "description": "Unauthorized" - }, - "204": { - "description": "No Content" - }, - "403": { - "description": "Forbidden" - } - } - }, - "patch": { - "tags": [ - "basic-error-controller" - ], - "summary": "error", - "operationId": "errorUsingPATCH", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "object", - "additionalProperties": { - "type": "object" - } - } - }, - "401": { - "description": "Unauthorized" - }, - "204": { - "description": "No Content" - }, - "403": { - "description": "Forbidden" - } - } - } - }, - "/manifest/": { - "get": { - "tags": [ - "manifest-controller" - ], - "summary": "getManifest", - "operationId": "getManifestUsingGET", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/ManifestDTO" - } - } - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "post": { - "tags": [ - "manifest-controller" - ], - "summary": "createManifest", - "operationId": "createManifestUsingPOST", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "parameters": [ - { - "name": "manifestIdx", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - }, - { - "name": "manifestTitle", - "in": "query", - "required": false, - "type": "string" - }, - { - "name": "manifestContent", - "in": "query", - "required": false, - "type": "string" - }, - { - "name": "manifestType", - "in": "query", - "required": false, - "type": "string" - }, - { - "name": "manifestCategory", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ManifestDTO" - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - }, - "put": { - "tags": [ - "manifest-controller" - ], - "summary": "updateManifest", - "operationId": "updateManifestUsingPUT", - "consumes": [ - "application/json" - ], - "produces": [ - "*/*" - ], - "parameters": [ - { - "name": "manifestIdx", - "in": "query", - "required": false, - "type": "integer", - "format": "int32" - }, - { - "name": "manifestTitle", - "in": "query", - "required": false, - "type": "string" - }, - { - "name": "manifestContent", - "in": "query", - "required": false, - "type": "string" - }, - { - "name": "manifestType", - "in": "query", - "required": false, - "type": "string" - }, - { - "name": "manifestCategory", - "in": "query", - "required": false, - "type": "string" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/ManifestDTO" - } - }, - "201": { - "description": "Created" - }, - "401": { - "description": "Unauthorized" - }, - "403": { - "description": "Forbidden" - }, - "404": { - "description": "Not Found" - } - } - } - }, "/manifest/download/{manifestIdx}": { "get": { "tags": [