From b80d1354abb6c609e3d3ba97de87959ad623d554 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 17 Nov 2020 15:28:23 -0800 Subject: schema: DOAJ+dblp ext_ids; bump to v0.3.3 --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index a8c98c6e..caf816e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,16 @@ changes to API. - several other bugfixes to web interface and importer code, not reported here granularly +## [0.3.3] - 2020-11-16 + +Minor additions to the API schema: new external identifiers for release +entities, for `doaj` and `dblp`. Database schema (SQL) not changed. + +### Added + +- two new release external identifiers: `doaj` (article-level) and `dblp` (also + article-level). These are API changes, but backwards compatible. + ## [0.3.2] - 2020-04-08 This release was tagged retro-actively; it was the last commit before upgrading -- cgit v1.2.3 From e29142c986defd308a391c812e57f5d8df575cde Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 19 Nov 2020 12:18:02 -0800 Subject: schema: also add 'oai' identifer (OAI-PMH) for releases --- CHANGELOG.md | 4 ++-- fatcat-openapi2.yml | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index caf816e2..4757a85a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,11 +42,11 @@ changes to API. ## [0.3.3] - 2020-11-16 Minor additions to the API schema: new external identifiers for release -entities, for `doaj` and `dblp`. Database schema (SQL) not changed. +entities, for `doaj`, `dblp`, and `oai`. Database schema (SQL) not changed. ### Added -- two new release external identifiers: `doaj` (article-level) and `dblp` (also +- two new release external identifiers: `doaj`, `dblp`, and `oai` (all article-level). These are API changes, but backwards compatible. ## [0.3.2] - 2020-04-08 diff --git a/fatcat-openapi2.yml b/fatcat-openapi2.yml index f3a91768..ce0d8331 100644 --- a/fatcat-openapi2.yml +++ b/fatcat-openapi2.yml @@ -903,6 +903,9 @@ definitions: dblp: type: string description: "dblp (https://dblp.uni-trier.de/) paper identifier; eg for conference proceedings" + oai: + type: string + description: "OAI-PMH identifier; only used when an OAI-PMH record is the only authoritative metadata (eg, journal OAI-PMH feeds w/o DOIs)" release_abstract: type: object properties: @@ -3109,6 +3112,10 @@ paths: in: query type: string required: false + - name: oai + in: query + type: string + required: false - name: expand in: query type: string -- cgit v1.2.3