Hi to everyone, test "string-literals-inline" field **bar**: ```typescript class MyObject { ... bar: "ok" | "fail" | "abort" | string; } ``` maps to schema: ```json { "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "bar": { "type": "string" }, ... ``` but should map to schema: ```json { "$schema": "http://json-schema.org/draft-04/schema#", "properties": { "bar": { "anyOf": [{ "custom": "string" }, { "enum": [ "ok", "fail", "abort" ], "default": "string" } ] },... ``` Cheers, Giuseppe