Files
vm-core/spec/sentinel/verifier_manifest.schema.json
2025-12-27 00:10:32 +00:00

24 lines
837 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "VaultMesh Sentinel v1 Verifier Manifest (verifier_manifest.json)",
"type": "object",
"additionalProperties": false,
"required": ["format", "sentinel_version", "schema_version", "canonicalization_version"],
"properties": {
"format": { "type": "string", "const": "vm-sentinel-verifier-manifest-v1" },
"sentinel_version": { "type": "string" },
"schema_version": { "type": "string" },
"hash_algo": { "type": "string", "enum": ["blake3", "sha256"] },
"canonicalization_version": { "type": "string" },
"verifier": {
"type": "object",
"additionalProperties": true,
"properties": {
"name": { "type": "string" },
"version": { "type": "string" },
"sha256": { "type": "string" }
}
}
}
}