Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions tests/module-manifest.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,13 @@
"$ref": "#/$defs/RoleEntry"
},
"description": "CR-003 (FR-040): mergeable role registry \u2014 capability tag -> {description}."
},
"lexicon": {
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/LexiconTermEntry"
},
"description": "FR-043: mergeable concrete-term lexicon \u2014 term -> {definition, optional category}. The EARS object-aware vague-response check (FR-042) consumes the merged keys as accepted concrete objects; the engine carries no hardcoded noun list."
}
},
"$defs": {
Expand Down Expand Up @@ -545,6 +552,23 @@
"minLength": 1
}
}
},
"LexiconTermEntry": {
"type": "object",
"required": [
"definition"
],
"additionalProperties": false,
"properties": {
"definition": {
"type": "string",
"minLength": 1
},
"category": {
"type": "string",
"minLength": 1
}
}
}
}
}