Skip to content

Commit

Permalink
Implement xsd:negativeInteger
Browse files Browse the repository at this point in the history
Fixes: #51
  • Loading branch information
isimluk committed Apr 10, 2023
1 parent 14c79f2 commit 5cd948e
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 5cd948e

Please sign in to comment.