-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemweb.schema.json
More file actions
35 lines (35 loc) · 799 Bytes
/
Copy pathemweb.schema.json
File metadata and controls
35 lines (35 loc) · 799 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
33
34
35
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"sources": {
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"description": "Path or absolute URL"
},
{
"type": "object",
"properties": {
"from": {
"$ref": "#/properties/sources/items/anyOf/0"
},
"to": {
"$ref": "#/properties/sources/items/anyOf/0"
}
},
"required": ["from", "to"],
"additionalProperties": false
}
]
}
}
},
"required": ["name", "sources"],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}