{ "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "required": ["parent-workflow-id", "product-decision-id", "benchmark-ref", "benchmark-sha256", "experience-thesis", "target-users", "jobs-to-be-done", "value-proposition", "differentiation", "message-hierarchy", "success-metrics", "decision"], "properties": { "parent-workflow-id": {"type": "string", "minLength": 1}, "product-decision-id": {"type": "string", "minLength": 1}, "benchmark-ref": {"type": "string", "minLength": 1}, "benchmark-sha256": {"type": "string", "pattern": "^[0-9a-f]{64}$"}, "experience-thesis": {"type": "string", "minLength": 1}, "target-users": {"type": "array", "minItems": 1}, "jobs-to-be-done": {"type": "array", "minItems": 1}, "value-proposition": {"type": "string", "minLength": 1}, "differentiation": {"type": "array", "minItems": 1}, "message-hierarchy": {"type": "array", "minItems": 1}, "success-metrics": {"type": "array", "minItems": 1}, "decision": {"enum": ["proceed", "revise-benchmark", "stop"]} } }