Sha256: 5215207911af545c1e789278faf7a85899c62b287d83d76a60ef4135e4719177
Contents?: true
Size: 688 Bytes
Versions: 40
Compression:
Stored size: 688 Bytes
Contents
module Scimitar module Schema # Represents the schema for the Name complex type # See also Scimitar::ComplexTypes::Name class Name < Base def self.scim_attributes @scim_attributes ||= [ Attribute.new(name: 'familyName', type: 'string', required: true), Attribute.new(name: 'givenName', type: 'string', required: true), Attribute.new(name: 'middleName', type: 'string'), Attribute.new(name: 'formatted', type: 'string'), Attribute.new(name: 'honorificPrefix', type: 'string'), Attribute.new(name: 'honorificSuffix', type: 'string'), ] end end end end
Version data entries
40 entries across 40 versions & 2 rubygems