1
0
Files
pawkey-sk/src/services/chart/charts/schemas/per-user-reactions.ts
T
2021-06-08 14:24:21 +09:00

32 lines
659 B
TypeScript

export 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 name = 'perUserReaction';