0

我正在尝试为 OpenAPI 编写配置,以解决这样的请求: http: //127.0.0.1 :5000/api/v1/statistics?stratifications=color,blue,bodytype,normal 或 http://127.0.0.1: 5000/api/v1/statistics?stratifications=color,blue,bodytype,normal,height,170 或只是 http://127.0.0.1:5000/api/v1/statistics?stratifications=color,grey

进入将传递给我的函数的对象。这就是我在配置中写的:

    get:
      tags: [statistics]
      operationId: api.v1.statistics.endpoints.get_statistics
      {% if not disable_security %}
      security:
        - jwt: [statistics]
        {% endif %}

      parameters:
        - in: query
          name: stratifications
          description: Stratifications of statistic
          schema:
            type: object
          style: form
          explode: false

但这会导致

is not of type 'object'

jsonschema 中的错误,因为 jsonschema 期望字典和获取字符串color,blue,bodytype,normal,height,170。有没有办法在那里添加编码器?我虽然风格定义了编码器,但似乎并非如此。

4

0 回答 0