Json Schema简介 (4)

{
"type": "string",
"enum": ["red", "amber", "green"]
}

上例的schema规定数据只能是一个string,且只能是"red"、"amber"、"green"之一。 ## 7.2 metadata > **关键字:title,description,default,example**

{
"title" : "Match anything",
"description" : "This is a schema that matches anything.",
"default" : "Default value",
"examples" : [
"Anything",
4035
]
}
```
只作为描述作用,不影响对数据的校验。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsfsxf.html