diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-21 12:23:08 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-21 12:23:08 -0800 |
commit | 2027162f9871ebe43a40b0ac4615149141b7a571 (patch) | |
tree | c75087fa12c9841a4f12d66fc1b2770e9c6847c4 /rust/fatcat-api-spec/api | |
parent | bdb1e6c42317c8ea9d2152896e308203ecd3ac3e (diff) | |
download | fatcat-2027162f9871ebe43a40b0ac4615149141b7a571.tar.gz fatcat-2027162f9871ebe43a40b0ac4615149141b7a571.zip |
allow arxiv and jstor lookups
Diffstat (limited to 'rust/fatcat-api-spec/api')
-rw-r--r-- | rust/fatcat-api-spec/api/swagger.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rust/fatcat-api-spec/api/swagger.yaml b/rust/fatcat-api-spec/api/swagger.yaml index 989ca0ab..ca5c8838 100644 --- a/rust/fatcat-api-spec/api/swagger.yaml +++ b/rust/fatcat-api-spec/api/swagger.yaml @@ -5041,6 +5041,18 @@ paths: type: "string" formatString: "{:?}" example: "Some(\"core_id_example\".to_string())" + - name: "arxiv_id" + in: "query" + required: false + type: "string" + formatString: "{:?}" + example: "Some(\"arxiv_id_example\".to_string())" + - name: "jstor_id" + in: "query" + required: false + type: "string" + formatString: "{:?}" + example: "Some(\"jstor_id_example\".to_string())" - name: "expand" in: "query" description: "List of sub-entities to expand in response." |