diff options
Diffstat (limited to 'fatcat-openapi3.yml')
-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 |