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,15 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["source-contract", "schema-contract", "processing-semantics", "correctness", "performance", "recovery-tests", "lineage", "evidence-receipt-ids"],
"properties": {
"source-contract": {"type": "object", "required": ["owner", "version", "freshness-sla"]},
"schema-contract": {"type": "object", "required": ["grain", "primary-key", "schema-version", "evolution-policy"]},
"processing-semantics": {"type": "object", "required": ["delivery", "event-time", "watermark", "late-data-policy", "checkpointing"]},
"correctness": {"type": "object", "required": ["dedup", "reconciliation", "replay"]},
"performance": {"type": "object", "required": ["throughput", "latency", "cost-baseline"]},
"recovery-tests": {"type": "array", "minItems": 1},
"lineage": {"type": "array", "minItems": 1},
"evidence-receipt-ids": {"type": "array", "minItems": 1, "items": {"type": "string"}}
}
}