Sha256: f29fcffcbfd1211db791c844930984279e63248deb21377d9adf323771c20efa
Contents?: true
Size: 756 Bytes
Versions: 45
Compression:
Stored size: 756 Bytes
Contents
module Scimitar module Schema # Represents the schema for the ReferenceMember complex type, # referring to a member of a group (where members can themselves # be Users or Groups, identified by the "type" attribute). Used # by the Group SCIM resource's "members" array. # # See also Scimitar::ComplexTypes::ReferenceMember # class ReferenceMember < Base def self.scim_attributes @scim_attributes ||= [ Attribute.new(name: 'value', type: 'string', mutability: 'immutable', required: true), Attribute.new(name: 'type', type: 'string', mutability: 'immutable'), Attribute.new(name: 'display', type: 'string', mutability: 'immutable'), ] end end end end
Version data entries
45 entries across 45 versions & 2 rubygems