create_component
Generate and customize reusable components in Storyblok CMS by defining name, schema, and nesting options, streamlining content structure management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
display_name | No | ||
is_nestable | No | ||
is_root | No | ||
name | Yes | ||
schema | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"display_name": {
"type": "string"
},
"is_nestable": {
"type": "boolean"
},
"is_root": {
"type": "boolean"
},
"name": {
"type": "string"
},
"schema": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"name",
"schema"
],
"type": "object"
}