{
  "openapi": "3.1.0",
  "info": {
    "title": "ListenHere API",
    "version": "0.1.0",
    "description": "Foundation endpoints currently implemented. Enrollment and publishing are not open. This document expands with implemented operations."
  },
  "servers": [
    {
      "url": "/"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Read /",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/api": {
      "get": {
        "summary": "Read /api",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /api",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/privacy": {
      "get": {
        "summary": "Read /privacy",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /privacy",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/app.css": {
      "get": {
        "summary": "Read /app.css",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "text/css": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /app.css",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/.well-known/listenhere.json": {
      "get": {
        "summary": "Read /.well-known/listenhere.json",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /.well-known/listenhere.json",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/openapi.json": {
      "get": {
        "summary": "Read /openapi.json",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /openapi.json",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/skill.md": {
      "get": {
        "summary": "Read /skill.md",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /skill.md",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/health/live": {
      "get": {
        "summary": "Read /health/live",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      },
      "head": {
        "summary": "Headers for /health/live",
        "responses": {
          "200": {
            "description": "Successful public response"
          }
        }
      }
    },
    "/health/ready": {
      "get": {
        "summary": "Read /health/ready",
        "responses": {
          "200": {
            "description": "Successful public response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "503": {
            "description": "Database readiness unavailable"
          }
        }
      },
      "head": {
        "summary": "Headers for /health/ready",
        "responses": {
          "200": {
            "description": "Successful public response"
          },
          "503": {
            "description": "Database readiness unavailable"
          }
        }
      }
    }
  }
}
