复杂属性不得包含具有子属性的子属性(即复杂的)。
但是当我阅读同一个RFC 第 8.7.2 节第88 行中的 Schema 定义时,我注意到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" : [
我错过了什么?