Initialize repository snapshot
This commit is contained in:
23
spec/sentinel/verifier_manifest.schema.json
Normal file
23
spec/sentinel/verifier_manifest.schema.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"$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" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user