export const logSchema = {
/**
* フォローしている合計
*/
count: {
type: 'number' as const,
optional: false as const, nullable: false as const,
},
};
* ユーザーごとのリアクションに関するチャート
export const schema = {
type: 'object' as const,
properties: {
local: {
properties: logSchema
remote: {
}
export const name = 'perUserReaction';