transform icon indicating copy to clipboard operation
transform copied to clipboard

app does not sanitize invalid identifiers

Open 3052 opened this issue 1 year ago • 0 comments

valid input:

{
  "type": "object",
  "properties": {
    "4": {
      "type": "boolean"
    }
  }
}

invalid output:

syntax = "proto2";

message undefined {
  optional bool 4 = 1;
}

3052 avatar Apr 11 '24 02:04 3052