55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
|
export const schema = {
|
||
|
type: 'object' as 'object',
|
||
|
properties: {
|
||
|
/**
|
||
|
* 集計期間時点での、全ドライブファイル数
|
||
|
*/
|
||
|
totalCount: {
|
||
|
type: 'number' as 'number',
|
||
|
description: '集計期間時点での、全ドライブファイル数'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 集計期間時点での、全ドライブファイルの合計サイズ
|
||
|
*/
|
||
|
totalSize: {
|
||
|
type: 'number' as 'number',
|
||
|
description: '集計期間時点での、全ドライブファイルの合計サイズ'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 増加したドライブファイル数
|
||
|
*/
|
||
|
incCount: {
|
||
|
type: 'number' as 'number',
|
||
|
description: '増加したドライブファイル数'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 増加したドライブ使用量
|
||
|
*/
|
||
|
incSize: {
|
||
|
type: 'number' as 'number',
|
||
|
description: '増加したドライブ使用量'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 減少したドライブファイル数
|
||
|
*/
|
||
|
decCount: {
|
||
|
type: 'number' as 'number',
|
||
|
description: '減少したドライブファイル数'
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 減少したドライブ使用量
|
||
|
*/
|
||
|
decSize: {
|
||
|
type: 'number' as 'number',
|
||
|
description: '減少したドライブ使用量'
|
||
|
},
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export const name = 'perUserDrive';
|