{
  "openapi": "3.1.0",
  "info": {
    "title": "Children's Fable — Agents First read API",
    "version": "1.0.0",
    "description": "Read-only structured resources for a children's and elders' guide to safe, kind AI use, taught through public-domain fables. Built Agents First (agentsfirst.dev). No auth; no writes. A friendly educational site, not affiliated with Anthropic.",
    "contact": {
      "name": "WholeTech",
      "url": "https://wholetech.com"
    }
  },
  "servers": [
    {
      "url": "https://childrensfable.com"
    }
  ],
  "paths": {
    "/api/rules.json": {
      "get": {
        "operationId": "getRules",
        "summary": "The seven golden rules of safe AI use for children and older adults.",
        "responses": {
          "200": {
            "description": "Rules",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/fables.json": {
      "get": {
        "operationId": "getFables",
        "summary": "Six public-domain fables retold for AI safety, each with source tale, AI risk, retelling, moral, real-life tip, and illustration credit.",
        "responses": {
          "200": {
            "description": "Fables",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/glossary.json": {
      "get": {
        "operationId": "getGlossary",
        "summary": "Agents First / AI vocabulary.",
        "responses": {
          "200": {
            "description": "Glossary",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/quiz.json": {
      "get": {
        "operationId": "getQuiz",
        "summary": "Safe-or-Wolf scenarios for the 'Spot the Wolf' game, each with the correct answer and the rule/fable it relates to.",
        "responses": {
          "200": {
            "description": "Quiz",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}
