Skip to content

Commit 7ee5ab2

Browse files
Copy docs from ggscout-0.5.5
1 parent 755cff6 commit 7ee5ab2

File tree

11 files changed

+14346
-0
lines changed

11 files changed

+14346
-0
lines changed

.cache/schemas/v0.18.4/inventory-config.schema.json

Lines changed: 1102 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"$id": "https://gitguardian.com/inventory-log-level",
3+
"$schema": "https://json-schema.org/draft/2019-09/schema",
4+
"title": "LogLevel",
5+
"type": "string",
6+
"enum": [
7+
"debug",
8+
"info",
9+
"warn",
10+
"error"
11+
]
12+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"type": "object",
4+
"$id": "https://gitguardian.com/jobs",
5+
"minProperties": 0,
6+
"properties": {
7+
"ping": {
8+
"type": "object",
9+
"properties": {
10+
"schedule": {
11+
"type": "string",
12+
"default": "* * * * *"
13+
}
14+
}
15+
},
16+
"fetch": {
17+
"description": "Job that fetches data from defined sources. If send is set to `true`, send collected data to the configured GitGuardian instance.",
18+
"type": "object",
19+
"properties": {
20+
"schedule": {
21+
"type": "string",
22+
"default": "*/15 * * * *"
23+
},
24+
"enabled": {
25+
"type": "boolean",
26+
"default": true
27+
},
28+
"send": {
29+
"type": "boolean",
30+
"default": true
31+
}
32+
}
33+
},
34+
"sync": {
35+
"type": "object",
36+
"properties": {
37+
"schedule": {
38+
"type": "string",
39+
"default": "* * * * *"
40+
},
41+
"enabled": {
42+
"type": "boolean",
43+
"default": false
44+
}
45+
}
46+
}
47+
}
48+
}

0 commit comments

Comments
 (0)