X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=enrichment-coordinator-service%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fenrichment%2Fcontrollers%2Fconsumer%2FConsumerEiJobInfo.java;fp=enrichment-coordinator-service%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fenrichment%2Fcontrollers%2Fconsumer%2FConsumerEiJobInfo.java;h=515c61698eaf08c8f1a8cdd5224df1f644ec8582;hb=ebf3211ddd6e634ca9c0a2fec56abd1f12c7625d;hp=08d3caea95e55b570478243e60b8e697d21e163b;hpb=6f86ab364ac739951556bf2d5bf70429b518de47;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiJobInfo.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiJobInfo.java index 08d3caea..515c6169 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiJobInfo.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/consumer/ConsumerEiJobInfo.java @@ -32,14 +32,14 @@ import org.immutables.gson.Gson; @ApiModel(value = "ei_job_info", description = "Information for a Enrichment Information Job") public class ConsumerEiJobInfo { - @ApiModelProperty(value = "Identity of the owner of the job") + @ApiModelProperty(value = "Identity of the owner of the job", required = true) @SerializedName("owner") - @JsonProperty("owner") + @JsonProperty(value = "owner", required = true) public String owner; - @ApiModelProperty(value = "EI Type specific job data") + @ApiModelProperty(value = "EI Type specific job data", required = true) @SerializedName("job_data") - @JsonProperty("job_data") + @JsonProperty(value = "job_data", required = true) public Object jobData; public ConsumerEiJobInfo() {