swagger_generator_flutter/example/generated/validation_report.txt

53 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

📊 Error Summary
==================================================
⚠️ WARNING: 1
❌ ERROR: 1
INFO: 1
📂 Best Practice
------------------------------
⚠️ WARNING: Missing API Description
Category: Best Practice
Location: info.description
Description:
API description helps users understand the purpose of your API.
Suggestions:
1. Add a description explaining what your API does
Example:
"description": "This API provides user management functionality"
INFO: No Operation Tags
Category: Best Practice
Location: paths
Description:
Consider using tags to organize your API operations.
Suggestions:
1. Add tags to operations
Example:
"tags": ["users"]
📂 Validation Error
------------------------------
❌ ERROR: Empty Paths Object
Category: Validation Error
Location: paths
Description:
OpenAPI document must contain at least one path.
Suggestions:
1. Add at least one API endpoint
Example:
"/users": { "get": { "responses": { "200": { "description": "Success" } } } }