lenso-openapi-plugin 0.1.4

Optional OpenAPI 3.1 document Plugin for explicitly bound Lenso HTTP Endpoints.
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "title": {"type": "string", "minLength": 1},
    "version": {"type": "string", "minLength": 1},
    "description": {"type": "string"},
    "document_path": {"type": "string", "pattern": "^/"},
    "servers": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["url"],
        "properties": {
          "url": {"type": "string", "minLength": 1},
          "description": {"type": "string"}
        },
        "additionalProperties": false
      }
    },
    "components": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "additionalProperties": false
}