Enum Values Displaying as Internal Identifiers in Apidog Schemas

While using Apidog, I noticed that in the schemas section, enum values are being displayed as internal identifiers like The7161846 instead of the actual enum values I defined. I would like these enum values to appear in the schema exactly as I specified them (e.g., “PENDING”, “APPROVED”, etc.). How can I configure Apidog or adjust my schema so that the enum values are displayed correctly?



In my API schema (e.g., using Apidog or Swagger), one of my field names appears as “\u0008currentInflowCount” instead of the expected “currentInflowCount”. The \u0008 is a backspace character in Unicode, and its presence usually indicates an encoding or serialization issue.


When generating data schema code, we preserve the original content of the fields. You can manually open the JSON Schema button in the data model where the currentInflowCount field is located to check its original content.

Like this

How do I solve this problem??

To fix the issue with “\u0008currentInflowCount”, open the JSON Schema popup in Apidog, locate and manually delete the \b escape character, then save your changes.