问题描述
如何在烧瓶restx 中创建一个带其他属性的字符串字段的Enum api模型,以便在swagger.yml中生成以下描述?
deFinitions:
Colors:
type: string
enum: [black,white,red,green,blue]
也许一些技巧会有所帮助? 因为现在看来您可以创建仅具有属性的api模型
解决方法
哦,所以我找到了解决问题的方法)
自我回答,大声笑
您可以通过json模式描述定义api模型: https://flask-restx.readthedocs.io/en/latest/marshalling.html#define-model-using-json-schema
colors_api_model = api.schema_model('Colors',{
'enum':
['black','white','red','green','blue'],'type': 'string'
})