Description explaining the business purpose and usage of this field.
Should clearly explain:
IMPORTANT: Description must be written in English. Example: "Amount of cash payment." or "Whether the unit is required or not."
Name of the field in the database table.
MUST use snake_case naming convention. Common patterns from uploaded schemas:
Whether this field can contain null values.
True: Field is optional and can be null (e.g., middle name, description) false: Field is required and cannot be null (e.g., creation timestamp, name) Reflects business rules about mandatory vs optional data.
Data type of the field for Prisma schema generation.
Maps to appropriate Prisma/PostgreSQL types:
Interface representing a regular data field that stores business information.
These fields contain the actual business data like names, amounts, timestamps, flags, descriptions, and other domain-specific information.