@@ -156,6 +156,17 @@ public class MappingSet {
156156 @ Versionable (addedIn = Version .SSSOM_1_1 )
157157 private String similarityMeasure ;
158158
159+ @ JsonProperty ("curation_rule" )
160+ @ EntityReference
161+ @ Propagatable
162+ @ Versionable (addedIn = Version .SSSOM_1_1 )
163+ private List <String > curationRule ;
164+
165+ @ JsonProperty ("curation_rule_text" )
166+ @ Propagatable
167+ @ Versionable (addedIn = Version .SSSOM_1_1 )
168+ private List <String > curationRuleText ;
169+
159170 @ JsonProperty ("see_also" )
160171 @ SlotURI ("http://www.w3.org/2000/01/rdf-schema#seeAlso" )
161172 @ URI
@@ -310,6 +321,36 @@ public List<String> getObjectPreprocessing(boolean set) {
310321 return objectPreprocessing ;
311322 }
312323
324+ /**
325+ * Gets the list of curation_rule values, optionally
326+ * initializing the list if needed.
327+ *
328+ * @param set If {@code true}, the underlying field will be initialized to
329+ * an empty list if it happens to be {@code null}.
330+ * @return The list of curation_rule values.
331+ */
332+ public List <String > getCurationRule (boolean set ) {
333+ if ( curationRule == null && set ) {
334+ curationRule = new ArrayList <>();
335+ }
336+ return curationRule ;
337+ }
338+
339+ /**
340+ * Gets the list of curation_rule_text values, optionally
341+ * initializing the list if needed.
342+ *
343+ * @param set If {@code true}, the underlying field will be initialized to
344+ * an empty list if it happens to be {@code null}.
345+ * @return The list of curation_rule_text values.
346+ */
347+ public List <String > getCurationRuleText (boolean set ) {
348+ if ( curationRuleText == null && set ) {
349+ curationRuleText = new ArrayList <>();
350+ }
351+ return curationRuleText ;
352+ }
353+
313354 /**
314355 * Gets the list of see_also values, optionally
315356 * initializing the list if needed.
0 commit comments