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%2Fr1producer%2FProducerInfoTypeInfo.java;h=b0375c242a6c3167dec38d478ef7cb2bb61215e2;hb=refs%2Fchanges%2F60%2F6660%2F1;hp=0e066bc9356a88511e789a3c09006ec3fb074509;hpb=8fd8e9fc86a24be49d61841e381423120a41296d;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1producer/ProducerInfoTypeInfo.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1producer/ProducerInfoTypeInfo.java index 0e066bc9..b0375c24 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1producer/ProducerInfoTypeInfo.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/r1producer/ProducerInfoTypeInfo.java @@ -36,8 +36,17 @@ public class ProducerInfoTypeInfo { @JsonProperty(value = "info_job_data_schema", required = true) public Object jobDataSchema; - public ProducerInfoTypeInfo(Object jobDataSchema) { + @Schema( + name = "info_type_information", + description = "Type specific information for the information type", + required = true) + @SerializedName("info_type_information") + @JsonProperty(value = "info_type_information", required = true) + public Object typeSpecificInformation; + + public ProducerInfoTypeInfo(Object jobDataSchema, Object typeSpecificInformation) { this.jobDataSchema = jobDataSchema; + this.typeSpecificInformation = typeSpecificInformation; } public ProducerInfoTypeInfo() {