@archastro/sdk
    Preparing search index...

    Variable customObjectJoinResponseSchemaConst

    customObjectJoinResponseSchema: ZodObject<
        {
            connection_id: ZodString;
            fields: ZodNullable<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
            >;
            id: ZodNullable<ZodString>;
            presence: ZodArray<
                ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
                "many",
            >;
            readonly: ZodBoolean;
        },
        "strip",
        ZodTypeAny,
        {
            connection_id: string;
            fields: Record<string, {} | null>
            | null;
            id: string | null;
            presence: Record<string, {} | null>[];
            readonly: boolean;
        },
        {
            connection_id: string;
            fields: Record<string, {} | null>
            | null;
            id: string | null;
            presence: Record<string, {} | null>[];
            readonly: boolean;
        },
    > = ...

    Runtime validator for CustomObjectJoinResponse.