@akamai/openapi-ts
    Preparing search index...

    Variable getProfileResponseSchemaConst

    getProfileResponseSchema: ZodObject<
        {
            authentication_type: ZodEnum<
                { github: "github"; password: "password" },
            >;
            authorized_keys: ZodUnion<readonly [ZodArray<ZodString>, ZodNull]>;
            email: ZodEmail;
            email_notifications: ZodBoolean;
            ip_whitelist_enabled: ZodBoolean;
            lish_auth_method: ZodEnum<
                {
                    disabled: "disabled";
                    keys_only: "keys_only";
                    password_keys: "password_keys";
                },
            >;
            referrals: ZodReadonly<
                ZodObject<
                    {
                        code: ZodReadonly<ZodString>;
                        completed: ZodReadonly<ZodInt>;
                        credit: ZodReadonly<ZodInt>;
                        pending: ZodReadonly<ZodInt>;
                        total: ZodReadonly<ZodInt>;
                        url: ZodReadonly<ZodString>;
                    },
                    $strip,
                >,
            >;
            restricted: ZodBoolean;
            timezone: ZodString;
            two_factor_auth: ZodBoolean;
            uid: ZodReadonly<ZodInt>;
            username: ZodReadonly<ZodString>;
            verified_phone_number: ZodReadonly<
                ZodUnion<readonly [ZodReadonly<ZodString>, ZodNull]>,
            >;
        },
        $strip,
    > = ...

    A profile represents your user in our system. This is where you can change information about your user. This information is available to any OAuth client regardless of requested scopes, and you can use it to populate user information in third-party applications.