-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.example.json
81 lines (81 loc) · 2.21 KB
/
rules.example.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[
{
"name": "All aircraft below 10,000",
"identifier": "acft_10k_and_below",
"description": "Any aircraft with an altitude at or below 10,000ft",
"enabled": true,
"conditions": [
{
"type": "altitude",
"value": "10000",
"operator": "maximum"
}
]
},
{
"name": "UAL B757-200",
"identifier": "Northbound_United_B75s_12k-15k",
"description": "United Airlines Boeing 757-200's between 12,000 and 15,000ft heading north after takeoff",
"enabled": true,
"conditions": [
{
"type": "altitude",
"value": "15000",
"operator": "maximum"
},
{
"type": "altitude",
"value": "12000",
"operator": "minimum"
},
{
"type": "operator_airline_designator",
"value": "UAL",
"operator": "equals"
},
{
"type": "aircraft_type_designator",
"value": "B752",
"operator": "equals"
},
{
"type": "heading",
"value": "340,020",
"operator": "equals"
},
{
"type": "vertical_speed",
"value": "500",
"operator": "minimum"
}
]
},
{
"name": "Grandma's Flight Home",
"identifier": "grandma",
"description": "Grandma's Flight Home Arriving on Christmas Eve",
"enabled": true,
"conditions": [
{
"type": "callsign",
"value": "DAL2",
"operator": "equals"
},
{
"type": "date",
"value": "2022-12-24",
"operator": "minimum"
},
{
"type": "date",
"value": "2022-12-24",
"operator": "maximum"
},
{
"type": "area",
"value": "LI",
"operator": "equals"
}
]
}
]