{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScimGroupCreateRequest", "title": "ScimGroupCreateRequest", "type": "object", "description": "Request body for creating or replacing a SCIM group.", "properties": { "schemas": { "type": "array", "items": { "type": "string" }, "default": [ "urn:ietf:params:scim:schemas:core:2.0:Group" ] }, "displayName": { "type": "string", "description": "The display name of the group." }, "members": { "type": "array", "description": "The initial members of the group.", "items": { "type": "object", "properties": { "value": { "type": "string", "description": "The ID of the member user." } } } } }, "required": [ "schemas", "displayName" ] }