We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 537a32a commit 9dc5497Copy full SHA for 9dc5497
src/main/java/com/github/nramc/dev/journey/api/geojson/types/GeoJsonType.java
@@ -1,5 +1,6 @@
1
package com.github.nramc.dev.journey.api.geojson.types;
2
3
+import com.fasterxml.jackson.annotation.JsonValue;
4
import lombok.Getter;
5
6
@Getter
@@ -14,6 +15,7 @@ public enum GeoJsonType {
14
15
FEATURE("Feature"),
16
FEATURE_COLLECTION("FeatureCollection");
17
18
+ @JsonValue
19
private final String type;
20
21
GeoJsonType(String type) {
0 commit comments