{
  "openapi": "3.1.0",
  "info": {
    "title": "Packrift Dimensional Weight Atlas",
    "version": "2026-05-29",
    "description": "SKU-level dimensional-weight, density, cube, length-plus-girth, and parcel-review calculations for AI-approved Packrift packaging products."
  },
  "servers": [
    {
      "url": "https://packrift-dimensional-weight-atlas.vercel.app"
    }
  ],
  "paths": {
    "/data/manifest.json": {
      "get": {
        "summary": "Read atlas manifest",
        "responses": {
          "200": {
            "description": "Manifest"
          }
        }
      }
    },
    "/data/products.json": {
      "get": {
        "summary": "Read product dimensional-weight records",
        "responses": {
          "200": {
            "description": "Product records"
          }
        }
      }
    },
    "/data/families.json": {
      "get": {
        "summary": "Read family summaries",
        "responses": {
          "200": {
            "description": "Family summaries"
          }
        }
      }
    },
    "/products/{slug}/": {
      "get": {
        "summary": "Read a crawlable SKU dimensional-weight review page",
        "parameters": [
          {
            "name": "slug",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "HTML SKU page"
          }
        }
      }
    }
  }
}