Skip to content

Commit

Permalink
Merge pull request #81 from isimluk/fix-60
Browse files Browse the repository at this point in the history
Implement xsd:IDREF
  • Loading branch information
isimluk authored Apr 10, 2023
2 parents 753c310 + 98d01c4 commit 1d78392
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/xsd/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ func (st staticType) compile(*Schema, *Element) {

var staticTypes = map[string]staticType{
"string": "string",
"language": "string",
"dateTime": "string",
"date": "string",
"base64Binary": "string",
Expand All @@ -265,6 +266,7 @@ var staticTypes = map[string]staticType{
"float": "float64",
"boolean": "bool",
"ID": "string",
"IDREF": "string",
"positiveInteger": "uint64",
"unsignedInt": "uint64",
"gYear": "string",
Expand Down

0 comments on commit 1d78392

Please sign in to comment.