-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresults.schema.json
91 lines (91 loc) · 2.55 KB
/
results.schema.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$defs": {
"Result": {
"additionalProperties": false,
"properties": {
"vendor": {
"title": "Vendor",
"type": "string"
},
"application_id": {
"title": "Application Id",
"type": "string"
},
"version": {
"title": "Version",
"type": "string"
},
"equiv_releases": {
"items": {
"type": "string"
},
"title": "Equiv Releases",
"type": "array"
},
"doc_type": {
"items": {
"enum": [
"LDO",
"LAB",
"RAD",
"VPS",
"RSA",
"CERT_VACC",
"SING_VACC",
"LAB_TRASF",
"PSS"
],
"type": "string"
},
"title": "Doc Type",
"type": "array"
},
"service": {
"items": {
"enum": [
"VALIDATION",
"PUBLICATION"
],
"type": "string"
},
"title": "Service",
"type": "array"
},
"date": {
"format": "date",
"title": "Date",
"type": "string"
},
"gtw_version": {
"const": "1.0",
"title": "Gtw Version"
}
},
"required": [
"vendor",
"application_id",
"version",
"doc_type",
"service",
"date",
"gtw_version"
],
"title": "Result",
"type": "object"
}
},
"properties": {
"results": {
"items": {
"$ref": "#/$defs/Result"
},
"title": "Results",
"type": "array"
}
},
"required": [
"results"
],
"title": "Results",
"type": "object"
}