# Schema Inaccuracy The `scim-enterprise-user` and `scim-enterprise-user-list` examples both have `roles[].value` set to `"User"` (capital U), but the `user-role` schema defines `value` as an enum whose only user-role entry is `"user"` (all lowercase). Identified at schema commit `ef4e98d`. Affected examples: - `#/components/examples/scim-enterprise-user/value` - `#/components/examples/scim-enterprise-user-list/value` ## Expected The `roles[].value` field in both examples should use `"user"` (lowercase) to match the enum values defined in `#/components/schemas/user-role/items/properties/value`. ## Reproduction Steps The schema defines the enum as: ```yaml # /components/schemas/user-role/items/properties/value enum: - user - guest_collaborator - enterprise_owner - billing_manager - ... ``` But both examples contain: ```json "roles": [{ "value": "User", "primary": false }] ```