games-development-ai/contracts/play-loop/proof-action.schema.json
lili cbfd4d871b
Some checks failed
contract-gates / contract-gates (push) Has been cancelled
docs-gate / docs-gate (push) Has been cancelled
feat(acceptance): 闭合 playtest v3 与 A+ 可信消费链
固化 Match-3 生产者、视觉、音频与双 Judge 证据闭包。

将《山海行纪》r1.1 绑定新的不可变 release,并以生产预检现场核验 bundle、Registry/2 和 25 项 Writer 快照。

同步地图1平衡锁值、跨游戏回归修复、验收契约与 SoT 证据。
2026-07-28 20:16:13 -07:00

24 lines
1.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://wanxiang.ai/contracts/play-loop/proof-action.schema.json",
"title": "ProofActionV1",
"description": "ProofAction/1。Proof/Judge 可见的窄动作事实;不含 Actor request、selection、TargetSet、guide、pair plan、BoardIdentity 或 actionGroup。",
"type": "object",
"required": [
"schemaVersion", "actionId", "normalized", "preFrameRef", "preEventSeq",
"virtualTimeBudgetMs", "timeAdvance", "postFrameRef", "postEventSeq"
],
"properties": {
"schemaVersion": { "const": "ProofAction/1" },
"actionId": { "type": "string", "pattern": "^action-[1-9][0-9]*$" },
"normalized": { "$ref": "playtest-evidence.schema.json#/$defs/action" },
"preFrameRef": { "$ref": "playtest-evidence.schema.json#/$defs/frameRef" },
"preEventSeq": { "type": "integer", "minimum": 0 },
"virtualTimeBudgetMs": { "type": "integer", "minimum": 0 },
"timeAdvance": { "$ref": "playtest-evidence.schema.json#/$defs/timeAdvance" },
"postFrameRef": { "$ref": "playtest-evidence.schema.json#/$defs/frameRef" },
"postEventSeq": { "type": "integer", "minimum": 0 }
},
"additionalProperties": false
}