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=311b8a7d82e42b9d337239efcd87f4a90c10cf40;hb=f300194deee749427175a05ed4af8bd563447ba0;hp=0e066bc9356a88511e789a3c09006ec3fb074509;hpb=c675b454a3434d690695a7336700f78a51579400;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..311b8a7d 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 = false) + @SerializedName("info_type_information") + @JsonProperty(value = "info_type_information", required = false) + public Object typeSpecificInformation; + + public ProducerInfoTypeInfo(Object jobDataSchema, Object typeSpecificInformation) { this.jobDataSchema = jobDataSchema; + this.typeSpecificInformation = typeSpecificInformation; } public ProducerInfoTypeInfo() {