{ "openapi": "3.1.0", "info": { "title": "OpenAPI 3.1.0 const example", "version": "1" }, "paths": { "/foo": { "get": { "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "const": "First line.\n\nSecond line.\n\nPS: I love you.", "type": "string" } } } } } } } } }