{ "$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 }