- Description:
This key defines the documentation link at the top of a Collection browser.
Collection documentation is useful for assisting your team members.
- Appears in:
├── collections_config │ └── * │ └── documentation ├── Text Input │ └── documentation ├── _inputs │ └── * │ ├── Textarea Input │ │ └── documentation │ ├── Code Input │ │ └── documentation │ ├── Color Input │ │ └── documentation │ ├── Number Input │ │ └── documentation │ ├── Range Input │ │ └── documentation │ ├── Rich Text Input │ │ └── documentation │ ├── Date/Datetime Input │ │ └── documentation │ ├── Time Input │ │ └── documentation │ ├── File Input │ │ └── documentation │ ├── Multiselect Input │ │ └── documentation │ ├── Choice Input │ │ └── documentation │ ├── Multichoice Input │ │ └── documentation │ ├── Object Input │ │ ├── documentation │ │ └── options │ │ ├── entries │ │ │ └── documentation │ │ └── groups │ │ └── [*] │ │ └── documentation │ └── Array Input │ └── documentation ├── Boolean Input │ └── documentation ├── URL Input │ └── documentation ├── Select Input │ └── documentation └── [*] ├── groups │ └── [*] │ └── documentation └── documentation- Type:
Object- Properties:
This key defines the icon for the documentation link at the top of a Collection browser.
Values can be from Google's Material Symbols library.
Defaults to:
auto_storiesAllowed values:
12336010k10mp11mp12mp13mp14mp15mp16mpand 3574 more.Appears in:
documentation.Show examplesHide examples
In this example, we have configured the
staricon for theblogCollection documentation link.Copied to clipboardcollections_config: blog: documentation: url: https://www.cloudcannon.com/documentation/ icon: star{ "collections_config": { "blog": { "documentation": { "url": "https://www.cloudcannon.com/documentation/", "icon": "star" } } } }This key defines the link text for the documentation link at the top of a Collection browser.
Appears in:
documentation.Show examplesHide examples
In this example, the text for the documentation link is
CloudCannon Documentation.Copied to clipboardcollections_config: data: documentation: url: https://cloudcannon.com/documentation/ text: CloudCannon Documentation{ "collections_config": { "data": { "documentation": { "url": "https://cloudcannon.com/documentation/", "text": "CloudCannon Documentation" } } } }This key defines the URL for the documentation link at the top of a Collection browser.
You must define this key for the
documentationobject to function.This key has no default.
Appears in:
documentation.Show examplesHide examples
In this example, we have configured the
blogCollection documentation link to go toexample.com.Copied to clipboardcollections_config: blog: documentation: url: https://example.com{ "collections_config": { "blog": { "documentation": { "url": "https://example.com" } } } }- Examples:
In this example, the documentation link for the
dataCollection goes to CloudCannon Documentation.Copied to clipboardcollections_config: data: documentation: url: https://cloudcannon.com/documentation/ text: CloudCannon Documentation icon: star{ "collections_config": { "data": { "documentation": { "url": "https://cloudcannon.com/documentation/", "text": "CloudCannon Documentation", "icon": "star" } } } }