{
  "api_version": "1.0",
  "domain": "https://shop.example.com",
  "resource": "brands",
  "description_fa": "برندهای محصولات",
  "primary_key": "brand_id",
  "fields": [
    {
      "name": "brand_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "name",
      "type": "string",
      "required": true
    },
    {
      "name": "slug",
      "type": "string",
      "required": true
    },
    {
      "name": "country",
      "type": "string",
      "required": false
    },
    {
      "name": "logo_url",
      "type": "string",
      "required": false
    }
  ],
  "relationships": [],
  "endpoints": {
    "list": "https://shop.example.com/api/brands",
    "single": "https://shop.example.com/api/brands/{id}"
  },
  "data": [
    {
      "brand_id": 1,
      "name": "NovaTech",
      "slug": "novatech",
      "country": "Germany",
      "logo_url": "https://shop.example.com/images/brands/novatech.png",
      "is_active": true
    },
    {
      "brand_id": 2,
      "name": "Orion",
      "slug": "orion",
      "country": "South Korea",
      "logo_url": "https://shop.example.com/images/brands/orion.png",
      "is_active": true
    },
    {
      "brand_id": 3,
      "name": "ZenBooker",
      "slug": "zenbooker",
      "country": "Taiwan",
      "logo_url": "https://shop.example.com/images/brands/zenbooker.png",
      "is_active": true
    }
  ]
}