File Organization
Recommended Directory Structures
your-project/
├── schemas/ # YAML schema files
│ ├── models/ # Group schemas by domain
│ │ ├── blog/
│ │ │ ├── post.yaml
│ │ │ ├── comment.yaml
│ │ │ └── category.yaml
│ │ └── shop/
│ │ ├── product.yaml
│ │ └── order.yaml
│ └── base/ # Base/core schemas
│ ├── user.yaml
│ └── role.yamlSchema Organization Tips
Last updated