import_story
Import stories into Storyblok CMS using structured JSON data, supporting multi-language content management while ensuring required fields like ID and story content are included.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| import_lang | No | ||
| lang_code | No | ||
| story | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"import_lang": {
"type": "boolean"
},
"lang_code": {
"type": "string"
},
"story": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"id",
"story"
],
"type": "object"
}