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

6 rows where lom_id = "arxiv:2408.06292"

✎ View and edit SQL

This data as json, CSV (advanced)

Link lom_id author_id position source corresponding_email
arxiv:2408.06292,openalex:A5001419875 The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery arxiv:2408.06292 openalex:A5001419875 6 openalex  
arxiv:2408.06292,openalex:A5004965365 The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery arxiv:2408.06292 openalex:A5004965365 2 openalex  
arxiv:2408.06292,openalex:A5059094093 The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery arxiv:2408.06292 openalex:A5059094093 4 openalex  
arxiv:2408.06292,openalex:A5102738539 The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery arxiv:2408.06292 openalex:A5102738539 1 openalex  
arxiv:2408.06292,openalex:A5108231603 The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery arxiv:2408.06292 openalex:A5108231603 3 openalex  
arxiv:2408.06292,openalex:A5112191507 The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery arxiv:2408.06292 openalex:A5112191507 5 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 5.79ms · Data license: Space charter; records cite primary sources · Data source: TeamScience Space repository