check in lexicons

This commit is contained in:
Samuel Newman
2025-04-30 21:15:55 +03:00
parent 727a696970
commit d5b5b21617
259 changed files with 13100 additions and 0 deletions
@@ -0,0 +1,39 @@
{
"lexicon": 1,
"id": "tools.ozone.setting.removeOptions",
"defs": {
"main": {
"type": "procedure",
"description": "Delete settings by key",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["keys", "scope"],
"properties": {
"keys": {
"type": "array",
"minLength": 1,
"maxLength": 200,
"items": {
"type": "string",
"format": "nsid"
}
},
"scope": {
"type": "string",
"knownValues": ["instance", "personal"]
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"properties": {}
}
}
}
}
}