{ "openapi": "3.0.2", "info": { "title": "OpenAPI 3.0.2 enum escape example", "version": "1" }, "components": { "schemas": { "Foo": { "type": "object", "properties": { "foo": { "enum": ["foo'bar", "foo\"bar"], "type": "string" } } }, "Bar": { "enum": ["foo'bar", "foo\"bar"], "type": "string" } } } }