-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchema
74 lines (74 loc) · 2.08 KB
/
Schema
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Employee Data",
"description": "Data on the Employees",
"type": "object",
"properties": {
"Employee": {
"description": "Employee Description",
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"description": "Name",
"type": "string"
},
"Age": {
"description": "Age",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"GenderIdentity": {
"description": "Gender Identity",
"type": "string"
},
"Height": {
"description": "Height",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"Weight": {
"description": "Weight",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"BodyTemperature": {
"description": "Body Temperature",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"PulseRate": {
"description": "Pulse Rate",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"BloodPressure": {
"description": "Blood Pressure",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"RespirationRate": {
"description": "Respiration Rate",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"AvgHoursOfExercisePerWeek": {
"description": "Avg Hours of Exercise per week",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"VacationBalance": {
"description": "Vacation Balance",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
},
"AvgHoursOfWorkPerWeek": {
"description": "Avg Hours of Work Per Week",
"type": "string",
"pattern": "^-?[0-9]{1,4}$"
}
}
}
}
}
}