createDatabase
Create a new CouchDB database using a simple interface. Specify the database name to initiate the process, enabling organized data storage and management.
Instructions
Create a new CouchDB database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dbName | Yes | Database name |
Input Schema (JSON Schema)
{
"properties": {
"dbName": {
"description": "Database name",
"type": "string"
}
},
"required": [
"dbName"
],
"type": "object"
}