mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-13 01:41:48 +08:00
62 lines
1.2 KiB
JSON
62 lines
1.2 KiB
JSON
|
{
|
||
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
||
|
"type": "object",
|
||
|
"definitions": {
|
||
|
"sha256": {
|
||
|
"type": "string",
|
||
|
"pattern": "[A-Z0-9]{64}"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"Applications",
|
||
|
"VBoxExtensions"
|
||
|
],
|
||
|
"properties": {
|
||
|
"Applications": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"Name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"TestCommand": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"DmgUrl": {
|
||
|
"type": "string",
|
||
|
"format": "uri"
|
||
|
},
|
||
|
"Sha256": {
|
||
|
"$ref": "#/definitions/sha256"
|
||
|
},
|
||
|
"InstallerPath": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"VBoxExtensions": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"Name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"FullName": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"Url": {
|
||
|
"type": "string",
|
||
|
"format": "uri"
|
||
|
},
|
||
|
"Sha256": {
|
||
|
"$ref": "#/definitions/sha256"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|