{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.schedulingGroup",
"title": "microsoft.graph.schedulingGroup",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.changeTrackedEntity"
},
{
"title": "schedulingGroup",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "The code for the schedulingGroup to represent an external identifier. This field must be unique within the team in Microsoft Teams and uses an alphanumeric format, with a maximum of 100 characters.",
"nullable": true
},
"displayName": {
"type": "string",
"description": "The display name for the schedulingGroup. Required.",
"nullable": true
},
"isActive": {
"type": "boolean",
"description": "Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Required.",
"nullable": true,
"readOnly": true
},
"userIds": {
"type": "array",
"items": {
"type": "string",
"nullable": true
},
"description": "The list of user IDs that are a member of the schedulingGroup. Required."
},
"@odata.type": {
"type": "string",
"default": "#microsoft.graph.schedulingGroup"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.schedulingGroup"
}