From df6810db22d07166552f096b1fe0dd351aeb6d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Luka=C5=A1=C3=ADk?= Date: Mon, 10 Apr 2023 18:45:13 +0200 Subject: [PATCH] Implement xsd:time Fixes #63 --- pkg/xsd/types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/xsd/types.go b/pkg/xsd/types.go index 27e76ea..47c8e02 100644 --- a/pkg/xsd/types.go +++ b/pkg/xsd/types.go @@ -267,6 +267,12 @@ var staticTypes = map[string]staticType{ "ID": "string", "positiveInteger": "uint64", "unsignedInt": "uint64", + "gYear": "string", + "gYearMonth": "string", + "gMonthDay": "string", + "gDay": "string", + "gMonth": "string", + "time": "string", } func StaticType(name string) staticType {