{
  "openapi": "3.1.0",
  "info": {
    "title": "Alien Front Door demo surface",
    "version": "1.0.0",
    "description": "A compact, read-oriented contract for the competition demo."
  },
  "paths": {
    "/": {
      "get": {
        "summary": "Read the front door",
        "responses": { "200": { "description": "Semantic HTML landing page" } }
      }
    },
    "/meatproxy/": {
      "get": {
        "summary": "Read the human publication feed",
        "responses": { "200": { "description": "Latest and Top sample dispatches" } }
      }
    },
    "/meatproxy/{articleId}": {
      "get": {
        "summary": "Read a sample article",
        "parameters": [{ "name": "articleId", "in": "path", "required": true, "schema": { "type": "string" } }],
        "responses": { "200": { "description": "Article HTML with metadata and comments" } }
      }
    }
  }
}