-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathHostAgent.json
43 lines (43 loc) · 1.14 KB
/
HostAgent.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "#HostAgent",
"description": "A software agent or sensor that runs on a host/endpoint.",
"type": "object",
"allOf": [
{
"$ref": "#Entity"
},
{
"properties": {
"function": {
"description": "The function of sensor/agent",
"type": "array",
"items": {
"type": "string",
"enum": [
"endpoint-compliance",
"endpoint-configuration",
"endpoint-protection",
"anti-malware",
"DLP",
"FIM",
"host-firewall",
"HIDS",
"log-monitor",
"activity-monitor",
"vulnerability-detection",
"container-security",
"other"
]
}
},
"lastSeenOn": {
"description": "The timestamp (in milliseconds since epoch) when the device either last checked in or was scanned.",
"type": ["number", "null"],
"format": "date-time"
}
},
"required": ["function", "lastSeenOn"]
}
]
}