{
 "openapi": "3.0.3",
 "info": {
  "title": "Dead Sea Cosmetics public data",
  "version": "1.0.0"
 },
 "servers": [
  {
   "url": "https://deadseacosmetics.co"
  }
 ],
 "paths": {
  "/api/products.json": {
   "get": {
    "summary": "All products",
    "responses": {
     "200": {
      "description": "Product list"
     }
    }
   }
  },
  "/api/products/{slug}.json": {
   "get": {
    "summary": "One product with FAQs",
    "parameters": [
     {
      "name": "slug",
      "in": "path",
      "required": true,
      "schema": {
       "type": "string"
      }
     }
    ],
    "responses": {
     "200": {
      "description": "Product detail"
     }
    }
   }
  },
  "/api/faq.json": {
   "get": {
    "summary": "All FAQs",
    "responses": {
     "200": {
      "description": "FAQ list"
     }
    }
   }
  },
  "/api/policies.json": {
   "get": {
    "summary": "Store policies",
    "responses": {
     "200": {
      "description": "Policy summary"
     }
    }
   }
  }
 }
}