-
Notifications
You must be signed in to change notification settings - Fork 205
/
Copy pathRecipientSideEffects.json
95 lines (95 loc) · 2.71 KB
/
RecipientSideEffects.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
92
93
94
95
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"VaccinationCertificate": {
"$ref": "#/definitions/RecipientSideEffects"
}
},
"required": [
"RecipientSideEffects"
],
"title": "RecipientSideEffects",
"definitions": {
"RecipientSideEffects": {
"type": "object",
"title": "Recipient SideEffects",
"required": [
"recipientCertificateId",
"recipientMobileNumber"
],
"properties": {
"recipientCertificateId": {
"type": "string"
},
"sideEffectsResponse": {
"$id": "#/properties/sideEffectsResponse",
"type": "array",
"items": {
"$ref": "#/definitions/SideEffectsResponse"
},
"title": "SideEffectsResponse"
}
}
},
"SideEffectsResponse": {
"$id": "#/properties/SideEffectsResponse",
"type": "object",
"title": "SideEffectsResponse",
"description": "Indian address format",
"examples": [
{
"symptom": "rapid heartbeat",
"response": "yes"
}
],
"required": [
"symptom",
"response"
],
"properties": {
"symptom": {
"$id": "#/properties/sideEffectsResponse/properties/symptom",
"type": "string",
"title": "symptom",
"description": "symptom"
},
"response": {
"$id": "#/properties/sideEffectsResponse/properties/response",
"type": "string",
"title": "response",
"description": "response"
}
}
}
},
"_osConfig": {
"osComment": [
"This section contains the OpenSABER specific configuration information",
"privateFields: Optional; list of field names to be encrypted and stored in database",
"signedFields: Optional; list of field names that must be pre-signed",
"indexFields: Optional; list of field names used for creating index. Enclose within braces to indicate it is a composite index. In this definition, (serialNum, code) is a composite index and name is a single column index.",
"uniqueIndexFields: Optional; list of field names used for creating unique index. Field names must be different from index field name",
"systemFields: Optional; list of fields names used for system standard information like created, updated timestamps and userid"
],
"privateFields": [
""
],
"signedFields": [
""
],
"indexFields": [
"recipientCertificateId",
"recipientMobileNumber"
],
"uniqueIndexFields": [
""
],
"systemFields": [
"osCreatedAt",
"osUpdatedAt",
"osCreatedBy",
"osUpdatedBy"
]
}
}