• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "title": "JSON schema for theme-config.json",
3  "$schema": "http://json-schema.org/draft-07/schema#",
4  "type": "object",
5  "additionalProperties": true,
6  "required": [
7    "systemTheme"
8  ],
9  "propertyNames": {
10    "enum": [
11      "systemTheme"
12    ]
13  },
14  "properties": {
15    "systemTheme": {
16      "description": "Indicates the system theme of the module.",
17      "type": "string",
18      "enum": [
19          "$ohos:theme:ohos_theme"
20        ]
21    }
22  }
23}
24