{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/scim-enterprise-group-response", "title": "scim-enterprise-group-response", "allOf": [ { "$ref": "#/components/schemas/group-response" }, { "type": "object", "properties": { "id": { "type": "string", "description": "The internally generated id for the group object.", "example": "7fce0092-d52e-4f76-b727-3955bd72c939" }, "members": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "string" }, "$ref": { "type": "string" }, "display": { "type": "string" } } }, "description": "The security group members.", "example": [ { "value": "879db59-3bdf-4490-ad68-ab880a2694745", "$+ref": "https://api.github.localhost/scim/v2/Users/879db59-3bdf-4490-ad68-ab880a2694745", "displayName": "User 1" }, { "value": "0db508eb-91e2-46e4-809c-30dcbda0c685", "$+ref": "https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685", "displayName": "User 2" } ] }, "meta": { "$ref": "#/components/schemas/meta" } } } ] }