-
Notifications
You must be signed in to change notification settings - Fork 0
Branch main Contract ModuleManifest
github-actions[bot] edited this page May 3, 2026
·
104 revisions
| Field | Value |
|---|---|
| Branch | main |
| Source | specs/contracts/ModuleManifest.schema.json |
| Commit | 12b5efbfe557 |
| Synced (UTC) | 2026-05-03T14:42:41Z |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ModuleManifest",
"description": "Downstream module mapping manifest.",
"type": "object",
"properties": {
"moduleManifestID": {
"type": "string"
},
"aeostaraVersion": {
"type": "string"
},
"modules": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"minItems": 1
},
"diagnosticReference": {
"$ref": "DiagnosticReference.schema.json"
}
},
"required": [
"moduleManifestID",
"aeostaraVersion",
"modules",
"diagnosticReference"
],
"additionalProperties": false
}