-
-
Notifications
You must be signed in to change notification settings - Fork 576
Expand file tree
/
Copy pathpagetual.schema.json
More file actions
27 lines (27 loc) · 720 Bytes
/
pagetual.schema.json
File metadata and controls
27 lines (27 loc) · 720 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
{
"title": "Sites data",
"description": "Object containing site config",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"title": "Site Name",
"description": "The site's name.",
"examples": [
"Google"
],
"type": "string"
},
"url": {
"title": "Site Url",
"description": "The Regexp of site's url.",
"examples": [
"^https:\/\/google\\.com\/"
],
"type": "string"
}
},
"required": ["name", "url"]
}
}