Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

soa:crossrefType is mistyped #111

Open
VladimirAlexiev opened this issue Jul 26, 2024 · 1 comment
Open

soa:crossrefType is mistyped #111

VladimirAlexiev opened this issue Jul 26, 2024 · 1 comment

Comments

@VladimirAlexiev
Copy link
Collaborator

VladimirAlexiev commented Jul 26, 2024

soa:crossrefType is spelled "crossers type".


Was: soa:crossrefType is empty?
This returns nothing:

PREFIX soa: <https://semopenalex.org/ontology/>
select ?type (count(*) as ?c) {
  ?x soa:crossrefType ?type
} group by ?type order by desc(?c)

AFAI remember, it's a useful field from Crossref eg Chapter, Book, Dataset.

  • Did OpenAlex discontinue it?
  • If so, delete it from the ontology

But the reason for this is #119

@VladimirAlexiev VladimirAlexiev changed the title soa:crossrefType is empty? soa:crossrefType is mistyped Jul 29, 2024
@VladimirAlexiev
Copy link
Collaborator Author

VladimirAlexiev commented Jul 29, 2024

I use this query to count the types of the first 1M works (in order to describe possible values):

PREFIX soa: <https://semopenalex.org/ontology/>
select ?type (count(*) as ?c) {
  {select * {
     ?x soa:crossrefType ?type
  } limit 1000000}
} group by ?type order by ?type

But it returns only types starting with "b,c,d,e,g" and in particular no "journal-article". So it's not a randomized selection.
The full list of 30 is at https://api.crossref.org/types

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant