{
  "api_version": "1.0",
  "domain": "https://shop.example.com",
  "resource": "carts",
  "description_fa": "سبدهای خرید کاربران",
  "primary_key": "cart_id",
  "fields": [
    {
      "name": "cart_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "user_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "status",
      "type": "string",
      "required": true
    },
    {
      "name": "subtotal",
      "type": "integer",
      "required": true
    },
    {
      "name": "total_amount",
      "type": "integer",
      "required": true
    }
  ],
  "relationships": [
    {
      "field": "user_id",
      "references": "users.user_id",
      "type": "many_to_one"
    }
  ],
  "endpoints": {
    "list": "https://shop.example.com/api/carts",
    "single": "https://shop.example.com/api/carts/{id}"
  },
  "data": [
    {
      "cart_id": 6001,
      "user_id": 101,
      "status": "active",
      "currency": "IRR",
      "subtotal": 300000000,
      "discount_amount": 30000000,
      "shipping_amount": 5000000,
      "total_amount": 275000000,
      "updated_at": "2026-09-15T10:10:00Z"
    },
    {
      "cart_id": 6002,
      "user_id": 102,
      "status": "active",
      "currency": "IRR",
      "subtotal": 405000000,
      "discount_amount": 0,
      "shipping_amount": 0,
      "total_amount": 405000000,
      "updated_at": "2026-09-15T12:40:00Z"
    }
  ]
}