23 lines
523 B
YAML
23 lines
523 B
YAML
type: object
|
|
required:
|
|
- uploads
|
|
properties:
|
|
uploads:
|
|
type: array
|
|
description: Uploaded files details.
|
|
items:
|
|
type: object
|
|
required:
|
|
- url
|
|
- key
|
|
properties:
|
|
url:
|
|
description: The URL of the uploaded file.
|
|
type: string
|
|
format: uri
|
|
key:
|
|
description: >-
|
|
The key of the file that is identifiable by the file service. It can
|
|
be used later to retrieve or manipulate the file.
|
|
type: string
|