Skip to content

Commit

Permalink
fix: update dataset columns to reflect change in data service (#1240)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattprintz authored Jun 16, 2023
1 parent 5b14129 commit 44b7fa3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ public class DatasetColumn {
private String formatStr;

/** Column annotations from the MIT data profiling tool **/
private Map<String, List<String>> annotations;
private List<String> annotations;

/** (Optional) Unformatted metadata about the dataset **/
@TSOptional
private Map<String, Object> metadata;

/** (Optional) Grounding of ontological concepts related to the column **/
@TSOptional
private Map<String, Grounding> grounding;
private Grounding grounding;

enum ColumnType {
@JsonAlias("unknown")
Expand Down

0 comments on commit 44b7fa3

Please sign in to comment.