authScimUserInputJsonSchema top-level constant

Map<String, Object?> const authScimUserInputJsonSchema

JSON Schema contract for strict SCIM User mutation input.

Implementation

const Map<String, Object?> authScimUserInputJsonSchema = <String, Object?>{
  'type': 'object',
  'additionalProperties': false,
  'required': <String>['schemas', 'userName'],
  'properties': _authScimUserPropertiesJsonSchema,
};