-
-
Notifications
You must be signed in to change notification settings - Fork 422
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Is your feature request related to a problem? Please describe.
JSON schema spec supports "deprecated" metadata, but datamodel-code-generator doesn't respect it and doesn't generate any dataclass code with deprecated annotations.
Describe the solution you'd like
from typing_extensions import deprecated
# dataclass-level deprecation
@deprecated("comment")
@dataclass
class DataclassType:
field: TypeThere are no Python support for marking a dataclass field as deprecated natively, so that might need a custom solution (lower priority).
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers