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