Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicilty set request body field example as null, instead of "string" or "null" #4401

Open
eldarj opened this issue May 12, 2023 · 0 comments

Comments

@eldarj
Copy link

eldarj commented May 12, 2023

Related to this swagger-api/swagger-inflector#371 and these PRs I suppose:

I'm using spring boot and I cannot set an example for a given field in a request body as explicitly null

For example:

    @Schema(description = "Some field")
    public String field

always ends up either as "string". I tried passing the defaultValue and nullable args to the annotation, but the best I could get is "null"

Actual:

{
  "field" : "string"
}

or

{
  "field" : "null"
}

Expected:

{
  "field" : null
}

How can I accomplish this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant