{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-schema/scim-api-scim-group-request-schema.json", "title": "ScimGroupRequest", "description": "ScimGroupRequest schema from Amplitude SCIM API", "type": "object", "properties": { "schemas": { "type": "array", "items": { "type": "string" }, "description": "The SCIM schema URIs." }, "displayName": { "type": "string", "description": "The display name of the group." }, "members": { "type": "array", "description": "Array of initial group members.", "items": { "type": "object", "properties": { "value": { "type": "string", "description": "The member user ID." } } } } }, "required": [ "schemas", "displayName" ] }