Browse Source

v1.0

master
Nicolas Massé 5 years ago
parent
commit
583f645c2f
  1. 17
      openapi.json

17
openapi.json

@ -2,7 +2,7 @@
"openapi": "3.0.2",
"info": {
"title": "Library API",
"version": "0.9.0",
"version": "1.0.0",
"description": "A simple API for managing authors and books.",
"contact": {
"name": "Nicolas MASSE",
@ -345,6 +345,19 @@
"publish-date": "01-01-1862"
}
}
},
"securitySchemes": {
"api-key": {
"type": "apiKey",
"name": "api-key",
"in": "header"
}
}
},
"security": [
{
"api-key": [
]
}
}
]
}
Loading…
Cancel
Save