AutoBE
    Preparing search index...

    A regular data field (not a primary or foreign key).

    interface IPlainField {
        description: string;
        name: string & SnakeCasePattern;
        nullable: boolean;
        type:
            | "string"
            | "boolean"
            | "uuid"
            | "email"
            | "ipv4"
            | "uri"
            | "double"
            | "int"
            | "datetime";
    }
    Index

    Properties

    description: string

    Finished Prisma documentation for this persisted data field. Include only business prose about the stored value, lifecycle meaning, and requirement purpose. If the value is current output reconstructed from other source rows, keep it out of plainFields unless the row explicitly materializes it.

    name: string & SnakeCasePattern

    MUST use snake_case.

    nullable: boolean

    True only when Analyze, raw-file evidence, or workflow timing says the stored value may be absent. Required temporal fields and system invariants must remain non-null.

    type:
        | "string"
        | "boolean"
        | "uuid"
        | "email"
        | "ipv4"
        | "uri"
        | "double"
        | "int"
        | "datetime"

    Prisma/PostgreSQL type mapping: boolean, int, double, string, uri, uuid (non-FK), datetime, email, ipv4.