I would like to create a resource if a column is filled and add a SubjectAnnotation to it based on that column. The following should work, where I create a SubjectAnnotation that's bundled to a column, but it does nothing:
conversion:enhance [
ov:csvCol 5;
ov:csvHeader "Preferred Defn Text";
conversion:equivalent_property hbgd:prefDefinition;
conversion:range_template "[/]definition/[r]";
conversion:comment "";
conversion:range rdfs:Resource;
];
conversion:enhance [
a conversion:SubjectAnnotation;
conversion:bundled_by [ ov:csvCol 5];
conversion:predicate prov:value;
conversion:object "[5]";
];
I would like to create a resource if a column is filled and add a SubjectAnnotation to it based on that column. The following should work, where I create a SubjectAnnotation that's bundled to a column, but it does nothing: