iceshrimp-legacy/packages/backend/src/services/chart/charts/entities/per-user-reactions.ts
2021-12-14 18:12:37 +09:00

33 lines
672 B
TypeScript

import Chart from '../../core';
export const name = 'perUserReaction';
const logSchema = {
/**
* 被リアクション数
*/
count: {
type: 'number' as const,
optional: false as const, nullable: false as const,
},
};
export const schema = {
type: 'object' as const,
optional: false as const, nullable: false as const,
properties: {
local: {
type: 'object' as const,
optional: false as const, nullable: false as const,
properties: logSchema,
},
remote: {
type: 'object' as const,
optional: false as const, nullable: false as const,
properties: logSchema,
},
},
};
export const entity = Chart.schemaToEntity(name, schema, true);