diff --git a/src/main/java/org/etsi/osl/oas/model/ActionCharacteristic.java b/src/main/java/org/etsi/osl/oas/model/ActionCharacteristic.java index ad9a371549fe2158dab09a53a8826784806e12d3..c3157b9dfd1fb397ff54dddb1e59bc5e781a30f5 100644 --- a/src/main/java/org/etsi/osl/oas/model/ActionCharacteristic.java +++ b/src/main/java/org/etsi/osl/oas/model/ActionCharacteristic.java @@ -2,6 +2,7 @@ package org.etsi.osl.oas.model; import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.persistence.Column; import org.hibernate.annotations.GenericGenerator; import org.springframework.validation.annotation.Validated; @@ -16,7 +17,7 @@ import lombok.Data; * * */ -@Schema(description = "An ActionCharacteristic is an entity that describes the values of the characteristics of ana ction in a rule.") +@Schema(description = "An ActionCharacteristic is an entity that describes the values of the characteristics of an action in a rule.") @Validated @Entity(name = "OASActionCharacteristic") @@ -33,5 +34,6 @@ public class ActionCharacteristic { protected String name = null; @JsonProperty("value") + @Column(name = "\"value\"") protected String value = null; }