Method: Scimitar::Schema::Name.scim_attributes

Defined in:
app/models/scimitar/schema/name.rb

.scim_attributesObject



7
8
9
10
11
12
13
14
15
16
# File 'app/models/scimitar/schema/name.rb', line 7

def self.scim_attributes
  @scim_attributes ||= [
    Attribute.new(name: 'familyName',       type: 'string'),
    Attribute.new(name: 'givenName',        type: 'string'),
    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