-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlgui2ElementLocator.json
More file actions
43 lines (43 loc) · 1.27 KB
/
lgui2ElementLocator.json
File metadata and controls
43 lines (43 loc) · 1.27 KB
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
36
37
38
39
40
41
42
43
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.lavishsoft.com/schema/lgui2ElementLocator.json",
"description": "A LavishGUI2 Element Locator",
"definitions": {},
"oneOf": [
{
"type": "array"
},
{
"type": "object",
"properties": {
"elementName": {
"type": "string"
},
"elementType": {
"type": "string"
},
"elementTree": {
"type": "string",
"enum": [
"logical",
"visual"
]
},
"flags": {
"oneOf": [
{
"type": "string"
},
{
"type":"array",
"items":{
"type":"string",
"enum":["none","any","child","sibling","ancestor","cousin","descendant","self","global","visible"]
}
}
]
}
}
}
]
}