From 9530d90fc8c1d13158808de292c7357a7db61a71 Mon Sep 17 00:00:00 2001 From: zhaoyuan17 Date: Tue, 14 Dec 2021 19:58:29 +0000 Subject: [PATCH] Add unremoveable, singleUser Signed-off-by: zhaoyuan17 --- configcheck/configSchema_rich.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/configcheck/configSchema_rich.json b/configcheck/configSchema_rich.json index 072d1186..429e69f2 100644 --- a/configcheck/configSchema_rich.json +++ b/configcheck/configSchema_rich.json @@ -33,7 +33,9 @@ "relatedBundleName", "smartWindowSize", "smartWindowDeviceType", - "targetBundleList" + "targetBundleList", + "unremoveable", + "singleUser" ] }, "properties": { @@ -148,6 +150,14 @@ "items": { "type": "string" } + }, + "unremoveable": { + "description": "Specifies whether the application can be uninstalled. If this attribute is set to true, the application can be uninstalled.", + "type": "boolean" + }, + "singleUser": { + "description": "Specifies whether the application is multi-instance according to the memory situation. If this attribute is set to true, the application is system application.", + "type": "boolean" } } }, -- Gitee