diff --git a/configcheck/configSchema_lite.json b/configcheck/configSchema_lite.json index 3dd81e8d5a141b385c56e086a45189a885192f2c..3c2f30c5793286e950b6d2c1c60a8d0ed6c6203f 100644 --- a/configcheck/configSchema_lite.json +++ b/configcheck/configSchema_lite.json @@ -288,7 +288,9 @@ "label", "visible", "deviceCapability", - "resizeable" + "resizeable", + "srcLanguage", + "srcPath" ] }, "properties": { @@ -339,6 +341,20 @@ "resizeable": { "description": "Indicates whether the ability supports the multi-window feature.", "type": "boolean" + }, + "srcLanguage": { + "description": "Type of the ability development language. The value can be java, js, or ets.The label cannot be defaulted.", + "type": "string", + "enum": [ + "java", + "js", + "ets" + ] + }, + "srcPath": { + "description": "This tag indicates the JS component code path corresponding to the ability. The tag value is a character string.", + "type": "string", + "maxLength": 127 } } } diff --git a/configcheck/configSchema_rich.json b/configcheck/configSchema_rich.json index 57ceabbed9137c7714dcadfe32880c38642e864c..c5637f1e8e473da038237d8e47af53cf697ceae5 100644 --- a/configcheck/configSchema_rich.json +++ b/configcheck/configSchema_rich.json @@ -1283,7 +1283,9 @@ "formsEnabled", "forms", "deviceCapability", - "resizeable" + "resizeable", + "srcLanguage", + "srcPath" ] }, "required": [ @@ -1325,7 +1327,9 @@ "formsEnabled", "forms", "deviceCapability", - "resizeable" + "resizeable", + "srcLanguage", + "srcPath" ] }, "required": [ @@ -1368,7 +1372,9 @@ "formsEnabled", "forms", "deviceCapability", - "resizeable" + "resizeable", + "srcLanguage", + "srcPath" ] }, "required": [ @@ -1409,7 +1415,9 @@ "formsEnabled", "forms", "deviceCapability", - "resizeable" + "resizeable", + "srcLanguage", + "srcPath" ] }, "required": [ @@ -1877,6 +1885,20 @@ "description": "Indicates whether the ability supports the multi-window feature.", "type": "boolean" }, + "srcLanguage": { + "description": "Type of the ability development language. The value can be java, js, or ets.The label cannot be defaulted.", + "type": "string", + "enum": [ + "java", + "js", + "ets" + ] + }, + "srcPath": { + "description": "This tag indicates the JS component code path corresponding to the ability. The tag value is a character string.", + "type": "string", + "maxLength": 127 + }, "forms": { "description": "This tag identifies the embedded card attribute of the capability. This tag is valid only when formsEnabled is set to true. This tag can be left blank by default.", "type": "array",