| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "GuiEditor", | |
| "type": "object", | |
| "additionalProperties": true, | |
| "properties": { | |
| "lastEditedApp": { | |
| "description": "The last edited app.", | |
| "type": "string" | |
| }, | |
| "lastEditedSetup": { | |
| "description": "The last edited setup.", | |
| "type": "string" | |
| }, | |
| "confirmExit": { | |
| "description": "Whether we ask if the setup is to be saved when trying to exit GuiEditor.", | |
| "type": "boolean", | |
| "default": false | |
| } | |
| }, | |
| "required": ["lastEditedApp"] | |
| } |