script/win/modulecheck/themeConfig.json
2025-05-09 08:58:27 +08:00

24 lines
465 B
JSON

{
"title": "JSON schema for theme-config.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"required": [
"systemTheme"
],
"propertyNames": {
"enum": [
"systemTheme"
]
},
"properties": {
"systemTheme": {
"description": "Indicates the system theme of the module.",
"type": "string",
"enum": [
"$ohos:theme:ohos_theme"
]
}
}
}