This repository was archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathschema-indicator-0-1.json
83 lines (83 loc) · 2.49 KB
/
schema-indicator-0-1.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
{
"id": "https://www.paloaltonetworks.com/minemeld-indicator-schema-0-1#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "schema for minemeld attributes",
"type": "object",
"required": [ "type" ],
"properties": {
"type": {
"description": "type of the indicator",
"type": "string",
"enum": [
"IPv4",
"IPv6",
"domain",
"URL",
"sha512",
"sha256",
"sha1",
"md5",
"ssdeep",
"mutex",
"windows-registry-value",
"user-agent.fragment",
"file.name",
"process.command_line",
"email-addr",
"autonomous-system"
]
},
"direction": {
"description": "direction of the session, applies to IPv4",
"type": "string",
"enum": ["inbound", "outbound"]
},
"first_seen": {
"type": "integer",
"format": "utc-millisec",
"description": "time the indicator has been seen for the first time. <"
},
"last_seen": {
"type": "integer",
"format": "utc-millisec",
"description": "time the indicator has been seen for the last time. >"
},
"sources": {
"description": "list of sources for this indicator",
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"confidence": {
"type": "integer",
"description": "confidence in the indicator 0-100",
"minimum": 0,
"maximum": 100
},
"share_level": {
"description": "share level of indicator",
"type": "string",
"enum": ["white", "green", "amber", "red"]
},
"country": {
"type": "string",
"description": "ISO country code (IPv4 and IPv6 only)",
"minLength": 2,
"maxLength": 2
},
"AS": {
"type": "string",
"description": "Autonmous system (IPv4 and IPv6 only)"
}
},
"patternProperties": {
"^_[a-zA-Z0-9$_]*$": {
"description": "private properties"
},
"^$[a-zA-Z0-9$_]*$": {
"description": "reserved, temporary properties"
}
}
}