mirror of https://gitee.com/bigwinds/arangodb
85 lines
1.8 KiB
JSON
85 lines
1.8 KiB
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"options": {
|
|
"oneOf": [
|
|
{
|
|
"oneOf": [
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"enum": [
|
|
"",
|
|
"foo"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"size": {
|
|
"enum": [
|
|
"2x4"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"value": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"name",
|
|
"size",
|
|
"value"
|
|
]
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"enum": [
|
|
"foo"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"size": {
|
|
"enum": [
|
|
"4x8"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"value": {
|
|
"type": "number",
|
|
"minimum": 11,
|
|
"maximum": 20
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"name",
|
|
"size",
|
|
"value"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"type": "string",
|
|
"pattern": "^[a-z]+$"
|
|
},
|
|
{
|
|
"type": "string",
|
|
"pattern": "^[A-Z]+$"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"name",
|
|
"options"
|
|
]
|
|
}
|