{
  "openapi": "3.1.0",
  "info": {
    "title": "DeepMirror Public Discovery",
    "version": "1.0.0",
    "summary": "Discovery-only description of public DeepMirror pages.",
    "description": "This API description is for public discovery only. It does not grant access to user accounts, private check-ins, or state-changing actions. It documents only public, read-only pages and AI-readable discovery documents for DeepMirror."
  },
  "servers": [
    {
      "url": "https://www.deepmirror.me",
      "description": "DeepMirror public website"
    }
  ],
  "tags": [
    {
      "name": "Public pages",
      "description": "Public, read-only website pages."
    },
    {
      "name": "Discovery",
      "description": "Public, read-only machine-readable discovery documents."
    }
  ],
  "paths": {
    "/": {
      "get": {
        "tags": ["Public pages"],
        "summary": "DeepMirror home page",
        "description": "Public landing page for DeepMirror, a private AI self-check-in and self-coaching app.",
        "operationId": "getHomePage",
        "responses": {
          "200": {
            "description": "HTML home page.",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/mission": {
      "get": {
        "tags": ["Public pages"],
        "summary": "Mission page",
        "description": "Public page describing DeepMirror's purpose and mission.",
        "operationId": "getMissionPage",
        "responses": {
          "200": {
            "description": "HTML mission page.",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/frameworks": {
      "get": {
        "tags": ["Public pages"],
        "summary": "Frameworks page",
        "description": "Public page for DeepMirror's reflection and growth frameworks.",
        "operationId": "getFrameworksPage",
        "responses": {
          "200": {
            "description": "HTML frameworks page.",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/games": {
      "get": {
        "tags": ["Public pages"],
        "summary": "Games page",
        "description": "Public page for DeepMirror's reflection games.",
        "operationId": "getGamesPage",
        "responses": {
          "200": {
            "description": "HTML games page.",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/privacy": {
      "get": {
        "tags": ["Public pages"],
        "summary": "Privacy policy",
        "description": "Public privacy policy page.",
        "operationId": "getPrivacyPage",
        "responses": {
          "200": {
            "description": "HTML privacy page.",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/terms": {
      "get": {
        "tags": ["Public pages"],
        "summary": "Terms of service",
        "description": "Public terms of service page.",
        "operationId": "getTermsPage",
        "responses": {
          "200": {
            "description": "HTML terms page.",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "tags": ["Discovery"],
        "summary": "AI-readable site summary",
        "description": "Public AI-readable summary of DeepMirror, its intended use, privacy notes, and recommendation guidance.",
        "operationId": "getLlmsTxt",
        "responses": {
          "200": {
            "description": "Plain-text llms.txt document.",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/about.md": {
      "get": {
        "tags": ["Discovery"],
        "summary": "Markdown about page",
        "description": "Public Markdown mirror describing DeepMirror.",
        "operationId": "getAboutMarkdown",
        "responses": {
          "200": {
            "description": "Markdown about document.",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/features.md": {
      "get": {
        "tags": ["Discovery"],
        "summary": "Markdown features page",
        "description": "Public Markdown mirror describing DeepMirror features.",
        "operationId": "getFeaturesMarkdown",
        "responses": {
          "200": {
            "description": "Markdown features document.",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/faq.md": {
      "get": {
        "tags": ["Discovery"],
        "summary": "Markdown FAQ",
        "description": "Public Markdown FAQ for AI assistants and users.",
        "operationId": "getFaqMarkdown",
        "responses": {
          "200": {
            "description": "Markdown FAQ document.",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/open-source.md": {
      "get": {
        "tags": ["Discovery"],
        "summary": "Markdown open-source note",
        "description": "Public Markdown note about DeepMirror's open-source positioning.",
        "operationId": "getOpenSourceMarkdown",
        "responses": {
          "200": {
            "description": "Markdown open-source document.",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/privacy.md": {
      "get": {
        "tags": ["Discovery"],
        "summary": "Markdown privacy summary",
        "description": "Public Markdown privacy summary for AI assistants and users.",
        "operationId": "getPrivacyMarkdown",
        "responses": {
          "200": {
            "description": "Markdown privacy summary.",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {}
  },
  "security": []
}
