{
  "api_version": "1.0",
  "domain": "https://shop.example.com",
  "resource": "favorites",
  "description_fa": "لیست علاقه‌مندی کاربران",
  "primary_key": "favorite_id",
  "fields": [
    {
      "name": "favorite_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "user_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "product_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "created_at",
      "type": "datetime",
      "required": true
    }
  ],
  "relationships": [
    {
      "field": "user_id",
      "references": "users.user_id",
      "type": "many_to_one"
    },
    {
      "field": "product_id",
      "references": "products.product_id",
      "type": "many_to_one"
    }
  ],
  "endpoints": {
    "list": "https://shop.example.com/api/favorites",
    "single": "https://shop.example.com/api/favorites/{id}"
  },
  "data": [
    {
      "favorite_id": 4001,
      "user_id": 101,
      "product_id": 1001,
      "created_at": "2026-09-15T10:00:00Z"
    },
    {
      "favorite_id": 4002,
      "user_id": 101,
      "product_id": 1003,
      "created_at": "2026-09-15T10:05:00Z"
    },
    {
      "favorite_id": 4003,
      "user_id": 102,
      "product_id": 1002,
      "created_at": "2026-09-14T18:20:00Z"
    }
  ]
}