home / team-science

paper_author

Authorship on a paper (1-based position). corresponding_email only if printed; currently all null (no harvested contact).

Data license: Space charter; records cite primary sources · Data source: TeamScience Space repository

7 rows where lom_id = "doi:10.18653/v1/2020.emnlp-main.609"

✎ View and edit SQL

This data as json, CSV (advanced)

Link lom_id author_id position source corresponding_email
doi:10.18653/v1/2020.emnlp-main.609,openalex:A5001778694 Fact or Fiction: Verifying Scientific Claims doi:10.18653/v1/2020.emnlp-main.609 openalex:A5001778694 4 openalex  
doi:10.18653/v1/2020.emnlp-main.609,openalex:A5037862554 Fact or Fiction: Verifying Scientific Claims doi:10.18653/v1/2020.emnlp-main.609 openalex:A5037862554 1 openalex  
doi:10.18653/v1/2020.emnlp-main.609,openalex:A5048135392 Fact or Fiction: Verifying Scientific Claims doi:10.18653/v1/2020.emnlp-main.609 openalex:A5048135392 2 openalex  
doi:10.18653/v1/2020.emnlp-main.609,openalex:A5053129557 Fact or Fiction: Verifying Scientific Claims doi:10.18653/v1/2020.emnlp-main.609 openalex:A5053129557 5 openalex  
doi:10.18653/v1/2020.emnlp-main.609,openalex:A5064858748 Fact or Fiction: Verifying Scientific Claims doi:10.18653/v1/2020.emnlp-main.609 openalex:A5064858748 6 openalex  
doi:10.18653/v1/2020.emnlp-main.609,openalex:A5066588555 Fact or Fiction: Verifying Scientific Claims doi:10.18653/v1/2020.emnlp-main.609 openalex:A5066588555 3 openalex  
doi:10.18653/v1/2020.emnlp-main.609,openalex:A5082305994 Fact or Fiction: Verifying Scientific Claims doi:10.18653/v1/2020.emnlp-main.609 openalex:A5082305994 7 openalex  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE paper_author (
  lom_id               TEXT NOT NULL REFERENCES paper(lom_id),
  author_id            TEXT NOT NULL REFERENCES author(author_id),
  position             INTEGER NOT NULL CHECK (position >= 1),
  source               TEXT NOT NULL DEFAULT 'openalex' CHECK (source IN ('openalex', 'paper')),
  corresponding_email  TEXT,
  PRIMARY KEY (lom_id, author_id),
  CHECK (corresponding_email IS NULL OR source = 'paper')
);
CREATE UNIQUE INDEX paper_author_pos ON paper_author(lom_id, position);
Powered by Datasette · Queries took 8.026ms · Data license: Space charter; records cite primary sources · Data source: TeamScience Space repository