You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A crash occurs within the XML tree library when an enumDescription / LongDescription key does not match a value in the enum list. While this is an error in the input, it would be helpful for the tool to validate that description entries match up with enum values. This can be easily reproduced using the test.json file in the repo, such as:
"ThingType": "RackMount | Cheap | Expensive | Obsolete | Trendy",
"ThingType!enumDescriptions": {
"RackMount": "tmp",
"SUPERCHEAP": "THIS VALUE DOES NOT MATCH A DEFINED ENUMERATION!",
"Expensive": "tmp2",
"Obsolete": "tmp3",
"Trendy": "tmp4"
},
The text was updated successfully, but these errors were encountered:
A crash occurs within the XML tree library when an enumDescription / LongDescription key does not match a value in the enum list. While this is an error in the input, it would be helpful for the tool to validate that description entries match up with enum values. This can be easily reproduced using the test.json file in the repo, such as:
The text was updated successfully, but these errors were encountered: