-
Notifications
You must be signed in to change notification settings - Fork 0
Support for Enumerations #3
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Would it be possible to add support for the Enum? Since it can be super useful in communicating states, I'd like to be able to define a schema like:
status = TaskStatus
where TaskStatus is an Enum defined as:
class TaskStatus(Enum):
UNASSIGNED = 0
ONGOING = 1
COMPLETED = 2
ON_HOLD = 3
QUEUED = 4
CANCELLED = -1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers