{
  "openapi": "3.1.0",
  "info": {
    "title": "lorem-forge API",
    "version": "1.0.0",
    "description": "Lorem ipsum placeholder text. Words, sentences, paragraphs. Plain text or HTML output.",
    "contact": {
      "name": "Techtenstein",
      "url": "https://techtenstein.com"
    },
    "license": {
      "name": "MIT"
    }
  },
  "servers": [
    {
      "url": "https://lorem-forge.techtenstein.com"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Landing / docs"
      }
    },
    "/health": {
      "get": {
        "summary": "Health"
      }
    },
    "/openapi.json": {
      "get": {
        "summary": "OpenAPI spec"
      }
    },
    "/words": {
      "get": {
        "summary": "N random words",
        "parameters": [
          {
            "name": "n",
            "in": "query",
            "schema": {
              "type": "integer",
              "default": 20,
              "maximum": 500
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Words"
          }
        }
      }
    },
    "/sentences": {
      "get": {
        "summary": "N sentences",
        "parameters": [
          {
            "name": "n",
            "in": "query",
            "schema": {
              "type": "integer",
              "default": 3,
              "maximum": 50
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Sentences"
          }
        }
      }
    },
    "/paragraphs": {
      "get": {
        "summary": "N paragraphs",
        "parameters": [
          {
            "name": "n",
            "in": "query",
            "schema": {
              "type": "integer",
              "default": 3,
              "maximum": 20
            }
          },
          {
            "name": "html",
            "in": "query",
            "schema": {
              "type": "string",
              "default": "false"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Paragraphs"
          }
        }
      }
    }
  }
}