Skip to content

Commit cda1c32

Browse files
authored
Fixed wrong type for gYearMonth and gMonthDay (#293)
* Fix wrong type for gYearMonth * Fix wrong type for gYearMonth * Fix wrong type for gMonthDay
1 parent d4db3f2 commit cda1c32

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/resources/config/xsd_types.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ xsd_types:
2121
float: "float"
2222
gDay: "string"
2323
gMonth: "string"
24-
gMonthDay: "int"
24+
gMonthDay: "string"
2525
gYear: "string"
26-
gYearMonth: "int"
26+
gYearMonth: "string"
2727
hexBinary: "string"
2828
int: "int"
2929
integer: "int"

tests/resources/xsd_types.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ xsd_types:
2121
float: "float"
2222
gDay: "string"
2323
gMonth: "string"
24-
gMonthDay: "int"
24+
gMonthDay: "string"
2525
gYear: "string"
26-
gYearMonth: "int"
26+
gYearMonth: "string"
2727
hexBinary: "string"
2828
int: "int"
2929
integer: "int"

0 commit comments

Comments
 (0)