Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 5 additions & 2 deletions openapi/dali/dali-maxrec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ name: MAXREC
in: query
description: |
request a specific limit on number of records to return
required: false
schema:
type: integer
format: int64
minimum: 0
exclusiveMinimum: false
inclusiveMinimum: 0
examples:
- 0
- 100
4 changes: 4 additions & 0 deletions openapi/dali/dali-responseformat.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: RESPONSEFORMAT
in: query
description: select output table format
required: false
schema:
type: string
examples:
- application/x-votable+xml
- vot
11 changes: 9 additions & 2 deletions openapi/dali/dali-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ in: query
description: |
specify a comma-separated name,location pair for a temporary
resource to be uploaded and used in the request
required: false
explode: true
schema:
type: string
pattern: '^[a-zA-Z]\w*,\S+$'
type: array
items:
type: string
pattern: '^[a-zA-Z]\w*,\S+$'
example:
- tmp1,https://example.net/tmp.vot
- tmp2,param:inline-votable
Loading