我正在django中使用drf-yasg软件包来生成文档。我想以序列化程序的组合形式提供响应。我将类型用作OBJECT并定义其属性。我不知道该怎么做。
我的代码:
openapi.Schema(type=openapi.TYPE_OBJECT, properties={'top_suggestions': top_schema,'mentors_suggestions': UserSkillSerializer})
此处top_schema
是手动定义的架构,mentor_suggestions
将采用从UserSkillSerializer
生成的架构。