Initialize repository snapshot

This commit is contained in:
Vault Sovereign
2025-12-27 00:10:32 +00:00
commit 110d644e10
281 changed files with 40331 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "VaultMesh Sentinel v1 Integrity Manifest (integrity.json)",
"type": "object",
"additionalProperties": false,
"required": ["format", "hash_algo", "files"],
"properties": {
"format": { "type": "string", "const": "vm-sentinel-integrity-v1" },
"hash_algo": { "type": "string", "enum": ["blake3", "sha256"] },
"files": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["path", "digest"],
"properties": {
"path": { "type": "string" },
"digest": { "type": "string" },
"size_bytes": { "type": "integer", "minimum": 0 }
}
}
}
}
}