{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScimGroup", "title": "ScimGroup", "type": "object", "properties": { "schemas": { "type": "array", "items": { "type": "string" } }, "id": { "type": "string" }, "displayName": { "type": "string" }, "members": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "string" }, "display": { "type": "string" } } } }, "meta": { "type": "object", "properties": { "resourceType": { "type": "string" } } } }, "required": [ "id", "displayName" ] }