pl-api
    Preparing search index...

    Variable accountWarningSchemaConst

    accountWarningSchema: ObjectSchema<
        {
            action: PicklistSchema<
                [
                    "none",
                    "disable",
                    "mark_statuses_as_sensitive",
                    "delete_statuses",
                    "sensitive",
                    "silence",
                    "suspend",
                ],
                undefined,
            >;
            appeal: SchemaWithFallback<
                NullableSchema<
                    ObjectSchema<
                        {
                            state: PicklistSchema<
                                ["approved", "rejected", "pending"],
                                undefined,
                            >;
                            text: StringSchema<undefined>;
                        },
                        undefined,
                    >,
                    undefined,
                >,
                null,
            >;
            created_at: SchemaWithFallback<
                SchemaWithPipe<
                    readonly [StringSchema<undefined>, RegexAction<string, undefined>],
                >,
                string,
            >;
            id: StringSchema<undefined>;
            status_ids: SchemaWithFallback<
                ArraySchema<StringSchema<undefined>, undefined>,
                readonly [],
            >;
            target_account: BaseSchema<any, Account, BaseIssue<unknown>>;
            text: SchemaWithFallback<StringSchema<undefined>, "">;
        },
        undefined,
    > = ...