-
Notifications
You must be signed in to change notification settings - Fork 0
Branch main Contract ObservedSystemState
github-actions[bot] edited this page May 3, 2026
·
102 revisions
| Field | Value |
|---|---|
| Branch | main |
| Source | specs/contracts/ObservedSystemState.schema.json |
| Commit | 12b5efbfe557 |
| Synced (UTC) | 2026-05-03T14:42:41Z |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ObservedSystemState",
"description": "Platform-neutral observed system state.",
"type": "object",
"properties": {
"observedSystemStateID": {
"type": "string"
},
"documentReference": {
"$ref": "JsonDocumentReference.schema.json"
},
"surfaceDifferences": {
"type": "array",
"items": {
"$ref": "SurfaceDifference.schema.json"
},
"minItems": 0
},
"diagnosticReference": {
"$ref": "DiagnosticReference.schema.json"
}
},
"required": [
"observedSystemStateID",
"documentReference",
"surfaceDifferences",
"diagnosticReference"
],
"additionalProperties": false
}