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.
Schema
{
"type": "object",
"required": ["category_id", "name", "region"],
"properties": {
"category_id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the category"
},
"name": {
"type": "string",
"description": "Name of the category"
},
"region": {
"type": "string",
"description": "Geographic region (2-letter country code, ISO 3166-1 alpha-2)"
},
"created": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "Timestamp when the record was created"
},
"updated": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "Timestamp when the record was last updated"
},
"is_deleted": {
"type": "boolean",
"nullable": true,
"description": "Flag indicating if the record is marked as deleted"
}
}
}
Field Descriptions
Required Fields
| Field | Type | Format | Description |
|---|
category_id | string | UUID | Unique identifier for the category |
name | string | - | Name of the category |
region | string | - | Geographic region (2-letter country code, e.g., “CA” for Canada) |
Optional Fields
| Field | Type | Format | Description |
|---|
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
{
"category_id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Electronics",
"region": "CA",
"created": "2023-01-15T14:30:00Z",
"updated": "2023-06-22T09:15:30Z",
"is_deleted": false
}
Best Practices
- UUID Format: Use valid UUID v4 format for category_id
- Region Codes: Use ISO 3166-1 alpha-2 country codes (e.g., “CA” for Canada, “US” for United States)
- Data Consistency: Ensure consistent data across all category records
Need help? Contact our support team at [email protected]