openapi: 3.1.0
info:
  title: Wunder Health API
  description: health API
  version: 1.0.0
  contact:
    name: Wunder Mobility GmbH
    url: 'https://wundermobility.com'
    email: info@wundermobility.com
  summary: Provides information about the global health of the Wunder platform
servers:
  - url: 'https://{environment}.api.gourban.services/v1/health'
    description: Wunder Health API
    variables:
      environment:
        default: go
        enum:
          - go
          - go-staging
tags:
  - name: Health
    description: Global health information
paths:
  /ping:
    get:
      summary: Ping Wunder platform
      description: Retrieve health information about the Wunder platform
      tags:
        - Health
      responses:
        '200':
          description: OK
          headers: {}
          content:
            application/json:
              schema:
                type: object
                x-examples:
                  Example 1:
                    status: UP
                properties:
                  status:
                    type: string
                    default: UP
                    readOnly: true
      operationId: ping
      x-stoplight:
        id: xh6lsji6pssnn
