Periodic Table Database Schema - v0.7.1
    Preparing search index...

    Type Alias Blob<T>

    Blob: Expand<
        Brand<
            {
                attribution?: Attribution;
                created?: IsoDate;
                description?: string;
                encoding: BlobEncoding;
                hash?: string;
                mimeType: AllowedMimeTypes<T>;
                notes?: string;
                size?: number;
                storage:
                    | { type: RAW; value: string }
                    | { type: PATH; value: string }
                    | { type: URL; value: UrlString };
                title?: string;
            },
            T,
            "type",
            true,
        >,
    >

    Structural model for a binary asset, including its physical storage and descriptive metadata.

    Type Parameters

    • T extends BlobType

      The architectural type of the binary asset.