oaph 0.2.0

Helps to subtituate query params and schema definitions to openapi3/asyncapi yaml
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
openapi: 3.0.0
info:
  title: Example
  version: 1.0.0
paths:
  /insert:
    post:
      description: some description
      parameters:
        {{Request}}
      responses:
        '201':
          description: successfully created
          content:
            application/json:
              {{Response}}
definitions:
  {{oaph::definitions}}