-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfields.json
75 lines (75 loc) · 1.79 KB
/
fields.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
[
{
"display": "Has Geolocation",
"content_types": [
"ipam.prefix"
],
"type": "boolean",
"name": "geoloc_has_location",
"label": "Has Geolocation",
"group_name": "Geolocation",
"description": "When this option is disabled, the prefix will be explicitly flagged as not having a geolocation. To inherit the location from the parent prefix, leave this enabled and leave the other fields blank.",
"required": true,
"search_weight": 1000,
"filter_logic": "loose",
"ui_visibility": "read-write",
"default": true,
"weight": 10
},
{
"display": "Country",
"content_types": [
"ipam.prefix"
],
"type": "select",
"data_type": "string",
"name": "geoloc_country",
"label": "Country",
"group_name": "Geolocation",
"description": "",
"required": false,
"search_weight": 1000,
"filter_logic": "loose",
"ui_visibility": "read-write",
"default": null,
"weight": 20,
"choice_set": "geoloc_country"
},
{
"display": "Region",
"content_types": [
"ipam.prefix"
],
"type": "select",
"data_type": "string",
"name": "geoloc_region",
"label": "Region",
"group_name": "Geolocation",
"description": "",
"required": false,
"search_weight": 1000,
"filter_logic": "loose",
"ui_visibility": "read-write",
"default": null,
"weight": 30,
"choice_set": "geoloc-region"
},
{
"display": "City",
"content_types": [
"ipam.prefix"
],
"type": "text",
"data_type": "string",
"name": "geoloc_city",
"label": "City",
"group_name": "Geolocation",
"description": "",
"required": false,
"search_weight": 1000,
"filter_logic": "loose",
"ui_visibility": "read-write",
"default": null,
"weight": 40
}
]