```json
{
"service_type": "platform",
"base_url": "https://graph.microsoft.com/v1.0/me/drive",
"auth_method": "oauth2",
"auth_config": {
"authorization_url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
"token_url": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
"scopes": ["Files.Read", "Files.ReadWrite", "Files.ReadWrite.All"]
},
"endpoints": [
{
"path": "/me/drive/items",
"method": "GET",
"description": "List files and folders"
},
{
"path": "/me/drive/items/{item-id}",
"method": "GET",
"description": "Get file metadata"
},
{
"path": "/me/drive/items/{item-id}/content",
"method": "GET",
"description": "Download file content"
},
{
"path": "/me/drive/items/{parent-id}/children",
"method": "POST",
"description": "Upload new file"
}
],
"pricing_model": {
"type": "freemium",
"details": {
"free_tier": "5GB storage",
"paid_tiers": [
"Microsoft 365 Basic: 100GB for $1.99/month",
"Microsoft 365 Personal: 1TB for $6.99/month",
"Microsoft 365 Family: 1TB per user (6 users) for $9.99/month"
]
}
},
"rate_limits": {
"requests_per_app": "10,000 per 10 minutes",
"requests_per_user": "1,000 per 10 minutes",
"file_upload_size": "250GB max per file"
},
"capabilities": [
"cloud_file_storage",
"file_sharing",
"real_time_collaboration",
"version_history",
"office_integration",
"cross_platform_sync",
"advanced_search",
"file_recovery",
"permission_management",
"integration_with_microsoft_ecosystem",
"mobile_access",
"offline_access",
"api_access_via_graph"
],
"raw_analysis": "OneDrive is Microsoft's mature cloud storage and file sharing platform that serves both consumers and enterprise users. As part of the Microsoft 365 ecosystem, it offers seamless integration with Office applications, Windows, and other Microsoft services. The platform provides robust file storage capabilities with real-time collaboration features, making it particularly strong for organizations already using Microsoft tools. OneDrive has extensive API access through Microsoft Graph, allowing developers to build custom integrations and applications. The platform supports advanced features like version history, file recovery, granular permission controls, and intelligent search. It offers cross-platform compatibility with mobile apps, desktop sync clients, and web access. The freemium model starts with 5GB free storage and scales to enterprise plans with unlimited storage. OneDrive's strength lies in its deep integration with the Microsoft ecosystem, making it ideal for businesses using Office 365, Teams, and other Microsoft services. The platform is highly mature with enterprise-grade security, compliance certifications, and reliability."
}
```