You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are Bibliographic Resources (i.e. entities of type fabio:Expression) that have more than one embodiment, i.e. are connected by the frbr:embodiment property to more than one entity of type fabio:Manifestation.
Although this scenario is indeed compliant with the OpenCitations Data Model, it is very unlikely that Meta has produced such cases "intentionally", given the current logic of the software and the information provided in the data taken from the primary sources. Rather, this seems to be caused by error (see issue #28).
This issue can be reproduced by running the following SPARQL query (endpoint accessed on Sept. 26th, 2024), which returns 10 Bibliographic Resources with more than one fabio:Manifestion, despite being contained only in one venue.
PREFIX frbr: <http://purl.org/vocab/frbr/core#>
PREFIX fabio: <http://purl.org/spar/fabio/>
SELECT ?br (COUNT(DISTINCT ?man) AS ?manCount) ?venue WHERE {
?br frbr:partOf ?venue;
rdf:type fabio:JournalArticle;
frbr:embodiment ?man.
}
GROUP BY ?br ?venue
HAVING (((COUNT(DISTINCT ?venue)) = 1 ) && ((COUNT(DISTINCT ?man)) > 1 ))
LIMIT 10
There are Bibliographic Resources (i.e. entities of type
fabio:Expression
) that have more than one embodiment, i.e. are connected by thefrbr:embodiment
property to more than one entity of typefabio:Manifestation
.Although this scenario is indeed compliant with the OpenCitations Data Model, it is very unlikely that Meta has produced such cases "intentionally", given the current logic of the software and the information provided in the data taken from the primary sources. Rather, this seems to be caused by error (see issue #28).
This issue can be reproduced by running the following SPARQL query (endpoint accessed on Sept. 26th, 2024), which returns 10 Bibliographic Resources with more than one
fabio:Manifestion
, despite being contained only in one venue.Example (query results):
The text was updated successfully, but these errors were encountered: