diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-04 17:41:27 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-04 17:41:27 -0800 |
commit | 084e476957ce80b456dcf0575de4efc7331d34f9 (patch) | |
tree | 5377ef32c140ef6a0b73d67296eeacf17edcabc9 /notes/more_api_patterns.txt | |
parent | d7b0a156d2a3a21e2bf5afc3e4b97e7cf1044248 (diff) | |
download | fatcat-084e476957ce80b456dcf0575de4efc7331d34f9.tar.gz fatcat-084e476957ce80b456dcf0575de4efc7331d34f9.zip |
clean up notes a tiny bit
Diffstat (limited to 'notes/more_api_patterns.txt')
-rw-r--r-- | notes/more_api_patterns.txt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/notes/more_api_patterns.txt b/notes/more_api_patterns.txt deleted file mode 100644 index ca61ac81..00000000 --- a/notes/more_api_patterns.txt +++ /dev/null @@ -1,15 +0,0 @@ - -If returning a long list (eg, all releases for a container): - - "releases": { - "data": [ - <release>, - <release>, - ... - ], - "has_mode": true, - "total_count": 100, - "url": "/v0/container/asdf/releases" - } - -This pattern from the Stripe API. |