Upgrade request analysis routing

This commit is contained in:
Andraxion 2026-06-27 01:44:11 -04:00
parent 1cd446bae8
commit db3e080640
19 changed files with 1520 additions and 66 deletions

View file

@ -18,6 +18,70 @@
"type": "string",
"minLength": 1
},
"routing": {
"type": "object",
"additionalProperties": false,
"properties": {
"summary": {
"type": "string"
},
"ambiguity": {
"type": "string",
"enum": ["low", "medium", "high"]
},
"matchedTerms": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"suggestedTags": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"suggestedSystems": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"suggestedModules": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"rationale": {
"type": "string"
},
"possibleDirections": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
},
"kbSections": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true
}
}
},
"items": {
"type": "array",
"minItems": 1,