{
  "api_version": "1.0",
  "domain": "https://shop.example.com",
  "resource": "products",
  "description_fa": "اطلاعات اصلی محصولات فروشگاه",
  "primary_key": "product_id",
  "fields": [
    {
      "name": "product_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "category_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "brand_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "name",
      "type": "string",
      "required": true
    },
    {
      "name": "sale_price",
      "type": "integer",
      "required": true
    },
    {
      "name": "stock_quantity",
      "type": "integer",
      "required": true
    },
    {
      "name": "is_active",
      "type": "boolean",
      "required": true
    }
  ],
  "relationships": [
    {
      "field": "category_id",
      "references": "categories.category_id",
      "type": "many_to_one"
    },
    {
      "field": "brand_id",
      "references": "brands.brand_id",
      "type": "many_to_one"
    }
  ],
  "endpoints": {
    "list": "https://shop.example.com/api/products",
    "single": "https://shop.example.com/api/products/{product_id}",
    "search": "https://shop.example.com/api/products/search?q={query}",
    "category": "https://shop.example.com/api/categories/{category_id}/products"
  },
  "data": [
    {
      "product_id": 1001,
      "category_id": 3,
      "brand_id": 1,
      "name": "Nova X1",
      "slug": "nova-x1",
      "short_description": "گوشی هوشمند 5G با نمایشگر 6.5 اینچ",
      "description": "محصول نمونه برای تست ساخت صفحه جزئیات، سبد خرید و سفارش.",
      "base_price": 152000000,
      "sale_price": 148000000,
      "stock_quantity": 27,
      "sku": "NV-X1-128",
      "weight_grams": 198,
      "rating": 4.7,
      "review_count": 18,
      "is_active": true,
      "created_at": "2026-09-01T10:00:00Z",
      "updated_at": "2026-09-15T09:00:00Z"
    },
    {
      "product_id": 1002,
      "category_id": 3,
      "brand_id": 2,
      "name": "Orion Pro 12",
      "slug": "orion-pro-12",
      "short_description": "گوشی حرفه‌ای با دوربین چندگانه",
      "description": "محصول نمونه دوم با چند تنوع رنگ و حافظه.",
      "base_price": 238000000,
      "sale_price": 229000000,
      "stock_quantity": 14,
      "sku": "OR-P12-256",
      "weight_grams": 214,
      "rating": 4.5,
      "review_count": 11,
      "is_active": true,
      "created_at": "2026-09-03T12:00:00Z",
      "updated_at": "2026-09-14T16:20:00Z"
    },
    {
      "product_id": 1003,
      "category_id": 5,
      "brand_id": 3,
      "name": "ZenBooker Air 14",
      "slug": "zenbooker-air-14",
      "short_description": "لپ‌تاپ سبک 14 اینچی برای کار و دانشگاه",
      "description": "لپ‌تاپ باریک با حافظه SSD و 16 گیگابایت RAM.",
      "base_price": 420000000,
      "sale_price": 405000000,
      "stock_quantity": 8,
      "sku": "ZB-A14-16-512",
      "weight_grams": 1250,
      "rating": 4.8,
      "review_count": 7,
      "is_active": true,
      "created_at": "2026-09-05T08:00:00Z",
      "updated_at": "2026-09-13T14:10:00Z"
    }
  ]
}