You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
./trigger-scheduler.sh reminders # Only check reminders
268
268
```
269
269
270
+
## Microsoft API Schema Validation
271
+
272
+
External Microsoft API responses are validated at runtime using Zod schemas to ensure type safety at the boundary between this application and Microsoft services.
273
+
274
+
### Microsoft Graph API
275
+
276
+
Schemas for SharePoint permissions, sites, drives, and email operations.
277
+
278
+
| Schema | Description |
279
+
|--------|-------------|
280
+
|`GraphPermissionSchema`| Drive item and site permissions |
281
+
|`GraphDriveItemSchema`| Files and folders in OneDrive/SharePoint |
282
+
|`GraphDriveSchema`| Document libraries and drives |
283
+
|`GraphSiteSchema`| SharePoint sites and site collections |
In development mode, validation failures throw errors. In production, failures are logged and the raw data is returned to avoid breaking changes from Microsoft API updates.
0 commit comments