Skip to content

Commit

Permalink
Merge pull request #79 from isimluk/fix-51
Browse files Browse the repository at this point in the history
Implement xsd:negativeInteger
  • Loading branch information
isimluk authored Apr 10, 2023
2 parents 14c79f2 + 5cd948e commit 9a0c6f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/xsd/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ var staticTypes = map[string]staticType{
"int": "int",
"integer": "int64",
"long": "int64",
"nonNegativeInteger": "int",
"negativeInteger": "int64",
"nonNegativeInteger": "uint64",
"anyURI": "string",
"double": "float64",
"decimal": "float64", // no: http://books.xmlschemata.org/relaxng/ch19-77057.html
Expand Down

0 comments on commit 9a0c6f5

Please sign in to comment.