-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #630 from catenax-ng/docs/api/json-format
Docs(Api): add OpenAPI descriptions for BPDM applications in JSON format
- Loading branch information
Showing
4 changed files
with
11,644 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"openapi": "3.0.1", | ||
"info": { | ||
"title": "Business Partner Data Management Bridge Dummy", | ||
"description": "Bridge between Gate and Pool as a simple replacement for a dedicated sharing service", | ||
"version": "4.1.0" | ||
}, | ||
"servers": [ | ||
{ | ||
"url": "http://localhost:8083", | ||
"description": "Generated server url" | ||
} | ||
], | ||
"paths": { | ||
"/api/bridge/sync": { | ||
"post": { | ||
"tags": [ | ||
"bridge-controller" | ||
], | ||
"summary": "Start sync between Gate and Pool", | ||
"operationId": "triggerSync", | ||
"responses": { | ||
"200": { | ||
"description": "OK" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"components": {} | ||
} |
Oops, something went wrong.