File size: 456 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export default {
	id: 'sites-stats-visits-response',
	title: 'Stats Visits Response',
	type: 'object',
	$schema: 'http://json-schema.org/draft-04/schema#',
	properties: {
		data: {
			type: 'array',
			items: {
				type: 'array',
				items: {
					// Valid for NULL from unsupported stats fields in hourly data
					type: [ 'integer', 'string', 'array', null ],
				},
			},
		},
		fields: {
			type: 'array',
		},
		unit: {
			type: 'string',
		},
	},
};