Swagger.yml has everything under:
servers:
- url: https://localhost:5000/api/v1
Including the health endpoint - however health is available at:
https://localhost:5000/health
Health schema is also missing - should be:
/health:
get:
responses:
'200':
description: Health check endpoint
content:
application/json:
schema:
type: object
properties:
commit:
type: string
description: Git commit hash
version:
type: string
description: API version
Unsure if preference is to move health to the existing server path or update Swagger to match.