Skip to content

Commit

Permalink
wip: update to r50 - change schema to fit existing structure
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Mar 7, 2024
1 parent 53c763c commit 4f372b2
Showing 1 changed file with 13 additions and 19 deletions.
32 changes: 13 additions & 19 deletions src/$schemas/device.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,19 @@
"title": "Spreadsheet Gateway Config",
"type": "object",
"properties": {
"Settings": {
"type": "object",
"ui:title": "",
"properties": {
"FolderPath":
{
"ui:title": "Spreadsheet Folder Path",
"type": "string"
},
"DebugLogging":
{
"ui:title": "Activate Debug Logging",
"type": "boolean"
}
},
"required": ["FolderPath","DebugLogging"],
"additionalProperties": false
"folderPath": {
"ui:title": "Spreadsheet Folder Path",
"type": "string",
"default": "https://docs.google.com/spreadsheets/xxxxxxxx"
},
"debugLogging": {
"ui:title": "Activate Debug Logging",
"type": "boolean"
}
},
"required": ["Settings"],
"required": [
"FolderPath",
"DebugLogging"
],
"additionalProperties": false
}
}

0 comments on commit 4f372b2

Please sign in to comment.