{
  "openapi": "3.0.1",
  "info": {
    "title": "ZERK Shop Digital Products API Catalog",
    "description": "API specification for browsing gift cards, gaming subscriptions, and top-up currency on ZERK Shop.",
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": "https://www.zerkshop.com"
    }
  ],
  "paths": {
    "/products": {
      "get": {
        "operationId": "getProducts",
        "summary": "Get all available digital gift cards and subscriptions",
        "responses": {
          "200": {
            "description": "List of products",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Product"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/fortnite-shop": {
      "get": {
        "operationId": "getFortniteShop",
        "summary": "Get today's official Fortnite Item Shop items priced in DH",
        "responses": {
          "200": {
            "description": "Daily Fortnite Item Shop items",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Product"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Product": {
        "type": "object",
        "properties": {
          "id": { "type": "string" },
          "name": { "type": "string" },
          "category": { "type": "string" },
          "price": { "type": "number" },
          "currency": { "type": "string", "example": "MAD" },
          "inStock": { "type": "boolean" },
          "url": { "type": "string" }
        }
      }
    }
  }
}
