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

30 lines
659 B
TypeScript

/**
* フェデレーションに関するチャート
*/
export const schema = {
type: 'object' as const,
optional: false as const, nullable: false as const,
properties: {
instance: {
type: 'object' as const,
optional: false as const, nullable: false as const,
properties: {
total: {
type: 'number' as const,
optional: false as const, nullable: false as const,
},
inc: {
type: 'number' as const,
optional: false as const, nullable: false as const,
},
dec: {
type: 'number' as const,
optional: false as const, nullable: false as const,
},
}
}
}
};
export const name = 'federation';