22 lines
274 B
JSON
22 lines
274 B
JSON
|
{
|
||
|
"enum-string": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"one",
|
||
|
"two",
|
||
|
"three"
|
||
|
]
|
||
|
},
|
||
|
"enum-integer": {
|
||
|
"type": "integer",
|
||
|
"enum": [
|
||
|
1,
|
||
|
2,
|
||
|
3
|
||
|
]
|
||
|
},
|
||
|
"enum-schemaerror": {
|
||
|
"type": "integer",
|
||
|
"enum": "1,2,3"
|
||
|
}
|
||
|
}
|