This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
catalogMember.json
79 lines (79 loc) · 3.2 KB
/
catalogMember.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
{
"type": "object",
"defaultProperties": [
"name",
"type",
"url"
],
"properties": {
"name": {
"type": "string",
"title": "#Name",
"description": "The name of the item."
},
"description": {
"type": "string",
"title": "#Description",
"description": "The description of the item."
},
"info": {
"type": "array",
"title": "#Info",
"description": "The array of section titles and contents for display in the layer info panel.\nIn future this may replace 'description' above - this list should not contain\nsections named 'description' or 'Description' if the 'description' property\nis also set as both will be displayed.\nThe object is of the form {name:string, content:string}.\nContent will be rendered as Markdown with HTML.",
"format": "tabs",
"items": {
"type": "object"
}
},
"infoSectionOrder": {
"type": "array",
"title": "#Info section order",
"description": "The array of section titles definining the display order of info sections. If this property\nis not defined, {@link CatalogItemInfoViewModel.infoSectionOrder} is used.",
"format": "tabs",
"items": {
"type": "string"
}
},
"isUserSupplied": {
"type": "boolean",
"title": "#Is user supplied",
"description": "A value indicating whether this member was supplied by the user rather than loaded from one of the\n{@link Terria#initSources}. User-supplied members must be serialized completely when, for example,\nserializing enabled members for sharing.",
"format": "checkbox"
},
"isPromoted": {
"type": "boolean",
"title": "#Is promoted",
"description": "A value indicating whether this item is kept above other non-promoted items.",
"format": "checkbox"
},
"isHidden": {
"type": "boolean",
"title": "#Is hidden",
"description": "A value indicating whether this item is hidden from the catalog. This\nproperty is observable.",
"format": "checkbox"
},
"initialMessage": {
"type": "object",
"title": "#Initial message",
"description": "A message object that is presented to the user when an item or group is initially clicked\nThe object is of the form {title:string, content:string, key: string}."
},
"cacheDuration": {
"type": "string",
"title": "#Cache duration",
"description": "The cache duration to use for proxied URLs for this catalog member. If undefined, proxied URLs are effectively cachable\nforever. The duration is expressed as a Varnish-like duration string, such as '1d' (one day) or '10000s' (ten thousand seconds)."
},
"forceProxy": {
"type": "boolean",
"title": "#Force proxy",
"description": "Gets or sets whether or not this member should be forced to use a proxy.\nThis property is not observable.",
"format": "checkbox"
},
"customProperties": {
"type": "object",
"title": "#Custom properties",
"description": "The dictionary of custom item properties."
}
},
"description": "A member of a {@link CatalogGroup}. A member may be a {@link CatalogItem} or a\n{@link CatalogGroup}.",
"title": "CatalogMember"
}