2023-03-24 23:17:55 +01:00
|
|
|
{
|
2024-03-12 16:22:35 +01:00
|
|
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
2023-03-24 23:17:55 +01:00
|
|
|
"$id": "https://sysupgrade.openwrt.emissary.cadoles.com/spec.json",
|
|
|
|
"title": "SysUpgradeSpec",
|
|
|
|
"description": "Emissary 'SysUpgrade' specification",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"url": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"sha256sum": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"version": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
2024-03-12 16:22:35 +01:00
|
|
|
"required": [
|
|
|
|
"url",
|
|
|
|
"sha256sum",
|
|
|
|
"version"
|
|
|
|
],
|
2023-03-24 23:17:55 +01:00
|
|
|
"additionalProperties": false
|
|
|
|
}
|