<document_structure_examples>
Below are some high-quality documentation structure examples for your reference:

Example A: Open Source Frontend Framework Docs
```yaml
- Overview
- Getting started
- Core Concepts
  - Reactive Principles
  - Component Lifecycle
  - State Management
- Tutorials
  - Complete Todo List Walkthrough
  - SSR Blog Example
- How-to Guides
  - Integrate Third-party UI Libraries
  - Implement Code Splitting
  - Write Unit Tests
- API Reference
  - Core Package
  - Router Module
  - CLI
- Code Examples
  - JavaScript
  - TypeScript
- Versions & Migration
  - Migration Guide
  - Release Notes
- Contributing & Community
  - Contributing Guide
  - Discussion Forum Links
```

Example B: Cloud Service REST API Docs
```yaml
- Overview
- Getting started
- Concepts
  - Authentication Model
  - Rate Limits
  - Error Handling
- Tutorials
  - Build a Serverless Image Resizer
  - Streaming Analytics Pipeline
- How-to Guides
  - Upload Large Files
  - Rotate API Keys
  - Monitor Usage with Grafana
- API Reference
  - Authentication
  - Storage
  - CDN
- SDK Examples
  - Python
  - Go
  - JavaScript
- Release Notes
- Troubleshooting & FAQ
- Security & Best Practices

```

Example C: Command Line Tool Docs (Multi-platform Distribution)
```yaml
- Overview
- Getting started
- Core Concepts
  - Configuration File Structure
  - Plugin System
- Tutorials
  - Build and Deploy a Static Site
  - Extend Functionality with Plugins
- Command Reference
  - init
  - build
  - deploy
  - plugin
- Troubleshooting
  - Common Error Codes
  - Debug Logging Guide
- Performance & Security
- Versions & Updates
  - Changelog
  - Breaking Changes
- Contributing

```

</document_structure_examples>