-
Notifications
You must be signed in to change notification settings - Fork 0
Branch main Contract ModuleManifest
Jim Daley edited this page Apr 11, 2026
·
104 revisions
| Field | Value |
|---|---|
| Branch | main |
| Source | specs/contracts/ModuleManifest.schema.json |
| Commit | 8ea5fdb8c6d9 |
| Synced (UTC) | 2026-04-11T21:36:56Z |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ModuleManifest",
"description": "Module metadata for Aeostara downstream conformance and execution modules.",
"type": "object",
"properties": {
"moduleID": {
"type": "string"
},
"displayName": {
"type": "string"
},
"version": {
"type": "string"
},
"semanticRole": {
"type": "string",
"enum": [
"STATE_NORMALIZATION",
"STATE_MAPPING",
"DIAGNOSTICS",
"CLASSIFICATION",
"RECOVERY_PLANNING",
"EXECUTION",
"FALLBACK",
"CONTAINMENT",
"SAFE_HALT",
"AUDIT"
]
},
"supportedTargets": {
"type": "array",
"items": {
"type": "string"
}
},
"notes": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["moduleID", "displayName", "version", "semanticRole", "supportedTargets"],
"additionalProperties": false
}