aboutsummaryrefslogtreecommitdiff
path: root/yae.schema.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-12-03 04:23:53 +0000
committerFuwn <[email protected]>2024-12-03 04:23:53 +0000
commit4be6e521f639617fefda4c3f32dda41aa36199f6 (patch)
treeeeb481a9fb2ad8756812b827f0f10294afa65226 /yae.schema.json
parentfix(init): initialise base empty environment on init command (diff)
downloadyae-4be6e521f639617fefda4c3f32dda41aa36199f6.tar.xz
yae-4be6e521f639617fefda4c3f32dda41aa36199f6.zip
feat(yae): track sri hash field for sources
Diffstat (limited to 'yae.schema.json')
-rw-r--r--yae.schema.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/yae.schema.json b/yae.schema.json
index 04a0e75..d0c1e22 100644
--- a/yae.schema.json
+++ b/yae.schema.json
@@ -4,11 +4,12 @@
"properties": { "$schema": { "type": "string" } },
"additionalProperties": {
"type": "object",
- "required": ["url", "sha256", "unpack", "type"],
+ "required": ["url", "sha256", "hash", "unpack", "type"],
"additionalProperties": false,
"properties": {
"url": { "type": "string" },
"sha256": { "type": "string" },
+ "hash": { "type": "string" },
"unpack": { "type": "boolean" },
"type": { "type": "string" },
"version": { "type": "string" },