Files
KArtSell.Aegis/docs/Design/kbx-foundation-v52-fe-operational-navigation-screen-anatomy/contracts/testing/kbx.test-evidence.schema.json
T
kjh2064 c41e5063b7 chore: remove kbx-foundation-v36 reference (superseded by v4 implementation)
Removed entire kbx-foundation-v36 directory as it's been replaced by
the new KBX Foundation v4 patterns implemented in this session:
- Registry-driven screen definitions
- Density-aware UI adapter components
- Feature module templates (ShadowRun, Models)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-08-12 01:39:58 +09:00

103 lines
1.8 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "KBX Scenario Evidence",
"type": "object",
"required": [
"scenarioId",
"runId",
"startedAt",
"contractVersions",
"environment",
"result",
"artifacts"
],
"properties": {
"scenarioId": {
"type": "string"
},
"runId": {
"type": "string"
},
"startedAt": {
"type": "string",
"format": "date-time"
},
"finishedAt": {
"type": "string",
"format": "date-time"
},
"result": {
"enum": [
"passed",
"failed",
"skipped"
]
},
"environment": {
"type": "object",
"required": [
"name",
"syntheticDataOnly"
],
"properties": {
"name": {
"type": "string"
},
"syntheticDataOnly": {
"const": true
},
"browser": {
"type": "string"
},
"database": {
"type": "string"
}
}
},
"contractVersions": {
"type": "object",
"required": [
"scenario",
"fixture"
],
"additionalProperties": {
"type": "string"
}
},
"correlationIds": {
"type": "array",
"items": {
"type": "string"
}
},
"artifacts": {
"type": "array",
"items": {
"type": "object",
"required": [
"type",
"path"
],
"properties": {
"type": {
"type": "string"
},
"path": {
"type": "string"
},
"sha256": {
"type": "string"
}
}
}
},
"notes": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}