2

この YAML コードの swagger があり、独自の型 (MyOwnType という名前) を作成する必要があります。

「MyOwnType」を使用すると、コンパイル エラーが発生します。

paths:
  /in/total:
    get:
      summary: My summary.
      description: My description.

      parameters:
        - name: total
          in: query
          description: Total.
          required: true
          type: MyOwnType # -- THIS LINE OCCURS ERROR --
          format: MyOwnType
      responses:
        201:
          description: Respose
          schema:
            $ref: '#/definitions/MyOwnType'

definitions:
  MyOwnType:
    properties:
      var:
        type: string
        description: data.

「MyOwnType」という定義を作成しました。スキーマでは「$ref: '#/definitions/MyOwnType'」のように使用できます。

しかし、パラメーターの型で "MyOwnType" 定義を使用するにはどうすればよいでしょうか?

4

1 に答える 1