{
  "api_version": "1.0",
  "domain": "https://shop.example.com",
  "resource": "navigation",
  "description_fa": "مسیرهای ناوبری و صفحات پیشنهادی اپلیکیشن اندروید",
  "primary_key": "menu_id",
  "fields": [
    {
      "name": "menu_id",
      "type": "integer",
      "required": true
    },
    {
      "name": "key",
      "type": "string",
      "required": true
    },
    {
      "name": "title",
      "type": "string",
      "required": true
    },
    {
      "name": "route",
      "type": "string",
      "required": true
    },
    {
      "name": "screen_type",
      "type": "string",
      "required": true
    }
  ],
  "relationships": [
    {
      "field": "routes.source",
      "references": "JSON resources",
      "type": "cross_file_reference"
    },
    {
      "field": "routes.navigation_target",
      "references": "routes.route",
      "type": "graph_reference"
    }
  ],
  "endpoints": {
    "list": "https://shop.example.com/api/navigation",
    "single": "https://shop.example.com/api/navigation/{id}"
  },
  "data": {
    "menus": [
      {
        "menu_id": 1,
        "key": "home",
        "title": "خانه",
        "route": "home",
        "screen_type": "activity",
        "sort_order": 1,
        "requires_login": false
      },
      {
        "menu_id": 2,
        "key": "categories",
        "title": "دسته‌بندی‌ها",
        "route": "categories",
        "screen_type": "activity",
        "sort_order": 2,
        "requires_login": false
      },
      {
        "menu_id": 3,
        "key": "products",
        "title": "محصولات",
        "route": "products",
        "screen_type": "activity",
        "sort_order": 3,
        "requires_login": false
      },
      {
        "menu_id": 4,
        "key": "cart",
        "title": "سبد خرید",
        "route": "cart",
        "screen_type": "activity",
        "sort_order": 4,
        "requires_login": true
      },
      {
        "menu_id": 5,
        "key": "orders",
        "title": "سفارش‌های من",
        "route": "orders",
        "screen_type": "activity",
        "sort_order": 5,
        "requires_login": true
      },
      {
        "menu_id": 6,
        "key": "profile",
        "title": "حساب کاربری",
        "route": "profile",
        "screen_type": "activity",
        "sort_order": 6,
        "requires_login": true
      }
    ],
    "routes": [
      {
        "route": "home",
        "page": "HomeActivity",
        "source": "banners,categories,products",
        "navigation_target": [
          "categories",
          "products",
          "cart"
        ]
      },
      {
        "route": "categories",
        "page": "CategoryActivity",
        "source": "categories",
        "navigation_target": [
          "products"
        ]
      },
      {
        "route": "products",
        "page": "ProductListActivity",
        "source": "products,search_filters",
        "navigation_target": [
          "product_detail"
        ]
      },
      {
        "route": "product_detail",
        "page": "ProductDetailActivity",
        "source": "products,product_variants,product_images,product_specifications,reviews",
        "navigation_target": [
          "cart"
        ]
      },
      {
        "route": "cart",
        "page": "CartActivity",
        "source": "carts,cart_items",
        "navigation_target": [
          "checkout"
        ]
      },
      {
        "route": "checkout",
        "page": "CheckoutActivity",
        "source": "addresses,coupons,orders,payments",
        "navigation_target": [
          "order_detail"
        ]
      },
      {
        "route": "orders",
        "page": "OrdersActivity",
        "source": "orders",
        "navigation_target": [
          "order_detail"
        ]
      },
      {
        "route": "order_detail",
        "page": "OrderDetailActivity",
        "source": "orders,order_items,payments",
        "navigation_target": []
      },
      {
        "route": "profile",
        "page": "ProfileActivity",
        "source": "users,addresses,favorites",
        "navigation_target": [
          "orders",
          "favorites"
        ]
      },
      {
        "route": "favorites",
        "page": "FavoritesActivity",
        "source": "favorites,products",
        "navigation_target": [
          "product_detail"
        ]
      }
    ]
  }
}