create_datasource
Automate data source creation in Storyblok CMS by defining name, slug, and dimensions, streamlining content structure and management for AI-powered workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dimensions_attributes | No | ||
name | Yes | ||
slug | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dimensions_attributes": {
"items": {
"additionalProperties": false,
"properties": {
"entry_value": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"entry_value"
],
"type": "object"
},
"type": "array"
},
"name": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"required": [
"name",
"slug"
],
"type": "object"
}