-
Notifications
You must be signed in to change notification settings - Fork 0
/
rainconfig.schema.json
28 lines (28 loc) · 1.04 KB
/
rainconfig.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
{
"type": "object",
"additionalProperties": true,
"properties": {
"include": {
"type": "array",
"description": "Specifies a list of directories (files/folders) to be included in watch. 'src' files are included by default and folders will be watched recursively for .rain files.",
"minItems": 1,
"items": {
"type": "string",
"title": "File/Folder Directory"
}
},
"subgraphs": {
"description": "Specifies additional subgraph endpoints to search for a meta for a given hash, default rain subgraphs are always included.",
"markdownDescription": "Specifies additional subgraph endpoints to search for a meta for a given hash, [default rain subgraphs](https://github.com/rainprotocol/meta/blob/master/src/rainSubgraphs.ts) are always included.",
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"pattern": "^https:|^wss:"
},
"examples": [
["https://subgraph1-endpoint-url", "https://subgraph2-endpoint-url"]
]
}
}
}