From 0d03d0fa284df9fa3c348528d75856f634232f22 Mon Sep 17 00:00:00 2001 From: Geoffrey Teale Date: Sat, 21 Sep 2024 06:10:07 +0200 Subject: [PATCH] Add unsignedLong and hexBinary static types --- pkg/xsd/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/xsd/types.go b/pkg/xsd/types.go index df1b575..59a78b2 100644 --- a/pkg/xsd/types.go +++ b/pkg/xsd/types.go @@ -279,10 +279,12 @@ var staticTypes = map[string]staticType{ "gDay": "string", "gMonth": "string", "time": "string", + "unsignedLong": "uint64", "unsignedShort": "uint16", "unsignedByte": "uint8", "short": "int16", "byte": "int8", + "hexBinary": "string", } func StaticType(name string) staticType {