Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
33 lines
822 B
TypeScript
33 lines
822 B
TypeScript
/**
|
|
* @schema AdminUploadPreSignedUrl
|
|
* type: object
|
|
* description: The details of the file to upload.
|
|
* x-schemaName: AdminUploadPreSignedUrl
|
|
* required:
|
|
* - originalname
|
|
* - size
|
|
* - mime_type
|
|
* properties:
|
|
* originalname:
|
|
* type: string
|
|
* title: originalname
|
|
* description: The file's original name.
|
|
* size:
|
|
* type: number
|
|
* title: size
|
|
* description: The file's size in bytes.
|
|
* mime_type:
|
|
* type: string
|
|
* title: mime_type
|
|
* description: The file's mime type.
|
|
* example: text/csv
|
|
* access:
|
|
* type: string
|
|
* description: The access level of the file. If `private`, the file will not be publicly accessible. The default value depends on the configured File Module Provider.
|
|
* enum:
|
|
* - public
|
|
* - private
|
|
*
|
|
*/
|
|
|