[Datasource] changed name of property for https://support.openaire.eu/issues/9892

This commit is contained in:
Miriam Baglioni 2024-07-15 12:07:44 +02:00
parent 41518d0ee3
commit 071fc385fc
1 changed files with 5 additions and 5 deletions

View File

@ -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() {