[Datasource] changed name of property for https://support.openaire.eu/issues/9892
This commit is contained in:
parent
41518d0ee3
commit
071fc385fc
|
@ -45,7 +45,7 @@ public class Datasource implements Serializable {
|
|||
|
||||
@JsonSchema(
|
||||
description = "The type of the datasource. See https://api.openaire.eu/vocabularies/dnet:datasource_typologies")
|
||||
private DatasourceSchemeValue datasourceType; // value
|
||||
private DatasourceSchemeValue type; // value
|
||||
|
||||
@JsonSchema(
|
||||
description = "OpenAIRE guidelines the data source comply with. See also https://guidelines.openaire.eu.")
|
||||
|
@ -163,12 +163,12 @@ public class Datasource implements Serializable {
|
|||
this.pid = pid;
|
||||
}
|
||||
|
||||
public DatasourceSchemeValue getDatasourceType() {
|
||||
return datasourceType;
|
||||
public DatasourceSchemeValue getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setDatasourceType(DatasourceSchemeValue datasourceType) {
|
||||
this.datasourceType = datasourceType;
|
||||
public void setType(DatasourceSchemeValue type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getOpenaireCompatibility() {
|
||||
|
|
Loading…
Reference in New Issue