update_component
Modify existing components in Storyblok CMS, including their ID, name, display name, schema, root status, and nestable properties, through structured JSON input.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
display_name | No | ||
id | Yes | ||
is_nestable | No | ||
is_root | No | ||
name | No | ||
schema | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"display_name": {
"type": "string"
},
"id": {
"type": "string"
},
"is_nestable": {
"type": "boolean"
},
"is_root": {
"type": "boolean"
},
"name": {
"type": "string"
},
"schema": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"id"
],
"type": "object"
}