Method: Scimitar::Schema::Vdtp.scim_attributes

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

.scim_attributesObject



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

def self.scim_attributes
  @scim_attributes ||= [
    Attribute.new(name: 'value',   type: 'string', required: Scimitar.engine_configuration.optional_value_fields_required),
    Attribute.new(name: 'display', type: 'string', mutability: 'readOnly'),
    Attribute.new(name: 'type',    type: 'string'),
    Attribute.new(name: 'primary', type: 'boolean'),
  ]
end