AutoBE
    Preparing search index...

    Interface AutoBeUserMessageGenericFileContentMetadata

    Generic metadata for a file upload whose adapter has not produced a specialized branch.

    interface AutoBeUserMessageGenericFileContentMetadata {
        byteLength: number & Type<"uint32">;
        memo: string;
        type: "generic";
        usages: AutoBeUserMessageContentMetadata.Usage[] & UniqueItems<true>;
    }

    Hierarchy (View Summary)

    • IBase<"generic">
      • AutoBeUserMessageGenericFileContentMetadata
    Index

    Properties

    byteLength: number & Type<"uint32">

    Byte length detected by the file adapter.

    memo: string

    Compact handoff memo for later agents.

    Explain what the content item appears to contribute, which downstream phase should care, and what must not be inferred yet. For example, an ERD can be structural, a meeting transcript can be requirement-oriented, and one item can be both when annotations contain business rules beside structure.

    type: "generic"

    Metadata branch discriminator.

    usages: AutoBeUserMessageContentMetadata.Usage[] & UniqueItems<true>

    Downstream semantic roles for this content item.

    Empty means the content item should not feed a phase directly. Supporting evidence, metadata-only value, policy limitations, intake gaps, or unsupported content should be explained in memo instead of adding a separate enum here.