Type关键字是JSON Schema
的基础。它用来指定schema的数据格式。
关键字type的值可以是string,也可以是array:
这是一个简单的例子:
{ "type": "number" } // a schema
42 // success
42.1 // success
"42" // failure
这是一个以数组作为type的值的例子:
{ "type": ["number", "string"] } // a schema
42 // success
"This is a string." // success
["this", "is", "a", "array"] // failure