{
 "openapi": "3.0.3",
 "info": {
  "title": "Dataplex Agent API (static)",
  "version": "1.0.0",
  "description": "Read-only static catalog of Dataplex healthcare data products with 100-row real samples. No auth required."
 },
 "servers": [
  {
   "url": "https://api.dataplex-consulting.com"
  }
 ],
 "paths": {
  "/v1/catalog.json": {
   "get": {
    "summary": "Full product catalog",
    "responses": {
     "200": {
      "description": "Full product catalog",
      "content": {
       "application/json": {}
      }
     }
    },
    "x-example": "https://api.dataplex-consulting.com/v1/catalog.json"
   }
  },
  "/v1/products/{slug}.json": {
   "get": {
    "summary": "One product's metadata",
    "responses": {
     "200": {
      "description": "One product's metadata",
      "content": {
       "application/json": {}
      }
     }
    },
    "x-example": "https://api.dataplex-consulting.com/v1/products/fda_aems.json"
   }
  },
  "/v1/products/{slug}/sample.json": {
   "get": {
    "summary": "100 real rows from the product",
    "responses": {
     "200": {
      "description": "100 real rows from the product",
      "content": {
       "application/json": {}
      }
     }
    },
    "x-example": "https://api.dataplex-consulting.com/v1/products/fda_aems/sample.json"
   }
  },
  "/pricing.json": {
   "get": {
    "summary": "Machine-readable pricing and trial links",
    "responses": {
     "200": {
      "description": "Machine-readable pricing and trial links",
      "content": {
       "application/json": {}
      }
     }
    },
    "x-example": "https://api.dataplex-consulting.com/pricing.json"
   }
  }
 }
}