-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathedck-v1.json
125 lines (125 loc) · 3.65 KB
/
edck-v1.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/edck/edck-v1.json",
"title": "Consistency Check ID",
"description": "Consistency check ID",
"type": "object",
"properties": {
"formatVersion": {
"title": "ABAP File Format Version",
"description": "The ABAP file format version",
"type": "string",
"const": "1"
},
"header": {
"title": "Header",
"description": "Header",
"type": "object",
"properties": {
"description": {
"title": "Description",
"description": "Description of the ABAP object",
"type": "string",
"maxLength": 60
},
"originalLanguage": {
"title": "Original Language",
"description": "Original language of the ABAP object",
"type": "string",
"minLength": 2
},
"abapLanguageVersion": {
"title": "ABAP Language Version",
"description": "ABAP language version",
"type": "string",
"enum": [
"standard",
"cloudDevelopment"
],
"enumTitles": [
"Standard",
"ABAP Cloud Development"
],
"enumDescriptions": [
"Standard",
"ABAP cloud development"
],
"default": "standard"
}
},
"additionalProperties": false,
"required": [
"description",
"originalLanguage"
]
},
"generalInformation": {
"title": "General Information",
"description": "General information of consistency check ID",
"type": "object",
"properties": {
"checkCategory": {
"title": "Check Category",
"description": "Consistency check category",
"type": "string",
"enum": [
"existenceCheck",
"statusCheck",
"edocumentExistenceCheck",
"contentMismatchCheck"
],
"enumTitles": [
"Existence Check",
"Status Check",
"Edocument Existence Check",
"Content Mismatch Check"
],
"enumDescriptions": [
"Existence check",
"Status check",
"Edocument existence check",
"Content mismatch check"
],
"default": "existenceCheck"
},
"checkClassification": {
"title": "Check Classification",
"description": "Consistency check ID classification",
"type": "string",
"enum": [
"coreDeliveredChecks",
"additionalImplementedChecks"
],
"enumTitles": [
"Core Delivered Checks",
"Additionally (Extended) Implemented Checks"
],
"enumDescriptions": [
"Core delivered checks",
"Additionally (Extended) implemented checks"
],
"default": "coreDeliveredChecks"
},
"additionalCheckClass": {
"title": "Additional Check Class",
"description": "Consistency check class",
"type": "string",
"maxLength": 30
},
"resultProcessDerived": {
"title": "Result Process Derived",
"description": "Result process derived",
"type": "boolean"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"required": [
"formatVersion",
"header",
"generalInformation"
]
}