-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-report.schema.json
More file actions
52 lines (52 loc) · 1.08 KB
/
agent-report.schema.json
File metadata and controls
52 lines (52 loc) · 1.08 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
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://meshtastic-sdk.github.io/schemas/agent-report.schema.json",
"title": "AgentReport",
"type": "object",
"required": [
"agent",
"verdict",
"summary",
"evidence",
"commandsRun",
"risks",
"followUps"
],
"properties": {
"agent": {
"type": "string"
},
"verdict": {
"type": "string",
"enum": ["pass", "pass-with-risk", "fail", "info"]
},
"summary": {
"type": "string"
},
"evidence": {
"type": "array",
"items": {
"type": "object",
"required": ["path", "note"],
"properties": {
"path": { "type": "string" },
"note": { "type": "string" }
},
"additionalProperties": false
}
},
"commandsRun": {
"type": "array",
"items": { "type": "string" }
},
"risks": {
"type": "array",
"items": { "type": "string" }
},
"followUps": {
"type": "array",
"items": { "type": "string" }
}
},
"additionalProperties": false
}