mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-15 17:30:37 -06:00
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"definitions": {
|
|
"url": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
}
|
|
},
|
|
"patternProperties": {
|
|
"^[a-zA-Z_][a-zA-Z0-9_]*$": {
|
|
"type": "object",
|
|
"properties": {
|
|
"content": {
|
|
"type": "string"
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"category": {
|
|
"type": "string",
|
|
"enum": [
|
|
"Utilities",
|
|
"Document",
|
|
"Pro Tools",
|
|
"Multimedia Tools",
|
|
"Development",
|
|
"Games",
|
|
"Microsoft Tools",
|
|
"Browsers",
|
|
"Communications"
|
|
]
|
|
},
|
|
"choco": {
|
|
"type": "string"
|
|
},
|
|
"winget": {
|
|
"type": "string"
|
|
},
|
|
"link": {
|
|
"$ref": "#/definitions/url"
|
|
}
|
|
},
|
|
"required": [
|
|
"content",
|
|
"description",
|
|
"category",
|
|
"link",
|
|
"choco",
|
|
"winget"
|
|
],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|