我们正在使用swagger-codegen / openapi-codegen生成我们的API。
我希望我的API使用"application/xml"
和要从xsd方案生成的请求正文。
当我消费application/json
时
我的帖子代码如下:
parameters:
- in: "body"
name: "body"
description: "Request Object For Adding User"
required: true
schema:
$ref: "#/definitions/User"
虽然我有定义
definitions:
User:
type: "object"
required:
- "name"
- "email"
properties:
name:
type: "string"
example: "john"
email:
type: "string"
example: "john@gmail.com"
有些想法我可以实现吗?