create_record
Add a new record to any collection in a PocketBase database by specifying the collection name and data, enabling efficient data management and organization.
Instructions
Create a new record in a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name | |
data | Yes | Record data |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name",
"type": "string"
},
"data": {
"description": "Record data",
"type": "object"
}
},
"required": [
"collection",
"data"
],
"type": "object"
}