作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果字段是可选的或必需的,如何在 OpenAPI/Swagger 中定义,默认值是什么?
最佳答案
默认情况下,模型中的字段是可选的,除非您将它们放在 required
中。列表。下面是一个例子 - id
, category
是可选字段,name
是必须的。请注意 required
不是字段的属性,而是对象本身的属性 - 它是必需属性的列表。
type: object
required: # List the required properties here
- name
properties:
id:
type: integer
format: int64
category:
$ref: '#/definitions/Category'
name:
type: string
example: doggie
required
:
# swagger: '2.0'
parameters:
- in: body
name: body
required: true # <----
schema:
$ref: '#/definitions/Pet'
# openapi: 3.0.1
requestBody:
required: true # <----
content:
...
default
属性。下面是一个例子:
type: object
properties:
huntingSkill:
type: string
description: The measured skill for hunting
default: lazy
关于swagger - 如何在 OpenAPI/Swagger 中指定字段是可选的还是必需的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40113049/
我是一名优秀的程序员,十分优秀!