Leapsome · Schema

SCIM GroupDefinition

Describes the group to create

People EnablementPerformance ManagementOKRsGoalsEngagement SurveysHRISSCIMEmployee Development1:1 MeetingsLearning

Properties

Name Type Description
displayName string The group's display name
externalId string The id of the group in an external system
View JSON Schema on GitHub

JSON Schema

leapsome-scim-groupdefinition-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SCIM GroupDefinition",
  "description": "Describes the group to create",
  "type": "object",
  "properties": {
    "displayName": {
      "description": "The group's display name",
      "type": "string"
    },
    "externalId": {
      "type": "string",
      "description": "The id of the group in an external system"
    }
  },
  "required": [
    "displayName"
  ]
}