Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
api-governance / spectral-lint (push) Has been cancelled
26 lines
746 B
JSON
26 lines
746 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "trust-weighting@draft",
|
|
"type": "object",
|
|
"properties": {
|
|
"weights": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"source": { "type": "string", "minLength": 1 },
|
|
"weight": { "type": "number" },
|
|
"justification": { "type": ["string", "null"] },
|
|
"updated_at": { "type": "string", "format": "date-time" }
|
|
},
|
|
"required": ["source", "weight", "updated_at"],
|
|
"additionalProperties": false
|
|
},
|
|
"minItems": 1
|
|
},
|
|
"profile_hash": { "type": "string", "minLength": 1 }
|
|
},
|
|
"required": ["weights", "profile_hash"],
|
|
"additionalProperties": false
|
|
}
|