-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRC-REF.schema.json
More file actions
55 lines (55 loc) · 1.84 KB
/
Copy pathRC-REF.schema.json
File metadata and controls
55 lines (55 loc) · 1.84 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "classpath:/json-schema/schema#",
"x-id": "RC-REF.schema.json#",
"version": "26.04.28",
"example": "example.json#",
"type": "object",
"title": "reference",
"required": [
"distributionID"
],
"properties": {
"distributionID": {
"type": "string",
"title": "Identifiant du message référencé",
"x-health-only": false,
"x-cols": 6,
"example": "example.json#/distributionID",
"description": "Identifiant unique du message référencé"
},
"refused": {
"type": "boolean",
"title": "Indicateur de refus de message",
"x-health-only": false,
"x-cols": 6,
"example": "example.json#/refused",
"description": "Indique si le message acquitté a été refusé"
},
"errorDistributionID": {
"type": "string",
"title": "Identifiant du message d'erreur lié",
"x-health-only": false,
"x-cols": 6,
"example": "example.json#/errorDistributionID",
"description": "Identifiant unique du message d'erreur lié"
},
"step": {
"type": "string",
"title": "Etape d'intégration du message",
"x-health-only": false,
"x-cols": 6,
"example": "example.json#/step",
"description": "Nomenclature permettant d'identifier les différentes étapes d'intégration et de consultation du message dans le système émetteur",
"enum": [
"RECU",
"ERREUR",
"INTEGRE",
"CONSULTE",
"SUPPRIME"
]
}
},
"definitions": {},
"additionalProperties": false
}