HTTP - Management
Content type group
Created by j.moore, last modified by zengenti on 30 Sep 2021
The content type groups object enables related fields to be grouped together in the UI.
Properties
Name | Data type | Data format | Description |
---|---|---|---|
id | string | A group identifier which is unique within the content type | |
name | object | localized value | The friendly name given to the content type group |
Example
JSON
"groups": [
{
"id": "mainContent",
"name": {
"en-GB": "Main"
},
"description": {
"en-GB": "Main content description..."
}
},
{
"id": "tab2",
"name": {
"en-GB": "Tab 2"
},
"description": {
"en-GB": "Tab 2 description..."
}
},
{
"id": "tab3",
"name": {
"en-GB": "Tab 3"
},
"description": {
"en-GB": "Tab 3 description..."
}
}
]