-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIT_value_schema.json
More file actions
77 lines (77 loc) · 1.62 KB
/
IT_value_schema.json
File metadata and controls
77 lines (77 loc) · 1.62 KB
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
75
76
77
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"_id": {
"type": "integer"
},
"Mon_role": {
"type": "string"
},
"time_slot": {
"type": "string"
},
"Creneau MEP": {
"type": "string",
"pattern": "^\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2} \\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}$"
},
"Ref_MEP": {
"type": "string",
"pattern": "^MEP_\\d+$"
},
"Statut_MEP": {
"type": "string"
},
"operation_notice_date": {
"type": "string",
"format": "date"
},
"operation_end_report_date": {
"type": "string",
"format": "date"
},
"post_operation_report_date": {
"type": "string"
},
"application": {
"type": "string"
},
"operation_title": {
"type": "string"
},
"service_impact": {
"type": "string"
},
"Preparateur MEP": {
"type": "string",
"pattern": "^user_\\d+$"
},
"operation_owner": {
"type": "string",
"pattern": "^user_\\d+$"
},
"Ref_Projet": {
"type": "string"
}
},
"required": [
"_id",
"Mon_role",
"time_slot",
"Creneau MEP",
"Ref_MEP",
"Statut_MEP",
"operation_notice_date",
"operation_end_report_date",
"post_operation_report_date",
"application",
"operation_title",
"service_impact",
"Preparateur MEP",
"operation_owner",
"Ref_Projet"
]
}
}