{
  "api_version": "1.0",
  "domain": "https://shop.example.com",
  "resource": "users",
  "description_fa": "کاربران و مشتریان فروشگاه",
  "primary_key": "user_id",
  "fields": [
    {
      "name": "user_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "first_name",
      "type": "string",
      "required": true
    },
    {
      "name": "last_name",
      "type": "string",
      "required": true
    },
    {
      "name": "email",
      "type": "string",
      "required": true
    },
    {
      "name": "phone",
      "type": "string",
      "required": true
    },
    {
      "name": "role",
      "type": "string",
      "required": true
    }
  ],
  "relationships": [],
  "endpoints": {
    "list": "https://shop.example.com/api/users",
    "single": "https://shop.example.com/api/users/{id}"
  },
  "data": [
    {
      "user_id": 101,
      "first_name": "علی",
      "last_name": "رضایی",
      "email": "ali@example.com",
      "phone": "+989121111111",
      "role": "customer",
      "avatar_url": "https://shop.example.com/images/users/101.jpg",
      "is_verified": true,
      "is_active": true,
      "created_at": "2026-08-20T08:30:00Z"
    },
    {
      "user_id": 102,
      "first_name": "سارا",
      "last_name": "محمدی",
      "email": "sara@example.com",
      "phone": "+989122222222",
      "role": "customer",
      "avatar_url": "https://shop.example.com/images/users/102.jpg",
      "is_verified": true,
      "is_active": true,
      "created_at": "2026-08-28T09:15:00Z"
    }
  ]
}