Skip to content
Snippets Groups Projects
per-user-notes.ts 1003 B
Newer Older
import Chart from '../../core';

export const name = 'perUserNotes';

export const schema = {
syuilo's avatar
syuilo committed
	type: 'object' as const,
	optional: false as const, nullable: false as const,
	properties: {
		total: {
syuilo's avatar
syuilo committed
			type: 'number' as const,
			optional: false as const, nullable: false as const,
syuilo's avatar
syuilo committed
			type: 'number' as const,
			optional: false as const, nullable: false as const,
syuilo's avatar
syuilo committed
			type: 'number' as const,
			optional: false as const, nullable: false as const,
syuilo's avatar
syuilo committed
			type: 'object' as const,
			optional: false as const, nullable: false as const,
			properties: {
				normal: {
syuilo's avatar
syuilo committed
					type: 'number' as const,
					optional: false as const, nullable: false as const,
syuilo's avatar
syuilo committed
					type: 'number' as const,
					optional: false as const, nullable: false as const,
syuilo's avatar
syuilo committed
					type: 'number' as const,
					optional: false as const, nullable: false as const,
syuilo's avatar
syuilo committed
			},
syuilo's avatar
syuilo committed
	},
export const entity = Chart.schemaToEntity(name, schema, true);