NONRTRIC - ECS Persistent storage of EI Jobs 22/6022/1
authorPatrikBuhr <patrik.buhr@est.tech>
Mon, 10 May 2021 08:20:29 +0000 (10:20 +0200)
committerPatrikBuhr <patrik.buhr@est.tech>
Mon, 10 May 2021 08:22:21 +0000 (10:22 +0200)
Bugfix, a json attribute was not according to documentation.

Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
Issue-ID: NONRTRIC-478
Change-Id: Id2d6f4d071e51f3aeba4edd47c06faa79b35c3d9

enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1consumer/ConsumerInfoTypeInfo.java

index b3ef96a..d07356f 100644 (file)
@@ -32,7 +32,7 @@ import org.immutables.gson.Gson;
 public class ConsumerInfoTypeInfo {
 
     @Schema(name = "consumer_job_data_schema", description = "Json schema for the job data", required = true)
-    @SerializedName("consumer__job_data_schema")
+    @SerializedName("consumer_job_data_schema")
     @JsonProperty(value = "consumer_job_data_schema", required = true)
     public Object jobDataSchema;