从字段描述產生模拟数据契约,帮助前后端对齐. 靈感來自 pascalwengerter/awesome-webtools,並以 ToolNext 原生頁面實作,包含 SEO、中英以外語系 FAQ 與響應式版面。 由 ToolNext 免費線上工具箱提供。
Build a mock data contract from field descriptions for frontend/backend alignment.
Enter Entity name, results update automatically
Enter Field notes, results update automatically
Entity: Invoice
TypeScript Interface:
interface Invoice {
id: string;
amount: number;
paid: boolean;
}
Sample Data:
{
"id": "43d47108-29a0-45f2-964e-d5f6e6804687",
"amount": 535.16,
"paid": true
}
Notes: Fields that may be null: id. Specify date timezone, enum values, and max string lengths in API docs.