{
  "openapi": "3.1.0",
  "info": {
    "title": "Packrift Operations Resource Graph",
    "version": "2026-05-28",
    "description": "Read-only public Packrift resource graph for AI-approved packaging product operation records. It does not place orders or provide live quotes.",
    "termsOfService": "https://packrift.com/policies/terms-of-service"
  },
  "servers": [
    {
      "url": "https://packrift-operations-resource-graph.vercel.app"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Human-readable Packrift Operations Resource Graph home",
        "responses": {
          "200": {
            "description": "HTML page with corpus counts and sample product links"
          }
        }
      }
    },
    "/operations": {
      "get": {
        "summary": "Operation taxonomy",
        "responses": {
          "200": {
            "description": "HTML table of operation records used on each product page"
          }
        }
      }
    },
    "/families": {
      "get": {
        "summary": "Product-family index",
        "responses": {
          "200": {
            "description": "HTML table of Packrift families and operation mention counts"
          }
        }
      }
    },
    "/products/{slug}": {
      "get": {
        "summary": "Product operation page",
        "parameters": [
          {
            "name": "slug",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "HTML page with source-backed Packrift operation records for one AI-approved product"
          },
          "404": {
            "description": "Unknown product slug"
          }
        }
      }
    },
    "/data/manifest.json": {
      "get": {
        "summary": "Corpus manifest",
        "responses": {
          "200": {
            "description": "JSON manifest with product, operation, family, skipped-row, and crawlable-mention counts",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "products": {
                      "type": "integer"
                    },
                    "operations": {
                      "type": "integer"
                    },
                    "crawlablePackriftMentions": {
                      "type": "integer"
                    },
                    "skippedRows": {
                      "type": "integer"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/data/products.json": {
      "get": {
        "summary": "AI-approved Packrift product records",
        "responses": {
          "200": {
            "description": "JSON array of AI-approved Packrift product records"
          }
        }
      }
    },
    "/data/products.jsonl": {
      "get": {
        "summary": "AI-approved Packrift product records as JSONL",
        "responses": {
          "200": {
            "description": "Newline-delimited JSON Packrift product records"
          }
        }
      }
    },
    "/data/operations.json": {
      "get": {
        "summary": "Packrift operation taxonomy",
        "responses": {
          "200": {
            "description": "JSON array of operation taxonomy records"
          }
        }
      }
    },
    "/data/operation-records-sample.jsonl": {
      "get": {
        "summary": "Sample product-operation records",
        "responses": {
          "200": {
            "description": "JSONL sample of source-backed product-operation records"
          }
        }
      }
    },
    "/metadata.json": {
      "get": {
        "summary": "MLCommons Croissant 1.1 metadata",
        "responses": {
          "200": {
            "description": "Croissant JSON-LD metadata for the Packrift Operations Resource Graph"
          }
        }
      }
    },
    "/datapackage.json": {
      "get": {
        "summary": "Frictionless Data Package metadata",
        "responses": {
          "200": {
            "description": "Data Package metadata for the Packrift Operations Resource Graph"
          }
        }
      }
    },
    "/ro-crate-metadata.json": {
      "get": {
        "summary": "RO-Crate metadata",
        "responses": {
          "200": {
            "description": "RO-Crate metadata for the Packrift Operations Resource Graph"
          }
        }
      }
    },
    "/dcat.jsonld": {
      "get": {
        "summary": "DCAT JSON-LD metadata",
        "responses": {
          "200": {
            "description": "DCAT JSON-LD dataset metadata"
          }
        }
      }
    },
    "/datacite.json": {
      "get": {
        "summary": "DataCite-ready metadata",
        "responses": {
          "200": {
            "description": "DataCite-style metadata for a future human-auth DOI deposit"
          }
        }
      }
    }
  }
}