diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-02-02 11:39:30 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-02-02 11:39:30 -0800 |
commit | 832fee94ecb743adbdb16b94ffb9d6e23c6dfd89 (patch) | |
tree | 8a9c0b2e0633cb6155b190f4c95d10283cc8560e | |
parent | 7de5dc37c02cd7b3e0aad6deefa80cf9c8e37dbf (diff) | |
download | fatcat-cli-832fee94ecb743adbdb16b94ffb9d6e23c6dfd89.tar.gz fatcat-cli-832fee94ecb743adbdb16b94ffb9d6e23c6dfd89.zip |
schema: v0.3.3 updates (doaj, dblp, oai)
-rw-r--r-- | fatcat-openapi3.yml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/fatcat-openapi3.yml b/fatcat-openapi3.yml index f8e3ca4..7ac6d0f 100644 --- a/fatcat-openapi3.yml +++ b/fatcat-openapi3.yml @@ -1,7 +1,7 @@ openapi: "3.0.0" info: title: fatcat - version: 0.3.1 + version: 0.3.3 description: | Fatcat is a scalable, versioned, API-oriented catalog of bibliographic entities and file metadata. @@ -1250,6 +1250,15 @@ components: mag: type: string description: Microsoft Academic Graph identifier + doaj: + type: string + description: DOAJ article-level identifier + 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: @@ -5396,6 +5405,21 @@ paths: required: false schema: type: string + - name: doaj + in: query + required: false + schema: + type: string + - name: dblp + in: query + required: false + schema: + type: string + - name: oai + in: query + required: false + schema: + type: string - name: expand in: query required: false |