Show / Hide Table of Contents

Class Schema

SCIM schema

Inheritance
object
Schema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class Schema

Properties

Attributes

Declaration
[JsonProperty(PropertyName = "attributes")]
public List<SchemaAttributes> Attributes { get; set; }
Property Value
Type Description
List<SchemaAttributes>

A complex type that specifies the set of Resource attributes
SCIM++ Properties:

  • idcsCompositeKey: []
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Schema's human-readable description
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

ExternalId

Declaration
[JsonProperty(PropertyName = "externalId")]
public string ExternalId { get; set; }
Property Value
Type Description
string

An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service Provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued by the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant.
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

IdcsAttributeCacheable

Declaration
[JsonProperty(PropertyName = "idcsAttributeCacheable")]
public bool? IdcsAttributeCacheable { get; set; }
Property Value
Type Description
bool?

Specifies whether the attribute is cacheable. True by default for all attributes. If attribute with idcsAttributeCachable = false, is present \"attributesToGet\" while executing GET/SEARCH on cacheable resource, Cache is missed and data is fetched from Data Provider.
Added In: 17.3.4
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: boolean

IdcsMappable

Declaration
[Required(ErrorMessage = "IdcsMappable is required.")]
[JsonProperty(PropertyName = "idcsMappable")]
public bool? IdcsMappable { get; set; }
Property Value
Type Description
bool?

Specifies if the attributes in this schema can be used for mapping with external identity sources such as AD or LDAP
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readOnly
  • required: true
  • returned: default
  • type: boolean
  • uniqueness: none
Remarks

Required

IdcsMapsToSameTargetAttributeNameAs

Declaration
[JsonProperty(PropertyName = "idcsMapsToSameTargetAttributeNameAs")]
public string IdcsMapsToSameTargetAttributeNameAs { get; set; }
Property Value
Type Description
string

Contains the canonical name of the other attribute sharing the same idcsTargetAttributeName
Added In: 2209122038
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: always
  • type: string
  • uniqueness: none

IdcsOverrideCommonAttribute

Declaration
[JsonProperty(PropertyName = "idcsOverrideCommonAttribute")]
public bool? IdcsOverrideCommonAttribute { get; set; }
Property Value
Type Description
bool?

Specifies whether the dataprovider mapping from resource schema should override from common schema with the same name.
Added In: 2102181953
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: boolean

IdcsResourceTypes

Declaration
[JsonProperty(PropertyName = "idcsResourceTypes")]
public List<string> IdcsResourceTypes { get; set; }
Property Value
Type Description
List<string>

Resource types defs this resource refers to
SCIM++ Properties:

  • caseExact: false
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Schema's human-readable name
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Schemas

Declaration
[Required(ErrorMessage = "Schemas is required.")]
[JsonProperty(PropertyName = "schemas")]
public List<string> Schemas { get; set; }
Property Value
Type Description
List<string>

REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \"enterprise\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: true
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

In this article
Back to top