{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScimGroup", "title": "ScimGroup", "type": "object", "description": "A team (group) record conforming to SCIM 2.0 protocol. Used for organizing users and managing content access control.", "properties": { "id": { "type": "string", "description": "The unique identifier assigned to the team" }, "displayName": { "type": "string", "description": "The display name of the team" }, "members": { "type": "array", "description": "The members of the team", "items": { "type": "object", "properties": { "value": { "type": "string", "description": "The member user ID" }, "display": { "type": "string", "description": "The member display name" } } } } } }