Hello,
I am using your library and I really like it! However, I have noticed if you have the following property:
"session": {
"type": "string",
"enum": [
"NORMAL",
"AM",
"PM",
"SEAMLESS"
]
}
Then it doesn't generate something like:
class Session(Enum):
Normal = "NORMAL"
...
Would this be possible to implement, as it's part of the JSON Schema format?
Hello,
I am using your library and I really like it! However, I have noticed if you have the following property:
Then it doesn't generate something like:
Would this be possible to implement, as it's part of the JSON Schema format?