diff --git a/CHANGES.md b/CHANGES.md
index 695c624..1634645 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -4,7 +4,8 @@
| **Version** | **Changes** | **Readiness** |
|-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
-| 7.0.0 | [Graph model]
- Introduced Person entity and its relations: authorship, coauthorship, affiliation
- Updated Solr JSON payload model classes
| beta |
+| 8.0.0 | [Graph model] - Renamed `Result.author.affiliation` to `rawAffiliationString`. Updated Solr JSON payload model classes
| beta |
+| 7.0.0 | [Graph model] - Introduced Person entity and its relations: authorship, coauthorship, affiliation
- Updated Solr JSON payload model classes
| production |
| 6.1.3 | [Graph model] - Updated Solr JSON payload model classes
| production |
| 6.1.1 | [Graph model] - Introduced constants used in the DOIBoost dismission.
| production |
| 6.1.0 | [Graph model] - Introduced model classes to provide a JSON representation of records embedding information from the related entities.
| production |
diff --git a/pom.xml b/pom.xml
index 42391f8..cf744d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
eu.dnetlib.dhp
dhp-schemas
jar
- 7.0.3-SNAPSHOT
+ 8.0.0-SNAPSHOT
diff --git a/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java b/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java
index f8c0f3c..6ff5ae4 100644
--- a/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java
+++ b/src/main/java/eu/dnetlib/dhp/schema/oaf/Author.java
@@ -7,6 +7,7 @@ import java.util.*;
public class Author implements Serializable {
private static final long serialVersionUID = 1625492739044457437L;
+
private String fullname;
private String name;
@@ -18,7 +19,7 @@ public class Author implements Serializable {
private List pid;
- private List> affiliation;
+ private List rawAffiliationString;
public String getFullname() {
return fullname;
@@ -60,12 +61,11 @@ public class Author implements Serializable {
this.pid = pid;
}
- public List> getAffiliation() {
- return affiliation;
+ public List getRawAffiliationString() {
+ return rawAffiliationString;
}
- public void setAffiliation(List> affiliation) {
- this.affiliation = affiliation;
+ public void setRawAffiliationString(List rawAffiliationString) {
+ this.rawAffiliationString = rawAffiliationString;
}
-
}