diff --git a/docs/changelog.md b/docs/changelog.md index 25789d1..efeed45 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -19,6 +19,22 @@ This section documents all notable changes for each graph version. --- +### v6.1.1 +_Start Date: 2023-07-26 • Release Date: 2023-08-16 • Dump release: **yes**_ + +#### Added +- Affiliation (result to organization) relations from Crossref +- Links to the full text of research products +- Cleaning for author and publisher names (get rid of tabs, CR characters, \n(s), escape double quotes) + +#### Changed +- Projects without a grant code are removed +- Crossref dump from July 2023 +- ORCID works without a DOI from March 2023 +- Usage counts from July 2023 +- Datacite contents from early July 2023 +- OpenCitations relations from December 2022 + ### v6.0.0 _Start Date: 2023-07-26 • Release Date: 2023-08-16 • Dump release: **yes**_ diff --git a/docs/data-model/relationships/relationship-object.md b/docs/data-model/relationships/relationship-object.md index 7a6bd15..d5f7ec9 100644 --- a/docs/data-model/relationships/relationship-object.md +++ b/docs/data-model/relationships/relationship-object.md @@ -45,7 +45,7 @@ Graph node type. ### reltype _Type: [RelType](#the-reltype-object) • Cardinality: ONE_ -Represent the semantics of the relation between two nodes of the graph. +Represent the semantics of the relationship between two nodes of the graph. ```json "reltype": { @@ -68,7 +68,7 @@ Indicates the process that produced (or provided) the information. ### validated _Type: Boolean • Cardinality: ONE_ -Indicates weather or not the relation was validated. +Indicates weather or not the relationship was validated. ```json "validated": true @@ -77,7 +77,7 @@ Indicates weather or not the relation was validated. ### validationDate _Type: String • Cardinality: ONE_ -Indicates the validation date of the relation - applies only when the validated flag is set to true. +Indicates the validation date of the relationship - applies only when the validated flag is set to true. ```json "validationDate": "2022-09-02" @@ -92,7 +92,7 @@ The RelType data type models the semantic of the relationship among two nodes. ### type _Type: String • Cardinality: ONE_ -Relation category, e.g. affiliation, citation, see table Relation typologies. +The relationship category, e.g. affiliation, citation. (see [relationship types](./relationship-types)). ```json "name": "provides" @@ -101,7 +101,7 @@ Relation category, e.g. affiliation, citation, see table Relation typologies. ### name _Type: String • Cardinality: ONE_ -Further specifies the relation semantic, indicating the relation direction, e.g. Cites, isCitedBy. +Further specifies the relationship semantic, indicating the relationship direction, e.g. Cites, isCitedBy. ```json "type": "provision" diff --git a/docs/downloads/related-datasets.md b/docs/downloads/related-datasets.md index 5363cf5..c4730cd 100644 --- a/docs/downloads/related-datasets.md +++ b/docs/downloads/related-datasets.md @@ -8,7 +8,7 @@ In this page, we list other related datasets; please refer to their respective s ## The dataset of ScholeXplorer - Dataset: https://doi.org/10.5281/zenodo.6338616 + Dataset: https://zenodo.org/doi/10.5281/zenodo.1200252 Schema (Scholix version 3): https://doi.org/10.5281/zenodo.1120275 diff --git a/docs/graph-production-workflow/enrichment-by-mining/citation_matching.md b/docs/graph-production-workflow/enrichment-by-mining/citation_matching.md index 9b3582b..d404091 100644 --- a/docs/graph-production-workflow/enrichment-by-mining/citation_matching.md +++ b/docs/graph-production-workflow/enrichment-by-mining/citation_matching.md @@ -1,6 +1,6 @@ # Citation matching -***Short description:*** During a citation matching task, bibliographic entries are linked to the documents that they reference. The citation matching module - one of the modules of the Information Inference Service (IIS) - receives as an input a list of documents accompanied by their metadata and bibliography. Among them, it discovers links described above and returns them as a list. It is worth mentioning that the implemented algorithm has been described in detail in [arXiv:1303.6906](https://arxiv.org/abs/1303.6906). +***Short description:*** During a citation matching task, bibliographic entries are linked to the documents that they reference. The citation matching module - one of the modules of the Information Inference Service (IIS) - receives as an input a list of documents accompanied by their metadata and bibliography. Among them, it discovers links described above and returns them as a list. It is worth mentioning that the implemented algorithm has been described in detail in [arXiv:1303.6906](https://arxiv.org/abs/1303.6906)[1]. ***Algorithmic details:*** @@ -35,6 +35,7 @@ names, we have taken longest common subsequence (LCS) of two strings into consid ***Environment:*** Java, Spark -***References:*** - +***References:*** +* Fedoryszak, M., Tkaczyk, D., Bolikowski, Ł. (2013). Large Scale Citation Matching Using Apache Hadoop. In: Aalberg, T., Papatheodorou, C., Dobreva, M., Tsakonas, G., Farrugia, C.J. (eds) Research and Advanced Technology for Digital Libraries. TPDL 2013. Lecture Notes in Computer Science, vol 8092. Springer, Berlin, Heidelberg. [https://doi.org/10.1007/978-3-642-40501-3_37](https://doi.org/10.1007/978-3-642-40501-3_37) ***Authority:*** ICM • ***License:*** AGPL-3.0 • ***Code:*** [CoAnSys/citation-matching](https://github.com/CeON/CoAnSys/tree/master/citation-matching) diff --git a/versioned_docs/version-6.0.0/data-model/relationships/relationship-object.md b/versioned_docs/version-6.0.0/data-model/relationships/relationship-object.md index 7a6bd15..d5f7ec9 100644 --- a/versioned_docs/version-6.0.0/data-model/relationships/relationship-object.md +++ b/versioned_docs/version-6.0.0/data-model/relationships/relationship-object.md @@ -45,7 +45,7 @@ Graph node type. ### reltype _Type: [RelType](#the-reltype-object) • Cardinality: ONE_ -Represent the semantics of the relation between two nodes of the graph. +Represent the semantics of the relationship between two nodes of the graph. ```json "reltype": { @@ -68,7 +68,7 @@ Indicates the process that produced (or provided) the information. ### validated _Type: Boolean • Cardinality: ONE_ -Indicates weather or not the relation was validated. +Indicates weather or not the relationship was validated. ```json "validated": true @@ -77,7 +77,7 @@ Indicates weather or not the relation was validated. ### validationDate _Type: String • Cardinality: ONE_ -Indicates the validation date of the relation - applies only when the validated flag is set to true. +Indicates the validation date of the relationship - applies only when the validated flag is set to true. ```json "validationDate": "2022-09-02" @@ -92,7 +92,7 @@ The RelType data type models the semantic of the relationship among two nodes. ### type _Type: String • Cardinality: ONE_ -Relation category, e.g. affiliation, citation, see table Relation typologies. +The relationship category, e.g. affiliation, citation. (see [relationship types](./relationship-types)). ```json "name": "provides" @@ -101,7 +101,7 @@ Relation category, e.g. affiliation, citation, see table Relation typologies. ### name _Type: String • Cardinality: ONE_ -Further specifies the relation semantic, indicating the relation direction, e.g. Cites, isCitedBy. +Further specifies the relationship semantic, indicating the relationship direction, e.g. Cites, isCitedBy. ```json "type": "provision" diff --git a/versioned_docs/version-6.0.0/downloads/related-datasets.md b/versioned_docs/version-6.0.0/downloads/related-datasets.md index 5363cf5..c4730cd 100644 --- a/versioned_docs/version-6.0.0/downloads/related-datasets.md +++ b/versioned_docs/version-6.0.0/downloads/related-datasets.md @@ -8,7 +8,7 @@ In this page, we list other related datasets; please refer to their respective s ## The dataset of ScholeXplorer - Dataset: https://doi.org/10.5281/zenodo.6338616 + Dataset: https://zenodo.org/doi/10.5281/zenodo.1200252 Schema (Scholix version 3): https://doi.org/10.5281/zenodo.1120275 diff --git a/versioned_docs/version-6.0.0/graph-production-workflow/enrichment-by-mining/citation_matching.md b/versioned_docs/version-6.0.0/graph-production-workflow/enrichment-by-mining/citation_matching.md index 9b3582b..d404091 100644 --- a/versioned_docs/version-6.0.0/graph-production-workflow/enrichment-by-mining/citation_matching.md +++ b/versioned_docs/version-6.0.0/graph-production-workflow/enrichment-by-mining/citation_matching.md @@ -1,6 +1,6 @@ # Citation matching -***Short description:*** During a citation matching task, bibliographic entries are linked to the documents that they reference. The citation matching module - one of the modules of the Information Inference Service (IIS) - receives as an input a list of documents accompanied by their metadata and bibliography. Among them, it discovers links described above and returns them as a list. It is worth mentioning that the implemented algorithm has been described in detail in [arXiv:1303.6906](https://arxiv.org/abs/1303.6906). +***Short description:*** During a citation matching task, bibliographic entries are linked to the documents that they reference. The citation matching module - one of the modules of the Information Inference Service (IIS) - receives as an input a list of documents accompanied by their metadata and bibliography. Among them, it discovers links described above and returns them as a list. It is worth mentioning that the implemented algorithm has been described in detail in [arXiv:1303.6906](https://arxiv.org/abs/1303.6906)[1]. ***Algorithmic details:*** @@ -35,6 +35,7 @@ names, we have taken longest common subsequence (LCS) of two strings into consid ***Environment:*** Java, Spark -***References:*** - +***References:*** +* Fedoryszak, M., Tkaczyk, D., Bolikowski, Ł. (2013). Large Scale Citation Matching Using Apache Hadoop. In: Aalberg, T., Papatheodorou, C., Dobreva, M., Tsakonas, G., Farrugia, C.J. (eds) Research and Advanced Technology for Digital Libraries. TPDL 2013. Lecture Notes in Computer Science, vol 8092. Springer, Berlin, Heidelberg. [https://doi.org/10.1007/978-3-642-40501-3_37](https://doi.org/10.1007/978-3-642-40501-3_37) ***Authority:*** ICM • ***License:*** AGPL-3.0 • ***Code:*** [CoAnSys/citation-matching](https://github.com/CeON/CoAnSys/tree/master/citation-matching)