SysProM
    Preparing search index...

    Variable RelationshipTypeConst

    RelationshipType: ZodEnum<
        {
            affects: "affects";
            constrained_by: "constrained_by";
            depends_on: "depends_on";
            governed_by: "governed_by";
            implements: "implements";
            modifies: "modifies";
            must_follow: "must_follow";
            must_preserve: "must_preserve";
            part_of: "part_of";
            precedes: "precedes";
            produces: "produces";
            realises: "realises";
            refines: "refines";
            supersedes: "supersedes";
        },
    > & {
        is(
            value: unknown,
        ): value is
            | "refines"
            | "realises"
            | "implements"
            | "depends_on"
            | "constrained_by"
            | "affects"
            | "supersedes"
            | "must_preserve"
            | "part_of"
            | "precedes"
            | "must_follow"
            | "governed_by"
            | "modifies"
            | "produces";
    } = relationshipTypeDef.schema

    Zod schema for the set of valid relationship types (e.g. "refines", "depends_on", "affects").