Vana SDK - v0.1.0
    Preparing search index...

    Interface FileMetadata

    Provides optional metadata for uploaded files and content description.

    This interface contains descriptive information about uploaded files, including file properties and custom application-specific data that can be used for organization, validation, and display purposes.

    interface FileMetadata {
        name?: string;
        size?: number;
        mimeType?: string;
        checksum?: string;
        uploadedAt?: string;
        custom?: Record<string, unknown>;
    }
    Index

    Properties

    name?: string

    Original filename as provided by the user or application.

    size?: number

    Total file size in bytes for storage tracking.

    mimeType?: string

    MIME type identifier for content type recognition.

    checksum?: string

    Hash value for file integrity verification.

    uploadedAt?: string

    ISO 8601 timestamp when the file was uploaded.

    custom?: Record<string, unknown>

    Application-specific metadata for custom use cases.