get_collection_schema
Retrieve the structure, fields, and rules of a specific collection in PocketBase databases for efficient data management and schema analysis.
Instructions
Get the schema (fields, rules, etc.) of a PocketBase collection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | The name or ID of the PocketBase collection. |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "The name or ID of the PocketBase collection.",
"type": "string"
}
},
"required": [
"collection"
],
"type": "object"
}