{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-structure/scim-api-scim-group-request-structure.json", "name": "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" ] }