File size: 427 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const domainWhoisSchema = {
	type: 'object',
	additionalProperties: true,
	patternProperties: {
		first_name: { type: 'string' },
		last_name: { type: 'string' },
		email: { type: 'string' },
		phone: { type: 'string' },
		address1: { type: 'string' },
		address2: { type: 'string' },
		city: { type: 'string' },
		state: { type: 'string' },
		postal_code: { type: 'string' },
		country_code: { type: 'string' },
	},
};