我需要在 Swagger 中显示“可为空:true”,其中请求正文的一个字段可以为空并且有条件地需要。
我试过以下注释。但无济于事
[RequiredIfAttribute( "IdentificationType", IdentificationType.GROUP_MEMBER )]
[JsonProperty( Required = Required.AllowNull )]
public Title? PassengerTitle
标题是枚举,RequiredIfAttribute 是自定义属性。
我也尝试创建SchemaFilter基于ISchemaFilter
也不知道在哪里添加得到提示
Hier 是我的意思的示例屏幕