GitHub Raw JSON API

the-benchmarker / web-frameworks

7,083 PHP

Which is the fastest web framework?

web-frameworks Specification

Located in java/light-4j/project/openapi.yaml on branch HEAD

3.x (YAML) YAML 0.7 KB
Raw YAML Specification
openapi: 3.0.0
info:
  version: 0.0.1
  title: The Benchmarker web-frameworks
servers:
  - url: "http://benchmarker.networknt.com"
paths:
  /:
    get:
      responses:
        "200":
          description: Empty response
  "/user/{id}":
    get:
      parameters:
        - name: id
          in: path
          required: true
          description: The id of the user
          schema:
            type: string
      responses:
        "200":
          description: The id of the user
          content:
            text/plain:
              schema:
                type: integer
                example: 123
  "/user":
    post:
      responses:
        "200":
          description: Empty response