Component description
The raw-value component displays the raw value of an attribute that is not associated with any object and is treated as a standalone object. It is primarily used for displaying text or other attributes on pages (dashboards).
Example
Minimal JSON
{
"type": "raw-value",
"key": "",
"attributeTypeKey": ""
}{
"type": "raw-value",
"key": "exampleKey",
"attributeTypeKey": "core_description",
"defaultValue": "Write your description.",
"title": "title.rawValue.example"
}Nested properties
| Property | Description | Values | Mandatory |
|---|---|---|---|
type | raw-value | string | Yes |
key | Unique key of the component. If multiple components have the same key, they will all have the same attribute value. Used for referencing in the same package or other packages using packageKey#componentKey. | string | Yes |
attributeTypeKey | Attribute type which features are used for the visual presentation of the raw value. | string | Yes |
componentId | Unique ID of a component. If left empty, a random string will be generated. Primarily used in patch packages to define the component's position within the layout (template). | string | No |
defaultValue | Default displayed value when no input has been provided. | string | No |
title | Translation key of the title. Define the key in translations to specify how the text is displayed in the UI. Unlike the name property, if you use a specific string of text for the title, this text will appear with the package key. For example, Comment Section will be displayed as package_key_comment section. | string | No |