We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example:
This schema
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "myField": { "type": "string", "description": "This is myField, not yours." } } }
produces
/** * This is myField, not yours. * */ @JsonProperty("myField") @JsonPropertyDescription("") private String myField;
but should have @JsonPropertyDescription("This is myField, not yours.")
@JsonPropertyDescription("This is myField, not yours.")
The text was updated successfully, but these errors were encountered:
fixes joelittlejohn#655
6a673c6
Merge pull request #656 from bhaesler/issue-655
370d838
#655 @JsonPropertyDescription fix
Add tests for JsonPropertyDescription value
2617a45
For joelittlejohn#655.
No branches or pull requests
Example:
This schema
produces
but should have
@JsonPropertyDescription("This is myField, not yours.")
The text was updated successfully, but these errors were encountered: