express-api/src/routes/health.swagger.yaml

Summary

Maintainability
Test Coverage
### PATHS ###
paths:
  /health:
    get:
      tags:
        - Health
      summary: Checks if the API is running and healthy.
      description: Checks if the API is running and healthy.
      responses:
        '200':
          description: OK
          content: 
            text/plain:
              schema:
                type: string
                example: '/health endpoint reached. API running.'
        '429':
          $ref: '#/components/responses/429TooManyRequests'