{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PostGroup", "title": "PostGroup", "type": "object", "required": [ "schemas", "displayName" ], "properties": { "schemas": { "type": "array", "items": { "type": "string", "example": "urn:ietf:params:scim:schemas:core:2.0:Group,urn:scim:schemas:extension:cisco:webexidentity:2.0:Group" }, "description": "Input JSON schemas." }, "displayName": { "type": "string", "example": "group1@example.com", "description": "A human-readable name for the Group." }, "externalId": { "type": "string", "example": "test", "description": "An identifier for the resource as defined by the provisioning client." }, "members": { "type": "array", "items": { "$ref": "#/components/schemas/GroupMemberObject" }, "description": "A list of members of this group." }, "urn:scim:schemas:extension:cisco:webexidentity:2.0:Group": { "type": "object", "properties": { "usage": { "type": "string", "example": "policy", "description": "The identifier of this Group." }, "owners": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "string", "example": "c5349664-9f3d-410b-8bd3-6c31f181f13d", "description": "The identifier of the owner of this group." } } }, "description": "The owners of this group." }, "inheritances": { "type": "array", "items": { "$ref": "#/components/schemas/GroupInheritancesObject" }, "description": "An array of inheritances" }, "managedBy": { "type": "array", "items": { "$ref": "#/components/schemas/ManagedByObject" }, "description": "A list of delegates of this group." } }, "description": "The Cisco extension of SCIM 2." } } }