script/mac/modulecheck/configuration.json
2025-01-21 14:32:39 +08:00

46 lines
1.0 KiB
JSON
Executable File

{
"title": "JSON schema for configuration.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"configuration": {
"description": "Indicates the configuration.",
"type": "object",
"propertyNames": {
"enum": [
"fontSizeScale",
"fontSizeMaxScale"
]
},
"required": [
],
"properties": {
"fontSizeScale": {
"description": "Specifies whether the font size of the application follow the system settings.",
"type": "string",
"enum": [
"followSystem",
"nonFollowSystem"
]
},
"fontSizeMaxScale": {
"description": "Indicates the max font size scale of application.",
"type": "string",
"enum": [
"1",
"1.15",
"1.3",
"1.45",
"1.75",
"2",
"3.2"
]
}
}
}
},
"required": [
"configuration"
]
}