> [!IMPORTANT]
> Merging this pull request will create this release
## Features
### Adding support for named integer enums
#1214 by @barrybarrette
Adding support for named integer enums via an optional extension,
`x-enum-varnames`.
This extension is added to the schema inline with the `enum` definition:
```
"MyEnum": {
"enum": [
0,
1,
2,
3,
4,
5,
6,
99
],
"type": "integer",
"format": "int32",
"x-enum-varnames": [
"Deinstalled",
"Installed",
"Upcoming_Site",
"Lab_Site",
"Pending_Deinstall",
"Suspended",
"Install_In_Progress",
"Unknown"
]
}
```
The result:

Co-authored-by: knope-bot[bot] <152252888+knope-bot[bot]@users.noreply.github.com>