get_entity_schema
Retrieve an entity's complete schema, including field types, constraints, and relationships to other entities. Understand data structure and connections.
Instructions
Get the full schema of an entity: its properties (fields with types and constraints) and its relationships to other entities. Use this to understand what data an entity holds and how it connects to other entities.
Returns:
Properties: name, type, required flag, default value
Relationships: name, type (OneToMany, ManyToOne), foreign entity, cascading rules
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entityName | Yes | The exact name of the entity (e.g., 'user', 'invoice') |