Documentation Index
Fetch the complete documentation index at: https://docs.hellocobi.com/llms.txt
Use this file to discover all available pages before exploring further.
Important: The student favourite model has dependencies on both the
customer/student and shop models. The
student_id field must reference an
existing customer/student and the shop_id field must reference an existing
shop. It’s recommended to upload customer/student and shop data before
uploading student favourite mappings.Schema
Field Descriptions
Required Fields
| Field | Type | Format | Description |
|---|---|---|---|
student_id | string | UUID | ID of the student (must reference an existing customer/student) |
shop_id | string | UUID | ID of the shop (must reference an existing shop) |
Optional Fields
| Field | Type | Format | Description |
|---|---|---|---|
favourite_id | string | UUID | Unique identifier for the favourite mapping |
created | string | date-time | Timestamp when the record was created |
updated | string | date-time | Timestamp when the record was last updated |
is_deleted | boolean | - | Flag indicating if the record is marked as deleted |
Example
Best Practices
- UUID Format: Use valid UUID v4 format for all ID fields
- Data Dependencies: Ensure student_id references an existing customer/student and shop_id references an existing shop
- Data Consistency: Ensure consistent data across all student favourite mapping records
- Soft Deletion: Use the is_deleted flag instead of permanently deleting records