如何从定义的 MSON 中省略属性?我使用 MSON 定义了一个简单的实体(对象):
# Data Structures
## Article (object)
Represents an article
## Properties
+ id: 1 (number, optional)
+ name: My first article (string)
## 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)
我Article
在几个 api 端点中使用对象。问题是我不想id
在发布新文章时被指定,所以我想在POST
方法文档中省略它。是否可以在所有端点中包含Article
实体并说明我想省略哪些字段?