Skip to content

Commit

Permalink
Merge branch 'DQ-343' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
bichitra95 committed Aug 1, 2024
2 parents 0b51ebb + 5ff0773 commit 2e04501
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ public class DataContract {
public String dataset;
public DatasetType type;
public String description;
public List<String> owners;
public Object owners;
public List<BusinessTag> tags;
public String certificate;
@Valid
public List<Column> columns;
private final Map<String, Object> unknownFields = new HashMap<>();
private final Map<String, Object> unknownFields = new HashMap<>();

public enum Status {
@JsonProperty("DRAFT") DRAFT,
Expand Down Expand Up @@ -146,7 +146,7 @@ public void setType(String type) throws AtlasBaseException {
}
}

public void setOwners(List<String> owners) {
public void setOwners(Object owners) {
this.owners = owners;
}

Expand Down

0 comments on commit 2e04501

Please sign in to comment.