AutoBE
    Preparing search index...

    JSON Schema type following OpenAPI v3.1 (simplified).

    CRITICAL: Union types MUST use IOneOf. NEVER use array in type field.

    Wrong: { type: ["string", "null"] } Correct: { oneOf: [{ type: "string" }, { type: "null" }] }

    The type field is a discriminator and MUST be a single string value.