Skip to content

Commit

Permalink
fix altmetric score and citation count predicate
Browse files Browse the repository at this point in the history
  • Loading branch information
wwelling committed Apr 6, 2020
1 parent b03c70a commit 97b3502
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -432,11 +432,11 @@ public class Document extends Common {
private List<String> receipts;

@Indexed(type = "sorting_string", copyTo = "_text_")
@PropertySource(template = "document/altmetricScore", predicate = "http://vivo.library.tamu.edu/ontology/TAMU#altmetricScore")
@PropertySource(template = "document/altmetricScore", predicate = "http://vivo.library.tamu.edu/ontology/TAMU#AltmetricScore")
private String altmetricScore;

@Indexed(type = "sorting_string", copyTo = "_text_")
@PropertySource(template = "document/citationCount", predicate = "http://vivo.library.tamu.edu/ontology/TAMU#citationCount")
@PropertySource(template = "document/citationCount", predicate = "http://vivo.library.tamu.edu/ontology/TAMU#CitationCount")
private String citationCount;

public Document() {
Expand Down

0 comments on commit 97b3502

Please sign in to comment.