Class: ScimEngine::Schema::Reference

Inherits:
Base
  • Object
show all
Defined in:
app/models/scim_engine/schema/reference.rb

Overview

Represnts the schema for the Reference complex type

Instance Attribute Summary

Attributes inherited from Base

#description, #id, #meta, #name, #scim_attributes

Class Method Summary collapse

Methods inherited from Base

#as_json, cloned_scim_attributes, #initialize, valid?

Constructor Details

This class inherits a constructor from ScimEngine::Schema::Base

Class Method Details

.scim_attributesObject



6
7
8
9
10
11
# File 'app/models/scim_engine/schema/reference.rb', line 6

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