init: company-haness 설계

This commit is contained in:
DongHyeonka
2026-07-23 17:49:00 +09:00
parent 57d1bab894
commit f668d6a158
962 changed files with 98989 additions and 1 deletions
@@ -0,0 +1,19 @@
{
"$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"]}
}
}