{
  "openapi": "3.0.0",
  "info": {
    "title": "realtime-wss",
    "version": "0.0.1",
    "description": "Realtime Websocket",
    "contact": {
      "name": "Antonio Ramón Sánchez Morales",
      "email": "antonioramonsm@gmail.com"
    }
  },
  "paths": {
    "/ping": {
      "get": {
        "x-controller-name": "PingController",
        "x-operation-name": "ping",
        "tags": [
          "PingController"
        ],
        "responses": {
          "200": {
            "description": "Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PingResponsess"
                }
              }
            }
          }
        },
        "operationId": "PingController.ping"
      }
    }
  },
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "description": "Token retrieved by login operation \"format = Bearer token\"",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    },
    "schemas": {
      "PingResponsess": {
        "type": "object",
        "title": "PingResponsess",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://realtime.handball.ai/api"
    }
  ]
}