SCIM 스키마 부모 속성

SCIM 스키마 부모 속성 (scim_schema_parent_attribute)

SCIM 2.0 스키마에서 하위 속성(subAttribute)을 가질 수 있는 부모 속성 스키마예요. 기본 scim_schema_attribute 구조에 하위 속성 목록을 더한 형태예요.

출처: 문서

본문

이 스키마는 scim_schema_attribute를 기반으로(allOf) subAttributes 필드를 더한 형태예요. subAttributes는 하위 속성 배열이고, 각 항목은 다시 scim_schema_attribute 스키마를 따릅니다.

{
  "allOf": [
    {
      "$ref": "#/components/schemas/scim_schema_attribute"
    },
    {
      "properties": {
        "subAttributes": {
          "items": {
            "$ref": "#/components/schemas/scim_schema_attribute"
          },
          "type": "array"
        }
      },
      "type": "object"
    }
  ]
}

더 알아보기