25 lines
752 B
JSON
25 lines
752 B
JSON
{
|
|
"$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 }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|