【发布时间】:2016-09-13 16:57:10
【问题描述】:
复杂属性不得包含具有子属性的子属性(即复杂的)。
但是,当我阅读同一 RFC section 8.7.2 第 88 行中的架构定义时,我注意到 urn:ietf:params:scim:schemas:core:2.0:Schema 的描述是:
{
...
"attributes" : [
...
{
"name" : "attributes",
"type" : "complex",
"multiValued" : true,
"description" : "A complex attribute that includes the
attributes of a schema.",
"required" : true,
"mutability" : "readOnly",
"returned" : "default",
"subAttributes" : [
...
{
"name" : "subAttributes",
"type" : "complex",
"multiValued" : true,
"description" : "Used to define the sub-attributes of a
complex attribute.",
"required" : false,
"mutability" : "readOnly",
"returned" : "default",
"subAttributes" : [
我错过了什么?
【问题讨论】:
标签: scim