Skip to main content

Interface: MemoryUploadedFile

Defined in: forms/fileUploadProvider.ts:67

Represents an file uploaded with MemoryFileUploader.

See

MemoryFileUploader

Extends

Properties

PropertyModifierTypeDescriptionInherited from

blob

readonly

Blob

In-memory file content as a Blob.

iri

readonly

string

Unique file IRI, generated by the upload provider.

UploadedFile.iri

metadata

readonly

ElementModel

File metadata, generated by the upload provider.

Depending on the provider, may contain these or other properties:

  • rdfs:label with original file name, e.g. my_picture.png;
  • schema:encodingFormat with file MIME-type, e.g. image/jpeg;
  • schema:fileSize with file size, e.g. 1024B;
  • schema:uploadDate with the upload date and time, e.g. 2026-01-01T12:00:00Z.

UploadedFile.metadata

name

readonly

string

Unique file name, generated by the upload provider.

The value might be based on or be completely different from the original file name.