create_datasource
Generate and set up a new datasource in your Storyblok space, enabling structured data management and integration with your content workflows.
Instructions
Creates a new datasource in a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dimensions | No | ||
name | Yes | ||
slug | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dimensions": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Dimensions"
},
"name": {
"title": "Name",
"type": "string"
},
"slug": {
"title": "Slug",
"type": "string"
}
},
"required": [
"name",
"slug"
],
"title": "create_datasourceArguments",
"type": "object"
}