Skip to content

Commit 3b1db4e

Browse files
committed
chg: [api] v1
1 parent 79fd3ad commit 3b1db4e

File tree

5 files changed

+427
-17
lines changed

5 files changed

+427
-17
lines changed

docs/_sidebar.md

+5
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,10 @@
1010
- [Importer](docs/importer.md)
1111
- [Notifications](docs/notifications.md)
1212
- [API](docs/api.md)
13+
- [Case](docs/api.md#case)
14+
- [Task](docs/api.md#task)
15+
- [Admin](docs/api.md#admin)
16+
- [Templating](docs/api.md#templating)
17+
- [Importer](docs/api.md#importer)
1318
- [Screenshots](docs/screenshots.md "Some screenshots of the project")
1419
- [Contributions](docs/contributions.md "How to contribute to the project")

docs/analyzers.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,24 @@ Array of string. Each element is a new line of `Note selected`. (see `/analyzer`
1616

1717
### To flowintel
1818

19-
Dictionary
19+
Dictionary with `results` as main key.
2020

2121
```json
2222
{
23-
"8.8.8.8": { // Element queried
24-
"circl_passivedns": { // module used in the analyzer
25-
"results"{ // required key
23+
"results": {
24+
"8.8.8.8": { // Element queried
25+
"circl_passivedns": { // module used in the analyzer
26+
"results"{ // required key
27+
...
28+
}
29+
},
30+
"dns": {
2631
...
2732
}
2833
},
29-
"dns": {
30-
...
31-
        }
32-
},
3334
"127.0.0.1": {
34-
...
35+
...
36+
}
3537
}
3638
}
3739
```

0 commit comments

Comments
 (0)