{
  "openapi": "3.0.3",
  "info": {
    "title": "Weather Portal API",
    "version": "0.1.0",
    "description": "Placeholder API contract for the weather delivery promotional portal."
  },
  "paths": {
    "/api/v1/status": {
      "get": {
        "summary": "Portal scaffold status",
        "responses": {
          "200": {
            "description": "Status payload",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/upstreams": {
      "get": {
        "summary": "Configured upstream service base URLs",
        "responses": {
          "200": {
            "description": "Upstream service list",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/api-catalog": {
      "get": {
        "summary": "Weather Data Hub and Martin Tiles API catalog",
        "responses": {
          "200": {
            "description": "Grouped upstream API catalog",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/map/layers": {
      "get": {
        "summary": "Available weather map layers",
        "responses": {
          "200": {
            "description": "Map layer list",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/forecast/sample": {
      "get": {
        "summary": "Sample forecast payload",
        "responses": {
          "200": {
            "description": "Sample forecast data",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}