20 lines
574 B
JSON
20 lines
574 B
JSON
{
|
|
"openapi": "3.0.3",
|
|
"info": {
|
|
"title": "Events API",
|
|
"description": "REST API für events Verwaltung",
|
|
"version": "1.0.0",
|
|
"contact": { "name": "Meldestelle Development Team" }
|
|
},
|
|
"servers": [
|
|
{ "url": "http://localhost:8080", "description": "Entwicklungs-Server" },
|
|
{ "url": "https://api.meldestelle.at", "description": "Produktions-Server" }
|
|
],
|
|
"paths": {},
|
|
"components": {
|
|
"securitySchemes": {
|
|
"bearerAuth": { "type": "http", "scheme": "bearer", "bearerFormat": "JWT" }
|
|
}
|
|
},
|
|
"security": [ { "bearerAuth": [] } ]
|
|
} |