Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: edge storage #204

Merged
merged 6 commits into from
Mar 27, 2024
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ paths:
schema:
type: string
required: true
- name: page
- name: continuation_token
required: false
in: query
description: A page number within the paginated result set.
description: Token for next page.
schema:
type: integer
- name: page_size
type: string
- name: max_object_count
required: false
in: query
description: Number of results to return per page.
Expand Down Expand Up @@ -491,6 +491,12 @@ components:
nullable: true
format: uri
example: http://api.example.org/accounts/?page=2
continuation_token:
type: string
nullable: true
maxLength: 200
minLength: 10
pattern: '.*'
results:
type: array
items:
Expand Down
Loading