bf51655a7b
Signed-off-by: Jacek J. Łakis <jacek.lakis@intel.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
46 lines
745 B
JSON
46 lines
745 B
JSON
{
|
|
"basePath": "/v1",
|
|
"consumes": [
|
|
"application/json"
|
|
],
|
|
"host": "item.api.local",
|
|
"info": {
|
|
"description": "Item API",
|
|
"title": "Item API",
|
|
"version": "1.0.0"
|
|
},
|
|
"paths": {
|
|
"/item": {
|
|
"get": {
|
|
"operationId": "GetItem",
|
|
"responses": {
|
|
"200": {
|
|
"description": "item detail response",
|
|
"schema": {
|
|
"$ref": "item.json"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"produces": [
|
|
"application/json"
|
|
],
|
|
"schemes": [
|
|
"http"
|
|
],
|
|
"security": [
|
|
{
|
|
"key": []
|
|
}
|
|
],
|
|
"securityDefinitions": {
|
|
"key": {
|
|
"in": "header",
|
|
"name": "x-item-token",
|
|
"type": "apiKey"
|
|
}
|
|
},
|
|
"swagger": "2.0"
|
|
}
|