Skip to content

Instantly share code, notes, and snippets.

@vixduong
Created August 11, 2023 07:41
Show Gist options
  • Save vixduong/f24e3a46ec427cacc415cbb3a7d025c0 to your computer and use it in GitHub Desktop.
Save vixduong/f24e3a46ec427cacc415cbb3a7d025c0 to your computer and use it in GitHub Desktop.
bpm openapi
{
"openapi": "3.0.1",
"info": {
"title": "iBPM Job Derivative API",
"description": "Phần nghiệp vụ xử lý tạo job phái sinh cho iBPM",
"version": "1.0"
},
"servers": [
{
"url": "http://192.168.10.92:8080",
"description": "Generated server url"
}
],
"paths": {
"/api/job-derivative": {
"post": {
"tags": [
"job-derivative-resource"
],
"operationId": "createJobDerivative",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"type": "string"
}
}
}
}
}
}
}
},
"components": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment