2
フィールドがオプションか必須かどうか、またデフォルトは何ですか?フィールドがオプションであるかどうかを指定する方法ですか?
フィールドがオプションか必須かどうか、またデフォルトは何ですか?フィールドがオプションであるかどうかを指定する方法ですか?
デフォルトでは、required
属性に入力しない限り、モデル内のフィールドはオプションです。ここでは一例である(ID、カテゴリは、オプションのフィールドです):
required:
- name
properties:
id:
type: integer
format: int64
category:
$ref: '#/definitions/Category'
name:
type: string
example: doggie
デフォルト値の場合、あなたは、単にdefault
属性を使用することができます。ここに例があります:
- type: object
properties:
huntingSkill:
type: string
description: The measured skill for hunting
default: lazy