import { types, bool } from '../../../../misc/schema';
/**
* フェデレーションに関するチャート
*/
export const schema = {
type: types.object,
optional: bool.false, nullable: bool.false,
properties: {
instance: {
total: {
type: types.number,
description: 'インスタンス数の合計'
},
inc: {
description: '増加インスタンス数'
dec: {
description: '減少インスタンス数'
}
};
export const name = 'federation';