Content Types
Content types, define reusable schemas for documents. You can for example create a content type called Page
or Product
to re-use a certain set of fields.
Adding Content Types
To create a content type:
Navigate to the page 'Content Types' by clicking the double-square icon in the menu bar on the left.
On this page you'll find a 'Create Type'-Button at the top right corner.
Enter
Name
andApi-Id
and click 'Save'.Now you can start editing your new content type.
Editing Content Types
On the page 'Content Types' you'll see an overview of existing content types. You can simply click one of them to enter the edit mode and to add and remove fields or to change their configuration.
If you remove a field with existing content, the content of these fields will be deleted.
Field Types
Name | Options | Validation | Translatable | API Output |
Text | Single Line, Multi Line | Required, E-Mail, Min. length, Max. length | ✔️ |
|
Richtext | – | Required, Min. length, Max. length | ✔️ |
|
Markdown | – | Required | ✔️ |
|
Number | Integer, Decimal | Required, Min. value, Max. value | ✔️ |
|
Select | Select, Radio, Checkboxes | Required | ✔️ |
|
Assets | – | Required, Min. count, Max. count, Filetypes | ✔️ |
|
Date & Time | Date, Date & Time, Time only | Required | ✖️ |
|
Relation | One to one, One to many | Required, Min. count, Max. count | ✖️ |
|
Location | – | Required | ✖️ |
|
Boolean | – | – | ✖️ |
|
JSON | – | – | ✖️ |
|
Color | – | Required | ✖️ |
|
Select Field Configuration
Fields for select
, radio
or checkbox
fields can be configured in a multiline textfield.
Pattern
label|value|option
1st Segment: label
The label name for the field.
2nd Segment: value
Defines the value for the field.
If no value is defined, the value will be the label name.
3rd Segment: option
Options are optional and must be prefixed with underscore _
The following options are available:
Option | Purpose |
| Defines which values are selected by default. Can be used multiple times for checkboxes. |
| Disables a field. |
Separation
label|value|option
must be separated by pipe: |
Main Field
The Main Field is a special attribute that can be be applied for text
, richtext
, number
and select
fields. Its main purpose is to provide a identifier for documents to help you navigating faster through lists. For example, for the Content Type Author
you would probably choose the field Name
to be the Main Field.
A Main Field is always required. If you choose a field to be the Main Field, it will be set to be required automatically.
Sections
Sections can be used to group a set of fields. This is useful for editors and comes handy if you need to encapsulate some fields for the REST API.
We are planning to make sections repeatable soon. This will enable your editors to create multiple instances of a field group. A good example for this would be a band tour with multiple locations.
Translation
To enable a field to be available for translation, just select the checkbox Translatable on the edit- or create field screen and save the configuration.
The translatable fields will appear in the Writing Room and can be accessed by the language tabs.
Deleting Content Types
Navigate to the page 'Content Types' by clicking the double-square icon in the menu bar on the left.
Select a content type by activating the checkbox.
Click the 'Trashcan'-Button.
Confirm.
Deleting a content type
will also delete all documents of this type!
Last updated