Skip to content

Commit

Permalink
fix double schema
Browse files Browse the repository at this point in the history
  • Loading branch information
DC2-DanielKrueger committed Dec 12, 2024
1 parent 6bdb94a commit 853ccb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public static void populatePropertiesForBuiltinType(
return;
case Double:
nestedPropertiesNode.set("type", new TextNode("number"));
nestedPropertiesNode.set(MINIMUM_KEY_WORD, new DoubleNode(Double.MIN_VALUE));
nestedPropertiesNode.set(MINIMUM_KEY_WORD, new DoubleNode(-Double.MAX_VALUE));
nestedPropertiesNode.set(MAXIMUM_KEY_WORD, new DoubleNode(Double.MAX_VALUE));
return;
case QualifiedName:
Expand Down

0 comments on commit 853ccb9

Please sign in to comment.