summaryrefslogtreecommitdiffstats
path: root/docs/offeredapis/swaggers/healthCheck_3_0_0.json
diff options
context:
space:
mode:
authorMatthieuGeerebaert <matthieu.geerebaert@orange.com>2019-03-12 18:30:33 +0100
committerMatthieuGeerebaert <matthieu.geerebaert@orange.com>2019-03-12 18:30:33 +0100
commitcf469f63cb490d90b55508efa331073a17297999 (patch)
tree4cbb6daff2e14d30d2f4d745ec5e8cd8a15f5e5c /docs/offeredapis/swaggers/healthCheck_3_0_0.json
parent66403a1729296f9d90ce61a4d4cb0d102e03cd1e (diff)
Update Swagger files
Change-Id: I02a375b4998fdf23bd7c4eb391011a8e37a1c8e2 Issue-ID: EXTAPI-211 Signed-off-by: MatthieuGeerebaert <matthieu.geerebaert@orange.com>
Diffstat (limited to 'docs/offeredapis/swaggers/healthCheck_3_0_0.json')
-rw-r--r--docs/offeredapis/swaggers/healthCheck_3_0_0.json61
1 files changed, 0 insertions, 61 deletions
diff --git a/docs/offeredapis/swaggers/healthCheck_3_0_0.json b/docs/offeredapis/swaggers/healthCheck_3_0_0.json
deleted file mode 100644
index 8092cb0..0000000
--- a/docs/offeredapis/swaggers/healthCheck_3_0_0.json
+++ /dev/null
@@ -1,61 +0,0 @@
-{
- "swagger" : "2.0",
- "info" : {
- "description" : "This is the ONAP NBI HealthCheck API",
- "version" : "3.0.0",
- "title" : "NBI HealthCheck API",
- "contact" : {
- "email" : "romain.gimbert@orange.com"
- },
- "license" : {
- "name" : "Apache 2.0",
- "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
- }
- },
- "host" : "serverRoot",
- "basePath" : "/nbi/api/v3",
- "schemes" : [ "http" ],
- "produces": [
- "application/json;charset=utf-8"
- ],
- "paths" : {
- "/status" : {
- "get" : {
- "summary" : "Displays health status for the NBI component",
- "operationId" : "commitInfo",
- "description" : "Displays health status for the NBI component",
- "responses": {
- "200": {
- "description": "Service OK",
- "schema": {
- "$ref": "#/definitions/Status"
- }
- },
- "503" : {
- "description" : "Service Unavailable"
- }
- }
- }
- }
- },
- "definitions": {
- "Status": {
- "description": "NBI Status",
- "type": "object",
- "properties": {
- "name": {
- "description": "name of NBI component",
- "type": "string"
- },
- "status": {
- "description": "status of NBI component",
- "type": "string"
- },
- "version": {
- "description": "version of NBI component",
- "type": "string"
- }
- }
- }
- }
-}