22 lines
527 B
JSON
22 lines
527 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"AppSettings": {
|
|
"type": "object",
|
|
"properties": {
|
|
"ScreenResolution": {
|
|
"type": "object",
|
|
"properties": {
|
|
"x": { "type": "integer" },
|
|
"y": { "type": "integer" }
|
|
},
|
|
"required": [ "x", "y" ]
|
|
},
|
|
"Fullscreen": { "type": "boolean" },
|
|
"Log" : {"type": "boolean"}
|
|
},
|
|
"Required": [ "ScreenResolution", "Fullscreen", "Log" ]
|
|
}
|
|
},
|
|
"Required" : ["AppSettings"]
|
|
} |