more enum normalizing

This commit is contained in:
Keith Jackson 2023-11-18 19:18:26 -08:00
parent 09d6a8b757
commit ee6bd96f49
2 changed files with 12 additions and 9 deletions

View File

@ -2,15 +2,7 @@
"type": "object", "type": "object",
"properties": { "properties": {
"symbol": { "symbol": {
"type": "string", "$ref": "./WaypointModifierSymbol.json"
"description": "The unique identifier of the modifier.",
"enum": [
"STRIPPED",
"UNSTABLE",
"RADIATION_LEAK",
"CRITICAL_LIMIT",
"CIVIL_UNREST"
]
}, },
"name": { "name": {
"type": "string", "type": "string",

View File

@ -0,0 +1,11 @@
{
"type": "string",
"description": "The unique identifier of the modifier.",
"enum": [
"STRIPPED",
"UNSTABLE",
"RADIATION_LEAK",
"CRITICAL_LIMIT",
"CIVIL_UNREST"
]
}