pl-api
    Preparing search index...

    Variable scrobbleSchemaConst

    scrobbleSchema: SchemaWithPipe<
        readonly [
            AnySchema,
            TransformAction<any, any>,
            ObjectSchema<
                {
                    account: BaseSchema<any, Account, BaseIssue<unknown>>;
                    album: SchemaWithFallback<StringSchema<undefined>, "">;
                    artist: SchemaWithFallback<StringSchema<undefined>, "">;
                    created_at: SchemaWithPipe<
                        readonly [StringSchema<undefined>, RegexAction<string, undefined>],
                    >;
                    external_link: SchemaWithFallback<
                        NullableSchema<StringSchema<undefined>, undefined>,
                        null,
                    >;
                    id: SchemaWithPipe<
                        readonly [UnknownSchema, TransformAction<any, string>],
                    >;
                    length: SchemaWithFallback<
                        NullableSchema<NumberSchema<undefined>, undefined>,
                        null,
                    >;
                    title: StringSchema<undefined>;
                },
                undefined,
            >,
        ],
    > = ...