Raw content from the
Source file path (unused but required for interface compatibility)
Parsed body parameter information with type, validation, and metadata
but specifically for request body parameters. Adds special handling for boolean fields by setting a 'checked' property for HTML form rendering.
// Input: "{String} name User's full name"
// Output: { type: "String", field: "name", description: "User's full name", group: "Body" }
// Input: "{Boolean} [active=true] User is active"
// Output: { type: "Boolean", field: "active", defaultValue: "true", checked: true, optional: true }
Parse