⛩️ Powerful yet Minimal Nix Dependency Manager
flake flakes home-manager nixos go nix dependency dependencies

docs: add json schema for reference

fuwn.net 0e4ab652 25b868f9

verified
+22
+22
yae.schema.json
···
··· 1 + { 2 + "$schema": "http://json-schema.org/draft-07/schema#", 3 + "type": "object", 4 + "properties": { "$schema": { "type": "string" } }, 5 + "additionalProperties": { 6 + "type": "object", 7 + "required": ["url", "sha256", "unpack", "type"], 8 + "additionalProperties": false, 9 + "properties": { 10 + "url": { "type": "string" }, 11 + "sha256": { "type": "string" }, 12 + "unpack": { "type": "boolean" }, 13 + "type": { "type": "string" }, 14 + "version": { "type": "string" }, 15 + "url_template": { "type": "string" }, 16 + "tag_predicate": { "type": "string" }, 17 + "trim_tag_prefix": { "type": "string" }, 18 + "pinned": { "type": "boolean" }, 19 + "force": { "type": "boolean" } 20 + } 21 + } 22 + }