-
Notifications
You must be signed in to change notification settings - Fork 0
Branch main Contract ObservedState
github-actions[bot] edited this page Mar 22, 2026
·
105 revisions
Source: specs/contracts/ObservedState.schema.json on branch main
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ObservedState",
"description": "Snapshot of real system configuration at observation time",
"type": "object",
"properties": {
"sourceFile": {
"type": "string",
"description": "Path to the configuration file that was observed"
},
"data": {
"type": "object",
"description": "The raw parsed configuration data"
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp of when the observation was taken"
}
},
"required": ["sourceFile", "data", "timestamp"],
"additionalProperties": false
}