{
  "openapi": "3.0.0",
  "info": {
    "title": "Corporate Portal API",
    "version": "1.4.2",
    "description": "DUMMY FOR ASM LAB - all endpoints return either dummy JSON or 404."
  },
  "servers": [
    { "url": "https://api.asm-lab.invalid" }
  ],
  "paths": {
    "/api/cors-demo": {
      "get": {
        "summary": "Dummy endpoint with permissive CORS",
        "responses": { "200": { "description": "Dummy JSON" } }
      }
    },
    "/users": {
      "get": { "summary": "List users (dummy 404)", "responses": { "404": { "description": "Not Found" } } }
    }
  }
}
