create_preset
Generate and save preset configurations for Storyblok components, including custom details like name, image, color, icon, and description, to streamline content management workflows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | ||
| component_id | Yes | ||
| description | No | ||
| icon | No | ||
| image | No | ||
| name | Yes | ||
| preset | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"component_id": {
"type": "number"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"image": {
"type": "string"
},
"name": {
"type": "string"
},
"preset": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"name",
"preset",
"component_id"
],
"type": "object"
}