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
the jackson module configuration supports a type-format subelement
from issue #1197 a try and while it's working fine for properties of the listed types, it doesn't seem to affect the types of array items. What I had expected is that
"aListOfUUIDs": {
"description": "A list of UUIDs.",
"type": "array",
"items": {
"type": "string"
"format": "uuid" // this one seems to be missing at the moment
}
}
As always, I cannot rule out that I'm doing it wrong 😉 but I suspect that this would be a new feature?
The text was updated successfully, but these errors were encountered:
Hello Ryan,
I gave the feature
from issue #1197 a try and while it's working fine for properties of the listed types, it doesn't seem to affect the types of array items. What I had expected is that
would turn
List<UUID> aListOfUUIDs
into this
As always, I cannot rule out that I'm doing it wrong 😉 but I suspect that this would be a new feature?
The text was updated successfully, but these errors were encountered: