forked from mlsecproject/combine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcombine-schema.json
54 lines (52 loc) · 1.35 KB
/
combine-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
{
"type":"object",
"$schema": "http://json-schema.org/draft-03/schema",
"id": "http://jsonschema.net",
"required":false,
"properties":{
"date_fetched": {
"type":"string",
"id": "http://jsonschema.net/date_fetched",
"required":true
},
"indicators": {
"type":"array",
"minitems": "1",
"id": "http://jsonschema.net/indicators",
"required":true,
"items":
{
"type":"object",
"id": "http://jsonschema.net/indicators/0",
"required":true,
"properties":{
"direction": {
"type":"string",
"id": "http://jsonschema.net/indicators/0/direction",
"required":true
},
"datatype": {
"type":"string",
"id": "http://jsonschema.net/indicators/0/type",
"required":true
},
"notes": {
"type":"string",
"id": "http://jsonschema.net/indicators/0/type",
"required":false
},
"entity": {
"type":"string",
"id": "http://jsonschema.net/indicators/0/value",
"required":true
}
}
}
},
"source": {
"type":"string",
"id": "http://jsonschema.net/source",
"required":true
}
}
}