Atlassian · Schema

MultipartFile

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
bytes array
contentType string
empty boolean
inputStream object
name string
originalFilename string
resource object
size integer
View JSON Schema on GitHub

JSON Schema

atlassian-multipartfile-schema.json Raw ↑
{
  "$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"
}