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
Is your feature request related to a problem? Please describe.
We've labeled our jsonschema objects with descriptions in field metadata:
project_name: Optional[str] = field(
default=None,
metadata={
"description": "Name of the root project",
},
)
It would be nice if we could do the same thing using mashumaro's json schema generation.
I guess we could post-process the jsonschema object instead. I see that it's also available in the json_schema["properties"] config, but I think that only works if you want to replace the complete json_schema which isn't feasible.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
We've labeled our jsonschema objects with descriptions in field metadata:
It would be nice if we could do the same thing using mashumaro's json schema generation.
I guess we could post-process the jsonschema object instead. I see that it's also available in the json_schema["properties"] config, but I think that only works if you want to replace the complete json_schema which isn't feasible.
The text was updated successfully, but these errors were encountered: