如何从已定义的MSON中省略属性?我使用MSON定义了一个简单的实体(对象):
Article
我在几个api端点使用id
对象。问题是我不希望在发布新文章时指定POST
,因此我想在Article
方法的文档中省略它。是否可以在所有端点中包含hello
实体并说明我想省略哪些字段?
答案 0 :(得分:2)
实际上没有办法如何做到这一点。 您有两种选择:
使用属性id
nullable
在没有Article
的情况下声明id
,然后从Article
继承并附加id
。
# Data Structures ## Article (object) + name: My first article (string) ## ArticleInstance (Article) + id (number) ## Articles [/articles] ### Get all articles [GET] Get all articles available on this website. + Response 200 (application/json) + Attributes (array[Article]) ### Create an article [POST] Create new article. + Request (application/json) + Attributes (Article)