Properties
| Name | Type | Description |
|---|---|---|
| bytes | array | |
| contentType | string | |
| empty | boolean | |
| inputStream | object | |
| name | string | |
| originalFilename | string | |
| resource | object | |
| size | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MultipartFile",
"title": "MultipartFile",
"additionalProperties": false,
"properties": {
"bytes": {
"items": {
"format": "byte",
"type": "string"
},
"type": "array"
},
"contentType": {
"type": "string"
},
"empty": {
"type": "boolean"
},
"inputStream": {
"type": "object"
},
"name": {
"type": "string"
},
"originalFilename": {
"type": "string"
},
"resource": {
"$ref": "#/components/schemas/Resource"
},
"size": {
"format": "int64",
"type": "integer"
}
},
"type": "object"
}