Sha256: 9183dcd3f0a7c2e5c3675d5f2bfbe5a3a8673d6ebc60e83c414731160f245cba
Contents?: true
Size: 803 Bytes
Versions: 46
Compression:
Stored size: 803 Bytes
Contents
module Scimitar module Schema # Represents the schema for the ReferenceGroup complex type, # referring to a group of which a user is a member - used in # a User SCIM resource's "groups" array. # # These are always read-only, with no ability to change the # membership list through a User. Change via Groups instead. # # See also Scimitar::ComplexTypes::ReferenceGroup # class ReferenceGroup < Base def self.scim_attributes @scim_attributes ||= [ Attribute.new(name: 'value', type: 'string', mutability: 'readOnly', required: true), Attribute.new(name: 'display', type: 'string', mutability: 'readOnly'), Attribute.new(name: 'type', type: 'string', mutability: 'readOnly'), ] end end end end
Version data entries
46 entries across 46 versions & 2 rubygems