{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-identity-center/refs/heads/main/json-schema/identitystore-update-group-request-schema.json", "title": "UpdateGroupRequest", "description": "UpdateGroupRequest schema from AWS IAM Identity Center", "type": "object", "properties": { "IdentityStoreId": { "allOf": [ { "$ref": "#/components/schemas/IdentityStoreId" }, { "description": "The globally unique identifier for the identity store." } ] }, "GroupId": { "allOf": [ { "$ref": "#/components/schemas/ResourceId" }, { "description": "The identifier for a group in the identity store." } ] }, "Operations": { "allOf": [ { "$ref": "#/components/schemas/AttributeOperations" }, { "description": "A list of AttributeOperation objects to apply to the requested group. These operations might add, replace, or remove an attribute." } ] } }, "required": [ "IdentityStoreId", "GroupId", "Operations" ] }