0
我試圖創建一個JSON模式爲現有的JSON文件看起來是這樣的一個名爲「類型」的屬性類型定義:創建使用JSON模式
{
"variable": {
"name": "age",
"type": "integer"
}
}
在架構,我想爲確保type
屬性的值爲string
或integer
:
{
"variable": {
"name": "string",
"type": {
"type": "string",
"enum": ["string", "integer"]
}
}
}
不幸的是它吹了消息:ValidationError {is not any of [subschema 0]...
。
我讀過JSON模式中有「無保留字」,所以我假設一種類型是有效的,假設我正確地聲明它?