We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ff07ff commit 09242d0Copy full SHA for 09242d0
src/main/java/eu/europa/ted/eforms/sdk/entity/v1/SdkFieldV1.java
@@ -34,6 +34,16 @@ public SdkFieldV1(
34
getRepeatable(repeatable));
35
}
36
37
+ // In SDK 1.x, "measure" semantically means "duration" (there was no "duration" type yet).
38
+ @Override
39
+ public String getType() {
40
+ String type = super.getType();
41
+ if ("measure".equals(type)) {
42
+ return "duration";
43
+ }
44
+ return type;
45
46
+
47
protected static String getCodelistId(Map<String, Map<String, String>> codelist) {
48
if (codelist == null) {
49
return null;
0 commit comments