-
Notifications
You must be signed in to change notification settings - Fork 0
/
codetf.schema.json
340 lines (327 loc) · 10.7 KB
/
codetf.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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://pixee.ai/codetf.schema.json",
"title": "Code Transformation Format (CodeTF)",
"description": "A format for representing the results of code transformations",
"type": "object",
"properties": {
"run": {
"description": "Metadata about the run that produced the results",
"$ref": "#/definitions/run"
},
"results": {
"description": "The results of the code transformations that were applied during analysis",
"type": "array",
"items": { "$ref": "#/definitions/result" },
"minItems": 0
}
},
"definitions": {
"run": {
"type": "object",
"properties": {
"vendor": {
"type": "string",
"description": "Name of the organization that produced the tool"
},
"tool": {
"type": "string",
"description": "Name of the tool that produced the CodeTF results"
},
"version": {
"type": "string",
"description": "Version of the tool that produced the CodeTF results"
},
"projectName": {
"type": "string",
"description": "Name of the project that was analyzed"
},
"commandLine": {
"type": "string",
"description": "The command line used to re-create this run"
},
"elapsed": {
"type": ["integer", "string"],
"description": "How long, in miliseconds, the analysis took to execute"
},
"directory": {
"type": "string",
"description": "The location on disk of the code directory being scanned"
},
"sarifs": {
"type": "array",
"items": { "$ref": "#/definitions/sarif" }
}
},
"required": ["vendor", "tool", "version", "commandLine", "elapsed", "directory"]
},
"result": {
"type": "object",
"properties": {
"codemod": {
"type": "string",
"description": "ID of the transformation that was applied"
},
"summary": {
"type": "string",
"description": "A short phrase describing the changes made"
},
"description": {
"type": "string",
"description": "A longer description of the changes made"
},
"detectionTool": {
"description": "Metadata about the tool that detected the issue",
"$ref": "#/definitions/detectionTool"
},
"references": {
"type": "array",
"items": { "$ref": "#/definitions/reference" }
},
"properties": {
"type": "object",
"description": "Vendor-specific properties to help storytelling",
"additionalProperties": true
},
"failure": {
"type": "object",
"description": "If present indicates that the codemod failed to run",
"properties": {
"reason": {
"type": "string",
"description": "A short description of why the codemod failed"
},
"exception": {
"type": "string",
"description": "More detailed information about the exception that caused the failure"
}
},
"required": ["reason"]
},
"failedFiles": {
"type": "array",
"description": "A set of file paths for files that the tool failed to parse or transform",
"items": { "type": "string" }
},
"changeset": {
"type": "array",
"description": "The changes for a given codemod",
"items": { "$ref": "#/definitions/changeset" },
"minItems": 0
},
"unfixed": {
"type": "array",
"description": "A set of file paths for files that the tool failed to fix",
"items": { "$ref": "#/definitions/unfixedFinding" }
}
},
"required": ["codemod", "summary", "description", "changeset"]
},
"sarif": {
"type": "object",
"properties": {
"artifact": {
"type": "string",
"description": "The file containing the SARIF or other input"
},
"sha1": {
"type": "string",
"description": "SHA1 hash representing the artifact"
}
},
"required": ["artifact", "sha1"]
},
"reference": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL of the reference"
},
"description": {
"type": "string",
"description": "A description of the reference"
}
},
"required": ["url"]
},
"changeset": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The path of the file (relative to the directory) that was changed"
},
"diff": {
"type": "string",
"description": "The unified diff format of the changes made to the file"
},
"changes": {
"type": "array",
"items": { "$ref": "#/definitions/change" },
"minItems": 1
},
"ai": {
"description": "Metadata about AI tool used to generate the fix",
"$ref": "#/definitions/ai"
},
"strategy": {
"type": "string",
"description": "The strategy used to generate the fix",
"enum": ["ai", "hybrid", "deterministic"]
},
"provisional": {
"type": "boolean",
"description": "Indicates that the fix is provisional"
}
},
"required": ["path", "diff", "changes"]
},
"change": {
"type": "object",
"properties": {
"lineNumber": {
"type": ["integer", "string"],
"description": "The line number that was changed"
},
"description": {
"type": "string",
"description": "A human-readable description of the change"
},
"diffSide": {
"type": "string",
"description": "The side of the diff that the change is on. 'right' indicates that the lineNumber and description correspond to a position in the new or modified code. 'left' indicates these fields correspond to a position in the original code. Descriptions of the change itself should generally use 'right', except in cases where the only change is a deletion. In contrast, 'left' can be used to describe the original problem being fixed.",
"enum": ["left", "right", "LEFT", "RIGHT"]
},
"properties": {
"type": "object",
"description": "Vendor-specific properties to help storytelling",
"additionalProperties": true
},
"packageActions": {
"type": "array",
"description": "The package actions that were needed to support changes to the file",
"items": { "$ref": "#/definitions/packageAction" }
},
"findings": {
"type": "array",
"description": "List of findings that were fixed at this location",
"items": { "$ref": "#/definitions/detector/fixedFinding" }
}
},
"required": ["lineNumber", "diffSide"]
},
"packageAction": {
"type": "object",
"properties": {
"action": {
"type": "string",
"description": "One of 'add' or 'remove'",
"enum": ["add", "remove", "ADD", "REMOVE"]
},
"result": {
"type": "string",
"description": "One of 'completed', 'failed', or 'skipped'",
"enum": ["completed", "failed", "skipped", "COMPLETED", "FAILED", "SKIPPED"]
},
"package": {
"type": "string",
"description": "The package that was added or removed"
}
},
"required": ["action", "result", "package"]
},
"ai": {
"type": "object",
"properties": {
"provider": {
"type": "string",
"description": "Name of the AI provider used to generate this fix"
},
"model": {
"type": "string",
"description": "Name of the model used to generate this fix"
},
"tokens": {
"type": "integer",
"description": "Total number of tokens used to generate the fix"
}
}
},
"detectionTool": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the tool that detected the issue"
}
},
"additionalProperties": true,
"required": ["name"]
},
"detector": {
"fixedFinding": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for the finding, if provided by the detection tool. Concerning logically equivalent findings across scans, this identifier has the same semantics as `guid` from SARIF."
},
"rule": {
"$ref": "#/definitions/detector/rule",
"description": "The rule that detected the issue"
}
},
"additionalProperties": true,
"required": ["rule"]
},
"unfixedFinding": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for the finding, if provided by the detection tool. Concerning logically equivalent findings across scans, this identifier has the same semantics as `guid` from SARIF."
},
"rule": {
"$ref": "#/definitions/detector/rule",
"description": "The rule that detected the issue"
},
"path": {
"type": "string",
"description": "The path of the file (relative to the directory) that was not fixed"
},
"lineNumber": {
"type": "integer",
"description": "The line number that was not fixed"
},
"reason": {
"type": "string",
"description": "A human-readable description of the reason the file was not fixed"
}
},
"additionalProperties": true,
"required": ["rule", "path", "reason"]
},
"rule": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the rule"
},
"name": {
"type": "string",
"description": "The name of the rule. Potentially the same as the ID, but more human-readable"
},
"url": {
"type": "string",
"description": "Link to the rule documentation"
}
},
"additionalProperties": false,
"required": ["id", "name"]
}
}
},
"required": ["run", "results"]
}