forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalgit.schema.json
More file actions
32 lines (32 loc) · 929 Bytes
/
Copy pathlocalgit.schema.json
File metadata and controls
32 lines (32 loc) · 929 Bytes
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "localgit.schema.json#",
"title": "LocalGitExternalService",
"description": "Configuration for integration local Git repositories.",
"allowComments": true,
"type": "object",
"additionalProperties": false,
"required": [],
"properties": {
"repos": {
"title": "List of paths/patterns to Git repos.",
"type": "array",
"items": {
"type": "object",
"title": "LocalGitRepoPattern",
"additionalProperties": false,
"description:": "Glob pattern.",
"properties": {
"pattern": {
"type": "string",
"examples": ["path/to/my/repo", "path/to/my/repo.git/"]
},
"group": {
"type": "string",
"description:": "The group all repsitories matching the pattern should be associated with."
}
}
}
}
}
}